@charset "UTF-8";
:root {
  --background: hsl(40, 100%, 98%);
  --foreground: hsl(210, 47%, 29%);
  --muted: hsl(210, 23%, 50%);
  --muted-foreground: hsl(210, 23%, 50%);
  --popover: hsl(40, 100%, 98%);
  --popover-foreground: hsl(210, 47%, 29%);
  --card: hsl(40, 100%, 98%);
  --card-foreground: hsl(210, 47%, 29%);
  --border: hsl(180, 14%, 73%);
  --input: hsl(180, 14%, 73%);
  --primary: hsl(210, 47%, 29%);
  --primary-foreground: hsl(40, 100%, 98%);
  --secondary: hsl(33, 72%, 53%);
  --secondary-foreground: hsl(40, 100%, 98%);
  --amber: hsl(21.71deg 77.78% 26.47%);
  --amber-800: hsl(22.73deg 82.5% 31.37%);
  --purple-99: hsl(273.64deg 65.64% 31.96%);
  --purple-90: hsl(273.64deg 65.64% 31.96%);
  --purple-80: hsl(272.89deg 67.16% 39.41%);
  --blue-90: hsl(224.44deg 64.29% 32.94%);
  --blue-80: hsl(225.93deg 70.73% 40.2%);
  --red-90: hsl(0deg 62.82% 30.59%);
  --red-10: hsl(355.71deg 100% 97.25%);
  --accent-foreground: hsl(40, 100%, 98%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(210, 40%, 98%);
  --ring: hsl(210, 47%, 29%);
  --radius: .5rem;
  --chart-1: hsl(33, 72%, 53%);
  --chart-2: hsl(180, 14%, 73%);
  --chart-3: hsl(210, 47%, 29%);
  --chart-4: hsl(43, 74%, 66%);
  --chart-5: hsl(27, 87%, 67%);
}

/* =========================================================
   FIGMA FOUNDATION TOKENS
========================================================= */
/* Font family */
/* Font weights */
/* Letter spacing */
/* Typography */
/* Spacing */
/* Radius */
/* Borders */
/* Layout */
/* Motion */
/* =========================================================
  CUSTOM GRID SYSTEM (Bootstrap-aligned, Tailwind-like)
  Supports 12 columns, all breakpoints
  ========================================================= */
/* ---------- Breakpoints ---------- */
/* ---------- Base Grid ---------- */
.grid {
  display: grid !important;
  width: 100%;
  box-sizing: border-box;
}

/* ---------- Default (Mobile First) Columns ---------- */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

/* ---------- SM (≥576px) ---------- */
@media (min-width: 576px) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}
/* ---------- MD (≥768px) ---------- */
@media (min-width: 768px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}
/* ---------- LG (≥992px) ---------- */
@media (min-width: 992px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}
/* ---------- XL (≥1200px) ---------- */
@media (min-width: 1200px) {
  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
}
/* ---------- Equal Height Rows ---------- */
.grid-equal-rows {
  grid-auto-rows: 1fr !important;
}
.grid-equal-rows > * {
  height: 100%;
  box-sizing: border-box;
}

/* ---------- Alignment ---------- */
.items-stretch {
  align-items: stretch !important;
}

/* =========================================================
   COLORS — AJITH FIGMA TOKENS (PROD)
========================================================= */
/* Brand colors */
/* Semantic colors */
/* Primitive colors */
/* =========================================================
   DIRECT ALIASES
========================================================= */
/* =========================================================
   ROOT CSS VARIABLES
========================================================= */
:root {
  --color-brand-orange: #d46d3f;
  --color-brand-dark-blue: #3b5e71;
  --color-brand-light-blue: #66828e;
  --color-brand-light-orange: #eacdb2;
  --color-brand-white: #fcfcfc;
  --color-brand-black: #0f1720;
  --color-brand-orange-subtle: rgba(212, 109, 63, 0.2470588235);
  --color-brand-orange-subtler: rgba(212, 109, 63, 0.1490196078);
  --color-sem-base-primary: #d46d3f;
  --color-sem-base-secondary: #3b5e71;
  --color-sem-base-success: #27c840;
  --color-sem-base-error: #ff5f57;
  --color-sem-base-warning: #febc2f;
  --color-sem-content-primary: #141414;
  --color-sem-content-secondary: #2a292c;
  --color-sem-content-tertiary: #5d5c62;
  --color-sem-content-primary-inverse: #f5f5f5;
  --color-sem-content-secondary-inverse: #dcdcde;
  --color-sem-content-tertiary-inverse: #737278;
  --color-sem-content-success: #27c840;
  --color-sem-content-warning: #febc2f;
  --color-sem-content-error: #ff5f57;
  --color-sem-content-brand: #d46d3f;
  --color-sem-content-brand-secondary: #3b5e71;
  --color-sem-content-brand-hover: #136fa0;
  --color-sem-content-brand-secondary-hover: #b84d1b;
  --color-sem-content-disable: #949398;
  --color-sem-background-primary: #fcfcfc;
  --color-sem-background-primary-hover: #eaeaeb;
  --color-sem-background-brand: #d46d3f;
  --color-sem-background-brand-secondary: #3b5e71;
  --color-sem-background-disable: #bfbfc3;
  --color-sem-background-success: #27c840;
  --color-sem-background-success-subtle: #f5fff6;
  --color-sem-background-warning: #febc2f;
  --color-sem-background-warning-subtle: #fffcf5;
  --color-sem-background-error: #ff5f57;
  --color-sem-background-error-subtle: #fff5f5;
  --color-sem-border-primary: #2a292c;
  --color-sem-border-secondary: #5d5c62;
  --color-sem-border-tertiary: #737278;
  --color-sem-border-disable: #949398;
  --color-sem-border-success: #27c840;
  --color-sem-border-warning: #febc2f;
  --color-sem-border-error: #ff5f57;
  --color-sem-border-brand: #d46d3f;
  --color-sem-border-brand-secondary: #3b5e71;
  --color-sem-background-card-primary: #eaeaeb;
  --color-sem-background-card-secondary: #dcdcde;
  --color-sem-background-card-brand: #d46d3f;
  --color-sem-background-card-brand-secondary: #3b5e71;
  --color-sem-background-card-brand-subtle: #fdd7c5;
  --color-sem-background-card-brand-secondary-subtle: #c5e9fd;
  --color-sem-button-primary: #d46d3f;
  --color-sem-button-primary-hover: #b84d1b;
  --color-sem-button-primary-selected: #a03f13;
  --color-sem-button-disable: #dcdcde;
  --color-sem-button-tertiary: #bfbfc3;
  --color-sem-base-white: #fcfcfc;
  --color-sem-base-black: #0f1720;
  --color-sem-base-primary-subtle: rgba(212, 109, 63, 0.2470588235);
  --color-sem-base-primary-subtler: rgba(212, 109, 63, 0.1490196078);
  --color-primitive-orange-0: #fff8f5;
  --color-primitive-orange-100: #fdd7c5;
  --color-primitive-orange-200: #f9b698;
  --color-primitive-orange-300: #f29970;
  --color-primitive-orange-400: #e98150;
  --color-primitive-orange-500: #dd6d38;
  --color-primitive-orange-600: #cd5b27;
  --color-primitive-orange-700: #b84d1b;
  --color-primitive-orange-800: #a03f13;
  --color-primitive-orange-900: #87340e;
  --color-primitive-dark-blue-0: #f5fbff;
  --color-primitive-dark-blue-100: #c5e9fd;
  --color-primitive-dark-blue-200: #98d7f9;
  --color-primitive-dark-blue-300: #70c5f2;
  --color-primitive-dark-blue-400: #50b4e9;
  --color-primitive-dark-blue-500: #38a3dd;
  --color-primitive-dark-blue-600: #2793cd;
  --color-primitive-dark-blue-700: #1b81b8;
  --color-primitive-dark-blue-800: #136fa0;
  --color-primitive-dark-blue-900: #0e5d87;
  --color-primitive-warning-0: #fffcf5;
  --color-primitive-warning-100: #fdebc5;
  --color-primitive-warning-200: #f9da98;
  --color-primitive-warning-300: #f2c970;
  --color-primitive-warning-400: #e9b950;
  --color-primitive-warning-500: #dda938;
  --color-primitive-warning-600: #cd9827;
  --color-primitive-warning-700: #b8861b;
  --color-primitive-warning-800: #a07313;
  --color-primitive-warning-900: #87610e;
  --color-primitive-success-0: #f5fff6;
  --color-primitive-success-100: #c5fdce;
  --color-primitive-success-200: #98f9a6;
  --color-primitive-success-300: #70f284;
  --color-primitive-success-400: #50e967;
  --color-primitive-success-500: #38dd51;
  --color-primitive-success-600: #27cd40;
  --color-primitive-success-700: #1bb832;
  --color-primitive-success-800: #13a028;
  --color-primitive-success-900: #0e8720;
  --color-primitive-error-0: #fff5f5;
  --color-primitive-error-100: #fdc8c5;
  --color-primitive-error-200: #f99c98;
  --color-primitive-error-300: #f27770;
  --color-primitive-error-400: #e95850;
  --color-primitive-error-500: #dd4138;
  --color-primitive-error-600: #cd2f27;
  --color-primitive-error-700: #b8231b;
  --color-primitive-error-800: #a01a13;
  --color-primitive-error-900: #87140e;
  --color-primitive-overlay-light-50: rgba(255, 255, 255, 0.0470588235);
  --color-primitive-overlay-light-100: rgba(255, 255, 255, 0.0980392157);
  --color-primitive-overlay-light-200: rgba(255, 255, 255, 0.2);
  --color-primitive-overlay-light-300: rgba(255, 255, 255, 0.2980392157);
  --color-primitive-overlay-light-400: rgba(255, 255, 255, 0.4);
  --color-primitive-overlay-light-500: rgba(255, 255, 255, 0.4980392157);
  --color-primitive-overlay-light-600: rgba(255, 255, 255, 0.6);
  --color-primitive-overlay-light-700: rgba(255, 255, 255, 0.6980392157);
  --color-primitive-overlay-light-800: rgba(255, 255, 255, 0.8);
  --color-primitive-overlay-light-900: rgba(255, 255, 255, 0.8980392157);
  --color-primitive-overlay-dark-50: rgba(20, 20, 20, 0.0470588235);
  --color-primitive-overlay-dark-100: rgba(20, 20, 20, 0.0980392157);
  --color-primitive-overlay-dark-200: rgba(20, 20, 20, 0.2);
  --color-primitive-overlay-dark-300: rgba(20, 20, 20, 0.2980392157);
  --color-primitive-overlay-dark-400: rgba(20, 20, 20, 0.4);
  --color-primitive-overlay-dark-500: rgba(20, 20, 20, 0.4980392157);
  --color-primitive-overlay-dark-600: rgba(20, 20, 20, 0.6);
  --color-primitive-overlay-dark-700: rgba(20, 20, 20, 0.6980392157);
  --color-primitive-overlay-dark-800: rgba(20, 20, 20, 0.8);
  --color-primitive-overlay-dark-900: rgba(20, 20, 20, 0.8980392157);
  --color-primitive-grey-50: #f5f5f5;
  --color-primitive-grey-100: #eaeaeb;
  --color-primitive-grey-200: #dcdcde;
  --color-primitive-grey-300: #bfbfc3;
  --color-primitive-grey-400: #949398;
  --color-primitive-grey-500: #737278;
  --color-primitive-grey-600: #5d5c62;
  --color-primitive-grey-700: #454448;
  --color-primitive-grey-800: #2a292c;
  --color-primitive-grey-900: #141414;
}

/* =========================================================
   COLOR UTILITY MIXIN
========================================================= */
/* =========================================================
   GENERATED UTILITIES
========================================================= */
.bg-brand-orange {
  background-color: #d46d3f !important;
}

.text-brand-orange {
  color: #d46d3f !important;
}

.border-brand-orange {
  border-color: #d46d3f !important;
}

.shadow-brand-orange {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-brand-dark-blue {
  background-color: #3b5e71 !important;
}

.text-brand-dark-blue {
  color: #3b5e71 !important;
}

.border-brand-dark-blue {
  border-color: #3b5e71 !important;
}

.shadow-brand-dark-blue {
  box-shadow: 0 8px 24px rgba(59, 94, 113, 0.18) !important;
}

.bg-brand-light-blue {
  background-color: #66828e !important;
}

.text-brand-light-blue {
  color: #66828e !important;
}

.border-brand-light-blue {
  border-color: #66828e !important;
}

.shadow-brand-light-blue {
  box-shadow: 0 8px 24px rgba(102, 130, 142, 0.18) !important;
}

.bg-brand-light-orange {
  background-color: #eacdb2 !important;
}

.text-brand-light-orange {
  color: #eacdb2 !important;
}

.border-brand-light-orange {
  border-color: #eacdb2 !important;
}

.shadow-brand-light-orange {
  box-shadow: 0 8px 24px rgba(234, 205, 178, 0.18) !important;
}

.bg-brand-white {
  background-color: #fcfcfc !important;
}

.text-brand-white {
  color: #fcfcfc !important;
}

.border-brand-white {
  border-color: #fcfcfc !important;
}

.shadow-brand-white {
  box-shadow: 0 8px 24px rgba(252, 252, 252, 0.18) !important;
}

.bg-brand-black {
  background-color: #0f1720 !important;
}

.text-brand-black {
  color: #0f1720 !important;
}

.border-brand-black {
  border-color: #0f1720 !important;
}

.shadow-brand-black {
  box-shadow: 0 8px 24px rgba(15, 23, 32, 0.18) !important;
}

.bg-brand-orange-subtle {
  background-color: rgba(212, 109, 63, 0.2470588235) !important;
}

.text-brand-orange-subtle {
  color: rgba(212, 109, 63, 0.2470588235) !important;
}

.border-brand-orange-subtle {
  border-color: rgba(212, 109, 63, 0.2470588235) !important;
}

.shadow-brand-orange-subtle {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-brand-orange-subtler {
  background-color: rgba(212, 109, 63, 0.1490196078) !important;
}

.text-brand-orange-subtler {
  color: rgba(212, 109, 63, 0.1490196078) !important;
}

.border-brand-orange-subtler {
  border-color: rgba(212, 109, 63, 0.1490196078) !important;
}

.shadow-brand-orange-subtler {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-sem-base-primary {
  background-color: #d46d3f !important;
}

.text-sem-base-primary {
  color: #d46d3f !important;
}

.border-sem-base-primary {
  border-color: #d46d3f !important;
}

.shadow-sem-base-primary {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-sem-base-secondary {
  background-color: #3b5e71 !important;
}

.text-sem-base-secondary {
  color: #3b5e71 !important;
}

.border-sem-base-secondary {
  border-color: #3b5e71 !important;
}

.shadow-sem-base-secondary {
  box-shadow: 0 8px 24px rgba(59, 94, 113, 0.18) !important;
}

.bg-sem-base-success {
  background-color: #27c840 !important;
}

.text-sem-base-success {
  color: #27c840 !important;
}

.border-sem-base-success {
  border-color: #27c840 !important;
}

.shadow-sem-base-success {
  box-shadow: 0 8px 24px rgba(39, 200, 64, 0.18) !important;
}

.bg-sem-base-error {
  background-color: #ff5f57 !important;
}

.text-sem-base-error {
  color: #ff5f57 !important;
}

.border-sem-base-error {
  border-color: #ff5f57 !important;
}

.shadow-sem-base-error {
  box-shadow: 0 8px 24px rgba(255, 95, 87, 0.18) !important;
}

.bg-sem-base-warning {
  background-color: #febc2f !important;
}

.text-sem-base-warning {
  color: #febc2f !important;
}

.border-sem-base-warning {
  border-color: #febc2f !important;
}

.shadow-sem-base-warning {
  box-shadow: 0 8px 24px rgba(254, 188, 47, 0.18) !important;
}

.bg-sem-content-primary {
  background-color: #141414 !important;
}

.text-sem-content-primary {
  color: #141414 !important;
}

.border-sem-content-primary {
  border-color: #141414 !important;
}

.shadow-sem-content-primary {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-sem-content-secondary {
  background-color: #2a292c !important;
}

.text-sem-content-secondary {
  color: #2a292c !important;
}

.border-sem-content-secondary {
  border-color: #2a292c !important;
}

.shadow-sem-content-secondary {
  box-shadow: 0 8px 24px rgba(42, 41, 44, 0.18) !important;
}

.bg-sem-content-tertiary {
  background-color: #5d5c62 !important;
}

.text-sem-content-tertiary {
  color: #5d5c62 !important;
}

.border-sem-content-tertiary {
  border-color: #5d5c62 !important;
}

.shadow-sem-content-tertiary {
  box-shadow: 0 8px 24px rgba(93, 92, 98, 0.18) !important;
}

.bg-sem-content-primary-inverse {
  background-color: #f5f5f5 !important;
}

.text-sem-content-primary-inverse {
  color: #f5f5f5 !important;
}

.border-sem-content-primary-inverse {
  border-color: #f5f5f5 !important;
}

.shadow-sem-content-primary-inverse {
  box-shadow: 0 8px 24px rgba(245, 245, 245, 0.18) !important;
}

.bg-sem-content-secondary-inverse {
  background-color: #dcdcde !important;
}

.text-sem-content-secondary-inverse {
  color: #dcdcde !important;
}

.border-sem-content-secondary-inverse {
  border-color: #dcdcde !important;
}

.shadow-sem-content-secondary-inverse {
  box-shadow: 0 8px 24px rgba(220, 220, 222, 0.18) !important;
}

.bg-sem-content-tertiary-inverse {
  background-color: #737278 !important;
}

.text-sem-content-tertiary-inverse {
  color: #737278 !important;
}

.border-sem-content-tertiary-inverse {
  border-color: #737278 !important;
}

.shadow-sem-content-tertiary-inverse {
  box-shadow: 0 8px 24px rgba(115, 114, 120, 0.18) !important;
}

.bg-sem-content-success {
  background-color: #27c840 !important;
}

.text-sem-content-success {
  color: #27c840 !important;
}

.border-sem-content-success {
  border-color: #27c840 !important;
}

.shadow-sem-content-success {
  box-shadow: 0 8px 24px rgba(39, 200, 64, 0.18) !important;
}

.bg-sem-content-warning {
  background-color: #febc2f !important;
}

.text-sem-content-warning {
  color: #febc2f !important;
}

.border-sem-content-warning {
  border-color: #febc2f !important;
}

.shadow-sem-content-warning {
  box-shadow: 0 8px 24px rgba(254, 188, 47, 0.18) !important;
}

.bg-sem-content-error {
  background-color: #ff5f57 !important;
}

.text-sem-content-error {
  color: #ff5f57 !important;
}

.border-sem-content-error {
  border-color: #ff5f57 !important;
}

.shadow-sem-content-error {
  box-shadow: 0 8px 24px rgba(255, 95, 87, 0.18) !important;
}

.bg-sem-content-brand {
  background-color: #d46d3f !important;
}

.text-sem-content-brand {
  color: #d46d3f !important;
}

.border-sem-content-brand {
  border-color: #d46d3f !important;
}

.shadow-sem-content-brand {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-sem-content-brand-secondary {
  background-color: #3b5e71 !important;
}

.text-sem-content-brand-secondary {
  color: #3b5e71 !important;
}

.border-sem-content-brand-secondary {
  border-color: #3b5e71 !important;
}

.shadow-sem-content-brand-secondary {
  box-shadow: 0 8px 24px rgba(59, 94, 113, 0.18) !important;
}

.bg-sem-content-brand-hover {
  background-color: #136fa0 !important;
}

.text-sem-content-brand-hover {
  color: #136fa0 !important;
}

.border-sem-content-brand-hover {
  border-color: #136fa0 !important;
}

.shadow-sem-content-brand-hover {
  box-shadow: 0 8px 24px rgba(19, 111, 160, 0.18) !important;
}

.bg-sem-content-brand-secondary-hover {
  background-color: #b84d1b !important;
}

.text-sem-content-brand-secondary-hover {
  color: #b84d1b !important;
}

.border-sem-content-brand-secondary-hover {
  border-color: #b84d1b !important;
}

.shadow-sem-content-brand-secondary-hover {
  box-shadow: 0 8px 24px rgba(184, 77, 27, 0.18) !important;
}

.bg-sem-content-disable {
  background-color: #949398 !important;
}

.text-sem-content-disable {
  color: #949398 !important;
}

.border-sem-content-disable {
  border-color: #949398 !important;
}

.shadow-sem-content-disable {
  box-shadow: 0 8px 24px rgba(148, 147, 152, 0.18) !important;
}

.bg-sem-background-primary {
  background-color: #fcfcfc !important;
}

.text-sem-background-primary {
  color: #fcfcfc !important;
}

.border-sem-background-primary {
  border-color: #fcfcfc !important;
}

.shadow-sem-background-primary {
  box-shadow: 0 8px 24px rgba(252, 252, 252, 0.18) !important;
}

.bg-sem-background-primary-hover {
  background-color: #eaeaeb !important;
}

.text-sem-background-primary-hover {
  color: #eaeaeb !important;
}

.border-sem-background-primary-hover {
  border-color: #eaeaeb !important;
}

.shadow-sem-background-primary-hover {
  box-shadow: 0 8px 24px rgba(234, 234, 235, 0.18) !important;
}

.bg-sem-background-brand {
  background-color: #d46d3f !important;
}

.text-sem-background-brand {
  color: #d46d3f !important;
}

.border-sem-background-brand {
  border-color: #d46d3f !important;
}

.shadow-sem-background-brand {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-sem-background-brand-secondary {
  background-color: #3b5e71 !important;
}

.text-sem-background-brand-secondary {
  color: #3b5e71 !important;
}

.border-sem-background-brand-secondary {
  border-color: #3b5e71 !important;
}

.shadow-sem-background-brand-secondary {
  box-shadow: 0 8px 24px rgba(59, 94, 113, 0.18) !important;
}

.bg-sem-background-disable {
  background-color: #bfbfc3 !important;
}

.text-sem-background-disable {
  color: #bfbfc3 !important;
}

.border-sem-background-disable {
  border-color: #bfbfc3 !important;
}

.shadow-sem-background-disable {
  box-shadow: 0 8px 24px rgba(191, 191, 195, 0.18) !important;
}

.bg-sem-background-success {
  background-color: #27c840 !important;
}

.text-sem-background-success {
  color: #27c840 !important;
}

.border-sem-background-success {
  border-color: #27c840 !important;
}

.shadow-sem-background-success {
  box-shadow: 0 8px 24px rgba(39, 200, 64, 0.18) !important;
}

.bg-sem-background-success-subtle {
  background-color: #f5fff6 !important;
}

.text-sem-background-success-subtle {
  color: #f5fff6 !important;
}

.border-sem-background-success-subtle {
  border-color: #f5fff6 !important;
}

.shadow-sem-background-success-subtle {
  box-shadow: 0 8px 24px rgba(245, 255, 246, 0.18) !important;
}

.bg-sem-background-warning {
  background-color: #febc2f !important;
}

.text-sem-background-warning {
  color: #febc2f !important;
}

.border-sem-background-warning {
  border-color: #febc2f !important;
}

.shadow-sem-background-warning {
  box-shadow: 0 8px 24px rgba(254, 188, 47, 0.18) !important;
}

.bg-sem-background-warning-subtle {
  background-color: #fffcf5 !important;
}

.text-sem-background-warning-subtle {
  color: #fffcf5 !important;
}

.border-sem-background-warning-subtle {
  border-color: #fffcf5 !important;
}

.shadow-sem-background-warning-subtle {
  box-shadow: 0 8px 24px rgba(255, 252, 245, 0.18) !important;
}

.bg-sem-background-error {
  background-color: #ff5f57 !important;
}

.text-sem-background-error {
  color: #ff5f57 !important;
}

.border-sem-background-error {
  border-color: #ff5f57 !important;
}

.shadow-sem-background-error {
  box-shadow: 0 8px 24px rgba(255, 95, 87, 0.18) !important;
}

.bg-sem-background-error-subtle {
  background-color: #fff5f5 !important;
}

.text-sem-background-error-subtle {
  color: #fff5f5 !important;
}

.border-sem-background-error-subtle {
  border-color: #fff5f5 !important;
}

.shadow-sem-background-error-subtle {
  box-shadow: 0 8px 24px rgba(255, 245, 245, 0.18) !important;
}

.bg-sem-border-primary {
  background-color: #2a292c !important;
}

.text-sem-border-primary {
  color: #2a292c !important;
}

.border-sem-border-primary {
  border-color: #2a292c !important;
}

.shadow-sem-border-primary {
  box-shadow: 0 8px 24px rgba(42, 41, 44, 0.18) !important;
}

.bg-sem-border-secondary {
  background-color: #5d5c62 !important;
}

.text-sem-border-secondary {
  color: #5d5c62 !important;
}

.border-sem-border-secondary {
  border-color: #5d5c62 !important;
}

.shadow-sem-border-secondary {
  box-shadow: 0 8px 24px rgba(93, 92, 98, 0.18) !important;
}

.bg-sem-border-tertiary {
  background-color: #737278 !important;
}

.text-sem-border-tertiary {
  color: #737278 !important;
}

.border-sem-border-tertiary {
  border-color: #737278 !important;
}

.shadow-sem-border-tertiary {
  box-shadow: 0 8px 24px rgba(115, 114, 120, 0.18) !important;
}

.bg-sem-border-disable {
  background-color: #949398 !important;
}

.text-sem-border-disable {
  color: #949398 !important;
}

.border-sem-border-disable {
  border-color: #949398 !important;
}

.shadow-sem-border-disable {
  box-shadow: 0 8px 24px rgba(148, 147, 152, 0.18) !important;
}

.bg-sem-border-success {
  background-color: #27c840 !important;
}

.text-sem-border-success {
  color: #27c840 !important;
}

.border-sem-border-success {
  border-color: #27c840 !important;
}

.shadow-sem-border-success {
  box-shadow: 0 8px 24px rgba(39, 200, 64, 0.18) !important;
}

.bg-sem-border-warning {
  background-color: #febc2f !important;
}

.text-sem-border-warning {
  color: #febc2f !important;
}

.border-sem-border-warning {
  border-color: #febc2f !important;
}

.shadow-sem-border-warning {
  box-shadow: 0 8px 24px rgba(254, 188, 47, 0.18) !important;
}

.bg-sem-border-error {
  background-color: #ff5f57 !important;
}

.text-sem-border-error {
  color: #ff5f57 !important;
}

.border-sem-border-error {
  border-color: #ff5f57 !important;
}

.shadow-sem-border-error {
  box-shadow: 0 8px 24px rgba(255, 95, 87, 0.18) !important;
}

.bg-sem-border-brand {
  background-color: #d46d3f !important;
}

.text-sem-border-brand {
  color: #d46d3f !important;
}

.border-sem-border-brand {
  border-color: #d46d3f !important;
}

.shadow-sem-border-brand {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-sem-border-brand-secondary {
  background-color: #3b5e71 !important;
}

.text-sem-border-brand-secondary {
  color: #3b5e71 !important;
}

.border-sem-border-brand-secondary {
  border-color: #3b5e71 !important;
}

.shadow-sem-border-brand-secondary {
  box-shadow: 0 8px 24px rgba(59, 94, 113, 0.18) !important;
}

.bg-sem-background-card-primary {
  background-color: #eaeaeb !important;
}

.text-sem-background-card-primary {
  color: #eaeaeb !important;
}

.border-sem-background-card-primary {
  border-color: #eaeaeb !important;
}

.shadow-sem-background-card-primary {
  box-shadow: 0 8px 24px rgba(234, 234, 235, 0.18) !important;
}

.bg-sem-background-card-secondary {
  background-color: #dcdcde !important;
}

.text-sem-background-card-secondary {
  color: #dcdcde !important;
}

.border-sem-background-card-secondary {
  border-color: #dcdcde !important;
}

.shadow-sem-background-card-secondary {
  box-shadow: 0 8px 24px rgba(220, 220, 222, 0.18) !important;
}

.bg-sem-background-card-brand {
  background-color: #d46d3f !important;
}

.text-sem-background-card-brand {
  color: #d46d3f !important;
}

.border-sem-background-card-brand {
  border-color: #d46d3f !important;
}

.shadow-sem-background-card-brand {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-sem-background-card-brand-secondary {
  background-color: #3b5e71 !important;
}

.text-sem-background-card-brand-secondary {
  color: #3b5e71 !important;
}

.border-sem-background-card-brand-secondary {
  border-color: #3b5e71 !important;
}

.shadow-sem-background-card-brand-secondary {
  box-shadow: 0 8px 24px rgba(59, 94, 113, 0.18) !important;
}

.bg-sem-background-card-brand-subtle {
  background-color: #fdd7c5 !important;
}

.text-sem-background-card-brand-subtle {
  color: #fdd7c5 !important;
}

.border-sem-background-card-brand-subtle {
  border-color: #fdd7c5 !important;
}

.shadow-sem-background-card-brand-subtle {
  box-shadow: 0 8px 24px rgba(253, 215, 197, 0.18) !important;
}

.bg-sem-background-card-brand-secondary-subtle {
  background-color: #c5e9fd !important;
}

.text-sem-background-card-brand-secondary-subtle {
  color: #c5e9fd !important;
}

.border-sem-background-card-brand-secondary-subtle {
  border-color: #c5e9fd !important;
}

.shadow-sem-background-card-brand-secondary-subtle {
  box-shadow: 0 8px 24px rgba(197, 233, 253, 0.18) !important;
}

.bg-sem-button-primary {
  background-color: #d46d3f !important;
}

.text-sem-button-primary {
  color: #d46d3f !important;
}

.border-sem-button-primary {
  border-color: #d46d3f !important;
}

.shadow-sem-button-primary {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-sem-button-primary-hover {
  background-color: #b84d1b !important;
}

.text-sem-button-primary-hover {
  color: #b84d1b !important;
}

.border-sem-button-primary-hover {
  border-color: #b84d1b !important;
}

.shadow-sem-button-primary-hover {
  box-shadow: 0 8px 24px rgba(184, 77, 27, 0.18) !important;
}

.bg-sem-button-primary-selected {
  background-color: #a03f13 !important;
}

.text-sem-button-primary-selected {
  color: #a03f13 !important;
}

.border-sem-button-primary-selected {
  border-color: #a03f13 !important;
}

.shadow-sem-button-primary-selected {
  box-shadow: 0 8px 24px rgba(160, 63, 19, 0.18) !important;
}

.bg-sem-button-disable {
  background-color: #dcdcde !important;
}

.text-sem-button-disable {
  color: #dcdcde !important;
}

.border-sem-button-disable {
  border-color: #dcdcde !important;
}

.shadow-sem-button-disable {
  box-shadow: 0 8px 24px rgba(220, 220, 222, 0.18) !important;
}

.bg-sem-button-tertiary {
  background-color: #bfbfc3 !important;
}

.text-sem-button-tertiary {
  color: #bfbfc3 !important;
}

.border-sem-button-tertiary {
  border-color: #bfbfc3 !important;
}

.shadow-sem-button-tertiary {
  box-shadow: 0 8px 24px rgba(191, 191, 195, 0.18) !important;
}

.bg-sem-base-white {
  background-color: #fcfcfc !important;
}

.text-sem-base-white {
  color: #fcfcfc !important;
}

.border-sem-base-white {
  border-color: #fcfcfc !important;
}

.shadow-sem-base-white {
  box-shadow: 0 8px 24px rgba(252, 252, 252, 0.18) !important;
}

.bg-sem-base-black {
  background-color: #0f1720 !important;
}

.text-sem-base-black {
  color: #0f1720 !important;
}

.border-sem-base-black {
  border-color: #0f1720 !important;
}

.shadow-sem-base-black {
  box-shadow: 0 8px 24px rgba(15, 23, 32, 0.18) !important;
}

.bg-sem-base-primary-subtle {
  background-color: rgba(212, 109, 63, 0.2470588235) !important;
}

.text-sem-base-primary-subtle {
  color: rgba(212, 109, 63, 0.2470588235) !important;
}

.border-sem-base-primary-subtle {
  border-color: rgba(212, 109, 63, 0.2470588235) !important;
}

.shadow-sem-base-primary-subtle {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-sem-base-primary-subtler {
  background-color: rgba(212, 109, 63, 0.1490196078) !important;
}

.text-sem-base-primary-subtler {
  color: rgba(212, 109, 63, 0.1490196078) !important;
}

.border-sem-base-primary-subtler {
  border-color: rgba(212, 109, 63, 0.1490196078) !important;
}

.shadow-sem-base-primary-subtler {
  box-shadow: 0 8px 24px rgba(212, 109, 63, 0.18) !important;
}

.bg-orange-0 {
  background-color: #fff8f5 !important;
}

.text-orange-0 {
  color: #fff8f5 !important;
}

.border-orange-0 {
  border-color: #fff8f5 !important;
}

.shadow-orange-0 {
  box-shadow: 0 8px 24px rgba(255, 248, 245, 0.18) !important;
}

.bg-orange-100 {
  background-color: #fdd7c5 !important;
}

.text-orange-100 {
  color: #fdd7c5 !important;
}

.border-orange-100 {
  border-color: #fdd7c5 !important;
}

.shadow-orange-100 {
  box-shadow: 0 8px 24px rgba(253, 215, 197, 0.18) !important;
}

.bg-orange-200 {
  background-color: #f9b698 !important;
}

.text-orange-200 {
  color: #f9b698 !important;
}

.border-orange-200 {
  border-color: #f9b698 !important;
}

.shadow-orange-200 {
  box-shadow: 0 8px 24px rgba(249, 182, 152, 0.18) !important;
}

.bg-orange-300 {
  background-color: #f29970 !important;
}

.text-orange-300 {
  color: #f29970 !important;
}

.border-orange-300 {
  border-color: #f29970 !important;
}

.shadow-orange-300 {
  box-shadow: 0 8px 24px rgba(242, 153, 112, 0.18) !important;
}

.bg-orange-400 {
  background-color: #e98150 !important;
}

.text-orange-400 {
  color: #e98150 !important;
}

.border-orange-400 {
  border-color: #e98150 !important;
}

.shadow-orange-400 {
  box-shadow: 0 8px 24px rgba(233, 129, 80, 0.18) !important;
}

.bg-orange-500 {
  background-color: #dd6d38 !important;
}

.text-orange-500 {
  color: #dd6d38 !important;
}

.border-orange-500 {
  border-color: #dd6d38 !important;
}

.shadow-orange-500 {
  box-shadow: 0 8px 24px rgba(221, 109, 56, 0.18) !important;
}

.bg-orange-600 {
  background-color: #cd5b27 !important;
}

.text-orange-600 {
  color: #cd5b27 !important;
}

.border-orange-600 {
  border-color: #cd5b27 !important;
}

.shadow-orange-600 {
  box-shadow: 0 8px 24px rgba(205, 91, 39, 0.18) !important;
}

.bg-orange-700 {
  background-color: #b84d1b !important;
}

.text-orange-700 {
  color: #b84d1b !important;
}

.border-orange-700 {
  border-color: #b84d1b !important;
}

.shadow-orange-700 {
  box-shadow: 0 8px 24px rgba(184, 77, 27, 0.18) !important;
}

.bg-orange-800 {
  background-color: #a03f13 !important;
}

.text-orange-800 {
  color: #a03f13 !important;
}

.border-orange-800 {
  border-color: #a03f13 !important;
}

.shadow-orange-800 {
  box-shadow: 0 8px 24px rgba(160, 63, 19, 0.18) !important;
}

.bg-orange-900 {
  background-color: #87340e !important;
}

.text-orange-900 {
  color: #87340e !important;
}

.border-orange-900 {
  border-color: #87340e !important;
}

.shadow-orange-900 {
  box-shadow: 0 8px 24px rgba(135, 52, 14, 0.18) !important;
}

.bg-dark-blue-0 {
  background-color: #f5fbff !important;
}

.text-dark-blue-0 {
  color: #f5fbff !important;
}

.border-dark-blue-0 {
  border-color: #f5fbff !important;
}

.shadow-dark-blue-0 {
  box-shadow: 0 8px 24px rgba(245, 251, 255, 0.18) !important;
}

.bg-dark-blue-100 {
  background-color: #c5e9fd !important;
}

.text-dark-blue-100 {
  color: #c5e9fd !important;
}

.border-dark-blue-100 {
  border-color: #c5e9fd !important;
}

.shadow-dark-blue-100 {
  box-shadow: 0 8px 24px rgba(197, 233, 253, 0.18) !important;
}

.bg-dark-blue-200 {
  background-color: #98d7f9 !important;
}

.text-dark-blue-200 {
  color: #98d7f9 !important;
}

.border-dark-blue-200 {
  border-color: #98d7f9 !important;
}

.shadow-dark-blue-200 {
  box-shadow: 0 8px 24px rgba(152, 215, 249, 0.18) !important;
}

.bg-dark-blue-300 {
  background-color: #70c5f2 !important;
}

.text-dark-blue-300 {
  color: #70c5f2 !important;
}

.border-dark-blue-300 {
  border-color: #70c5f2 !important;
}

.shadow-dark-blue-300 {
  box-shadow: 0 8px 24px rgba(112, 197, 242, 0.18) !important;
}

.bg-dark-blue-400 {
  background-color: #50b4e9 !important;
}

.text-dark-blue-400 {
  color: #50b4e9 !important;
}

.border-dark-blue-400 {
  border-color: #50b4e9 !important;
}

.shadow-dark-blue-400 {
  box-shadow: 0 8px 24px rgba(80, 180, 233, 0.18) !important;
}

.bg-dark-blue-500 {
  background-color: #38a3dd !important;
}

.text-dark-blue-500 {
  color: #38a3dd !important;
}

.border-dark-blue-500 {
  border-color: #38a3dd !important;
}

.shadow-dark-blue-500 {
  box-shadow: 0 8px 24px rgba(56, 163, 221, 0.18) !important;
}

.bg-dark-blue-600 {
  background-color: #2793cd !important;
}

.text-dark-blue-600 {
  color: #2793cd !important;
}

.border-dark-blue-600 {
  border-color: #2793cd !important;
}

.shadow-dark-blue-600 {
  box-shadow: 0 8px 24px rgba(39, 147, 205, 0.18) !important;
}

.bg-dark-blue-700 {
  background-color: #1b81b8 !important;
}

.text-dark-blue-700 {
  color: #1b81b8 !important;
}

.border-dark-blue-700 {
  border-color: #1b81b8 !important;
}

.shadow-dark-blue-700 {
  box-shadow: 0 8px 24px rgba(27, 129, 184, 0.18) !important;
}

.bg-dark-blue-800 {
  background-color: #136fa0 !important;
}

.text-dark-blue-800 {
  color: #136fa0 !important;
}

.border-dark-blue-800 {
  border-color: #136fa0 !important;
}

.shadow-dark-blue-800 {
  box-shadow: 0 8px 24px rgba(19, 111, 160, 0.18) !important;
}

.bg-dark-blue-900 {
  background-color: #0e5d87 !important;
}

.text-dark-blue-900 {
  color: #0e5d87 !important;
}

.border-dark-blue-900 {
  border-color: #0e5d87 !important;
}

.shadow-dark-blue-900 {
  box-shadow: 0 8px 24px rgba(14, 93, 135, 0.18) !important;
}

.bg-warning-0 {
  background-color: #fffcf5 !important;
}

.text-warning-0 {
  color: #fffcf5 !important;
}

.border-warning-0 {
  border-color: #fffcf5 !important;
}

.shadow-warning-0 {
  box-shadow: 0 8px 24px rgba(255, 252, 245, 0.18) !important;
}

.bg-warning-100 {
  background-color: #fdebc5 !important;
}

.text-warning-100 {
  color: #fdebc5 !important;
}

.border-warning-100 {
  border-color: #fdebc5 !important;
}

.shadow-warning-100 {
  box-shadow: 0 8px 24px rgba(253, 235, 197, 0.18) !important;
}

.bg-warning-200 {
  background-color: #f9da98 !important;
}

.text-warning-200 {
  color: #f9da98 !important;
}

.border-warning-200 {
  border-color: #f9da98 !important;
}

.shadow-warning-200 {
  box-shadow: 0 8px 24px rgba(249, 218, 152, 0.18) !important;
}

.bg-warning-300 {
  background-color: #f2c970 !important;
}

.text-warning-300 {
  color: #f2c970 !important;
}

.border-warning-300 {
  border-color: #f2c970 !important;
}

.shadow-warning-300 {
  box-shadow: 0 8px 24px rgba(242, 201, 112, 0.18) !important;
}

.bg-warning-400 {
  background-color: #e9b950 !important;
}

.text-warning-400 {
  color: #e9b950 !important;
}

.border-warning-400 {
  border-color: #e9b950 !important;
}

.shadow-warning-400 {
  box-shadow: 0 8px 24px rgba(233, 185, 80, 0.18) !important;
}

.bg-warning-500 {
  background-color: #dda938 !important;
}

.text-warning-500 {
  color: #dda938 !important;
}

.border-warning-500 {
  border-color: #dda938 !important;
}

.shadow-warning-500 {
  box-shadow: 0 8px 24px rgba(221, 169, 56, 0.18) !important;
}

.bg-warning-600 {
  background-color: #cd9827 !important;
}

.text-warning-600 {
  color: #cd9827 !important;
}

.border-warning-600 {
  border-color: #cd9827 !important;
}

.shadow-warning-600 {
  box-shadow: 0 8px 24px rgba(205, 152, 39, 0.18) !important;
}

.bg-warning-700 {
  background-color: #b8861b !important;
}

.text-warning-700 {
  color: #b8861b !important;
}

.border-warning-700 {
  border-color: #b8861b !important;
}

.shadow-warning-700 {
  box-shadow: 0 8px 24px rgba(184, 134, 27, 0.18) !important;
}

.bg-warning-800 {
  background-color: #a07313 !important;
}

.text-warning-800 {
  color: #a07313 !important;
}

.border-warning-800 {
  border-color: #a07313 !important;
}

.shadow-warning-800 {
  box-shadow: 0 8px 24px rgba(160, 115, 19, 0.18) !important;
}

.bg-warning-900 {
  background-color: #87610e !important;
}

.text-warning-900 {
  color: #87610e !important;
}

.border-warning-900 {
  border-color: #87610e !important;
}

.shadow-warning-900 {
  box-shadow: 0 8px 24px rgba(135, 97, 14, 0.18) !important;
}

.bg-success-0 {
  background-color: #f5fff6 !important;
}

.text-success-0 {
  color: #f5fff6 !important;
}

.border-success-0 {
  border-color: #f5fff6 !important;
}

.shadow-success-0 {
  box-shadow: 0 8px 24px rgba(245, 255, 246, 0.18) !important;
}

.bg-success-100 {
  background-color: #c5fdce !important;
}

.text-success-100 {
  color: #c5fdce !important;
}

.border-success-100 {
  border-color: #c5fdce !important;
}

.shadow-success-100 {
  box-shadow: 0 8px 24px rgba(197, 253, 206, 0.18) !important;
}

.bg-success-200 {
  background-color: #98f9a6 !important;
}

.text-success-200 {
  color: #98f9a6 !important;
}

.border-success-200 {
  border-color: #98f9a6 !important;
}

.shadow-success-200 {
  box-shadow: 0 8px 24px rgba(152, 249, 166, 0.18) !important;
}

.bg-success-300 {
  background-color: #70f284 !important;
}

.text-success-300 {
  color: #70f284 !important;
}

.border-success-300 {
  border-color: #70f284 !important;
}

.shadow-success-300 {
  box-shadow: 0 8px 24px rgba(112, 242, 132, 0.18) !important;
}

.bg-success-400 {
  background-color: #50e967 !important;
}

.text-success-400 {
  color: #50e967 !important;
}

.border-success-400 {
  border-color: #50e967 !important;
}

.shadow-success-400 {
  box-shadow: 0 8px 24px rgba(80, 233, 103, 0.18) !important;
}

.bg-success-500 {
  background-color: #38dd51 !important;
}

.text-success-500 {
  color: #38dd51 !important;
}

.border-success-500 {
  border-color: #38dd51 !important;
}

.shadow-success-500 {
  box-shadow: 0 8px 24px rgba(56, 221, 81, 0.18) !important;
}

.bg-success-600 {
  background-color: #27cd40 !important;
}

.text-success-600 {
  color: #27cd40 !important;
}

.border-success-600 {
  border-color: #27cd40 !important;
}

.shadow-success-600 {
  box-shadow: 0 8px 24px rgba(39, 205, 64, 0.18) !important;
}

.bg-success-700 {
  background-color: #1bb832 !important;
}

.text-success-700 {
  color: #1bb832 !important;
}

.border-success-700 {
  border-color: #1bb832 !important;
}

.shadow-success-700 {
  box-shadow: 0 8px 24px rgba(27, 184, 50, 0.18) !important;
}

.bg-success-800 {
  background-color: #13a028 !important;
}

.text-success-800 {
  color: #13a028 !important;
}

.border-success-800 {
  border-color: #13a028 !important;
}

.shadow-success-800 {
  box-shadow: 0 8px 24px rgba(19, 160, 40, 0.18) !important;
}

.bg-success-900 {
  background-color: #0e8720 !important;
}

.text-success-900 {
  color: #0e8720 !important;
}

.border-success-900 {
  border-color: #0e8720 !important;
}

.shadow-success-900 {
  box-shadow: 0 8px 24px rgba(14, 135, 32, 0.18) !important;
}

.bg-error-0 {
  background-color: #fff5f5 !important;
}

.text-error-0 {
  color: #fff5f5 !important;
}

.border-error-0 {
  border-color: #fff5f5 !important;
}

.shadow-error-0 {
  box-shadow: 0 8px 24px rgba(255, 245, 245, 0.18) !important;
}

.bg-error-100 {
  background-color: #fdc8c5 !important;
}

.text-error-100 {
  color: #fdc8c5 !important;
}

.border-error-100 {
  border-color: #fdc8c5 !important;
}

.shadow-error-100 {
  box-shadow: 0 8px 24px rgba(253, 200, 197, 0.18) !important;
}

.bg-error-200 {
  background-color: #f99c98 !important;
}

.text-error-200 {
  color: #f99c98 !important;
}

.border-error-200 {
  border-color: #f99c98 !important;
}

.shadow-error-200 {
  box-shadow: 0 8px 24px rgba(249, 156, 152, 0.18) !important;
}

.bg-error-300 {
  background-color: #f27770 !important;
}

.text-error-300 {
  color: #f27770 !important;
}

.border-error-300 {
  border-color: #f27770 !important;
}

.shadow-error-300 {
  box-shadow: 0 8px 24px rgba(242, 119, 112, 0.18) !important;
}

.bg-error-400 {
  background-color: #e95850 !important;
}

.text-error-400 {
  color: #e95850 !important;
}

.border-error-400 {
  border-color: #e95850 !important;
}

.shadow-error-400 {
  box-shadow: 0 8px 24px rgba(233, 88, 80, 0.18) !important;
}

.bg-error-500 {
  background-color: #dd4138 !important;
}

.text-error-500 {
  color: #dd4138 !important;
}

.border-error-500 {
  border-color: #dd4138 !important;
}

.shadow-error-500 {
  box-shadow: 0 8px 24px rgba(221, 65, 56, 0.18) !important;
}

.bg-error-600 {
  background-color: #cd2f27 !important;
}

.text-error-600 {
  color: #cd2f27 !important;
}

.border-error-600 {
  border-color: #cd2f27 !important;
}

.shadow-error-600 {
  box-shadow: 0 8px 24px rgba(205, 47, 39, 0.18) !important;
}

.bg-error-700 {
  background-color: #b8231b !important;
}

.text-error-700 {
  color: #b8231b !important;
}

.border-error-700 {
  border-color: #b8231b !important;
}

.shadow-error-700 {
  box-shadow: 0 8px 24px rgba(184, 35, 27, 0.18) !important;
}

.bg-error-800 {
  background-color: #a01a13 !important;
}

.text-error-800 {
  color: #a01a13 !important;
}

.border-error-800 {
  border-color: #a01a13 !important;
}

.shadow-error-800 {
  box-shadow: 0 8px 24px rgba(160, 26, 19, 0.18) !important;
}

.bg-error-900 {
  background-color: #87140e !important;
}

.text-error-900 {
  color: #87140e !important;
}

.border-error-900 {
  border-color: #87140e !important;
}

.shadow-error-900 {
  box-shadow: 0 8px 24px rgba(135, 20, 14, 0.18) !important;
}

.bg-overlay-light-50 {
  background-color: rgba(255, 255, 255, 0.0470588235) !important;
}

.text-overlay-light-50 {
  color: rgba(255, 255, 255, 0.0470588235) !important;
}

.border-overlay-light-50 {
  border-color: rgba(255, 255, 255, 0.0470588235) !important;
}

.shadow-overlay-light-50 {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}

.bg-overlay-light-100 {
  background-color: rgba(255, 255, 255, 0.0980392157) !important;
}

.text-overlay-light-100 {
  color: rgba(255, 255, 255, 0.0980392157) !important;
}

.border-overlay-light-100 {
  border-color: rgba(255, 255, 255, 0.0980392157) !important;
}

.shadow-overlay-light-100 {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}

.bg-overlay-light-200 {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.text-overlay-light-200 {
  color: rgba(255, 255, 255, 0.2) !important;
}

.border-overlay-light-200 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.shadow-overlay-light-200 {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}

.bg-overlay-light-300 {
  background-color: rgba(255, 255, 255, 0.2980392157) !important;
}

.text-overlay-light-300 {
  color: rgba(255, 255, 255, 0.2980392157) !important;
}

.border-overlay-light-300 {
  border-color: rgba(255, 255, 255, 0.2980392157) !important;
}

.shadow-overlay-light-300 {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}

.bg-overlay-light-400 {
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.text-overlay-light-400 {
  color: rgba(255, 255, 255, 0.4) !important;
}

.border-overlay-light-400 {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.shadow-overlay-light-400 {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}

.bg-overlay-light-500 {
  background-color: rgba(255, 255, 255, 0.4980392157) !important;
}

.text-overlay-light-500 {
  color: rgba(255, 255, 255, 0.4980392157) !important;
}

.border-overlay-light-500 {
  border-color: rgba(255, 255, 255, 0.4980392157) !important;
}

.shadow-overlay-light-500 {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}

.bg-overlay-light-600 {
  background-color: rgba(255, 255, 255, 0.6) !important;
}

.text-overlay-light-600 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.border-overlay-light-600 {
  border-color: rgba(255, 255, 255, 0.6) !important;
}

.shadow-overlay-light-600 {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}

.bg-overlay-light-700 {
  background-color: rgba(255, 255, 255, 0.6980392157) !important;
}

.text-overlay-light-700 {
  color: rgba(255, 255, 255, 0.6980392157) !important;
}

.border-overlay-light-700 {
  border-color: rgba(255, 255, 255, 0.6980392157) !important;
}

.shadow-overlay-light-700 {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}

.bg-overlay-light-800 {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.text-overlay-light-800 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.border-overlay-light-800 {
  border-color: rgba(255, 255, 255, 0.8) !important;
}

.shadow-overlay-light-800 {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}

.bg-overlay-light-900 {
  background-color: rgba(255, 255, 255, 0.8980392157) !important;
}

.text-overlay-light-900 {
  color: rgba(255, 255, 255, 0.8980392157) !important;
}

.border-overlay-light-900 {
  border-color: rgba(255, 255, 255, 0.8980392157) !important;
}

.shadow-overlay-light-900 {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}

.bg-overlay-dark-50 {
  background-color: rgba(20, 20, 20, 0.0470588235) !important;
}

.text-overlay-dark-50 {
  color: rgba(20, 20, 20, 0.0470588235) !important;
}

.border-overlay-dark-50 {
  border-color: rgba(20, 20, 20, 0.0470588235) !important;
}

.shadow-overlay-dark-50 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-overlay-dark-100 {
  background-color: rgba(20, 20, 20, 0.0980392157) !important;
}

.text-overlay-dark-100 {
  color: rgba(20, 20, 20, 0.0980392157) !important;
}

.border-overlay-dark-100 {
  border-color: rgba(20, 20, 20, 0.0980392157) !important;
}

.shadow-overlay-dark-100 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-overlay-dark-200 {
  background-color: rgba(20, 20, 20, 0.2) !important;
}

.text-overlay-dark-200 {
  color: rgba(20, 20, 20, 0.2) !important;
}

.border-overlay-dark-200 {
  border-color: rgba(20, 20, 20, 0.2) !important;
}

.shadow-overlay-dark-200 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-overlay-dark-300 {
  background-color: rgba(20, 20, 20, 0.2980392157) !important;
}

.text-overlay-dark-300 {
  color: rgba(20, 20, 20, 0.2980392157) !important;
}

.border-overlay-dark-300 {
  border-color: rgba(20, 20, 20, 0.2980392157) !important;
}

.shadow-overlay-dark-300 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-overlay-dark-400 {
  background-color: rgba(20, 20, 20, 0.4) !important;
}

.text-overlay-dark-400 {
  color: rgba(20, 20, 20, 0.4) !important;
}

.border-overlay-dark-400 {
  border-color: rgba(20, 20, 20, 0.4) !important;
}

.shadow-overlay-dark-400 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-overlay-dark-500 {
  background-color: rgba(20, 20, 20, 0.4980392157) !important;
}

.text-overlay-dark-500 {
  color: rgba(20, 20, 20, 0.4980392157) !important;
}

.border-overlay-dark-500 {
  border-color: rgba(20, 20, 20, 0.4980392157) !important;
}

.shadow-overlay-dark-500 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-overlay-dark-600 {
  background-color: rgba(20, 20, 20, 0.6) !important;
}

.text-overlay-dark-600 {
  color: rgba(20, 20, 20, 0.6) !important;
}

.border-overlay-dark-600 {
  border-color: rgba(20, 20, 20, 0.6) !important;
}

.shadow-overlay-dark-600 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-overlay-dark-700 {
  background-color: rgba(20, 20, 20, 0.6980392157) !important;
}

.text-overlay-dark-700 {
  color: rgba(20, 20, 20, 0.6980392157) !important;
}

.border-overlay-dark-700 {
  border-color: rgba(20, 20, 20, 0.6980392157) !important;
}

.shadow-overlay-dark-700 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-overlay-dark-800 {
  background-color: rgba(20, 20, 20, 0.8) !important;
}

.text-overlay-dark-800 {
  color: rgba(20, 20, 20, 0.8) !important;
}

.border-overlay-dark-800 {
  border-color: rgba(20, 20, 20, 0.8) !important;
}

.shadow-overlay-dark-800 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-overlay-dark-900 {
  background-color: rgba(20, 20, 20, 0.8980392157) !important;
}

.text-overlay-dark-900 {
  color: rgba(20, 20, 20, 0.8980392157) !important;
}

.border-overlay-dark-900 {
  border-color: rgba(20, 20, 20, 0.8980392157) !important;
}

.shadow-overlay-dark-900 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-grey-50 {
  background-color: #f5f5f5 !important;
}

.text-grey-50 {
  color: #f5f5f5 !important;
}

.border-grey-50 {
  border-color: #f5f5f5 !important;
}

.shadow-grey-50 {
  box-shadow: 0 8px 24px rgba(245, 245, 245, 0.18) !important;
}

.bg-grey-100 {
  background-color: #eaeaeb !important;
}

.text-grey-100 {
  color: #eaeaeb !important;
}

.border-grey-100 {
  border-color: #eaeaeb !important;
}

.shadow-grey-100 {
  box-shadow: 0 8px 24px rgba(234, 234, 235, 0.18) !important;
}

.bg-grey-200 {
  background-color: #dcdcde !important;
}

.text-grey-200 {
  color: #dcdcde !important;
}

.border-grey-200 {
  border-color: #dcdcde !important;
}

.shadow-grey-200 {
  box-shadow: 0 8px 24px rgba(220, 220, 222, 0.18) !important;
}

.bg-grey-300 {
  background-color: #bfbfc3 !important;
}

.text-grey-300 {
  color: #bfbfc3 !important;
}

.border-grey-300 {
  border-color: #bfbfc3 !important;
}

.shadow-grey-300 {
  box-shadow: 0 8px 24px rgba(191, 191, 195, 0.18) !important;
}

.bg-grey-400 {
  background-color: #949398 !important;
}

.text-grey-400 {
  color: #949398 !important;
}

.border-grey-400 {
  border-color: #949398 !important;
}

.shadow-grey-400 {
  box-shadow: 0 8px 24px rgba(148, 147, 152, 0.18) !important;
}

.bg-grey-500 {
  background-color: #737278 !important;
}

.text-grey-500 {
  color: #737278 !important;
}

.border-grey-500 {
  border-color: #737278 !important;
}

.shadow-grey-500 {
  box-shadow: 0 8px 24px rgba(115, 114, 120, 0.18) !important;
}

.bg-grey-600 {
  background-color: #5d5c62 !important;
}

.text-grey-600 {
  color: #5d5c62 !important;
}

.border-grey-600 {
  border-color: #5d5c62 !important;
}

.shadow-grey-600 {
  box-shadow: 0 8px 24px rgba(93, 92, 98, 0.18) !important;
}

.bg-grey-700 {
  background-color: #454448 !important;
}

.text-grey-700 {
  color: #454448 !important;
}

.border-grey-700 {
  border-color: #454448 !important;
}

.shadow-grey-700 {
  box-shadow: 0 8px 24px rgba(69, 68, 72, 0.18) !important;
}

.bg-grey-800 {
  background-color: #2a292c !important;
}

.text-grey-800 {
  color: #2a292c !important;
}

.border-grey-800 {
  border-color: #2a292c !important;
}

.shadow-grey-800 {
  box-shadow: 0 8px 24px rgba(42, 41, 44, 0.18) !important;
}

.bg-grey-900 {
  background-color: #141414 !important;
}

.text-grey-900 {
  color: #141414 !important;
}

.border-grey-900 {
  border-color: #141414 !important;
}

.shadow-grey-900 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

/* =========================================================
   LEGACY ALIASES
========================================================= */
.bg-blue-50 {
  background-color: #f5fbff !important;
}

.text-blue-50 {
  color: #f5fbff !important;
}

.border-blue-50 {
  border-color: #f5fbff !important;
}

.shadow-blue-50 {
  box-shadow: 0 8px 24px rgba(245, 251, 255, 0.18) !important;
}

.bg-blue-100 {
  background-color: #c5e9fd !important;
}

.text-blue-100 {
  color: #c5e9fd !important;
}

.border-blue-100 {
  border-color: #c5e9fd !important;
}

.shadow-blue-100 {
  box-shadow: 0 8px 24px rgba(197, 233, 253, 0.18) !important;
}

.bg-blue-200 {
  background-color: #98d7f9 !important;
}

.text-blue-200 {
  color: #98d7f9 !important;
}

.border-blue-200 {
  border-color: #98d7f9 !important;
}

.shadow-blue-200 {
  box-shadow: 0 8px 24px rgba(152, 215, 249, 0.18) !important;
}

.bg-blue-300 {
  background-color: #70c5f2 !important;
}

.text-blue-300 {
  color: #70c5f2 !important;
}

.border-blue-300 {
  border-color: #70c5f2 !important;
}

.shadow-blue-300 {
  box-shadow: 0 8px 24px rgba(112, 197, 242, 0.18) !important;
}

.bg-blue-400 {
  background-color: #50b4e9 !important;
}

.text-blue-400 {
  color: #50b4e9 !important;
}

.border-blue-400 {
  border-color: #50b4e9 !important;
}

.shadow-blue-400 {
  box-shadow: 0 8px 24px rgba(80, 180, 233, 0.18) !important;
}

.bg-blue-500 {
  background-color: #38a3dd !important;
}

.text-blue-500 {
  color: #38a3dd !important;
}

.border-blue-500 {
  border-color: #38a3dd !important;
}

.shadow-blue-500 {
  box-shadow: 0 8px 24px rgba(56, 163, 221, 0.18) !important;
}

.bg-blue-600 {
  background-color: #2793cd !important;
}

.text-blue-600 {
  color: #2793cd !important;
}

.border-blue-600 {
  border-color: #2793cd !important;
}

.shadow-blue-600 {
  box-shadow: 0 8px 24px rgba(39, 147, 205, 0.18) !important;
}

.bg-blue-700 {
  background-color: #1b81b8 !important;
}

.text-blue-700 {
  color: #1b81b8 !important;
}

.border-blue-700 {
  border-color: #1b81b8 !important;
}

.shadow-blue-700 {
  box-shadow: 0 8px 24px rgba(27, 129, 184, 0.18) !important;
}

.bg-blue-800 {
  background-color: #136fa0 !important;
}

.text-blue-800 {
  color: #136fa0 !important;
}

.border-blue-800 {
  border-color: #136fa0 !important;
}

.shadow-blue-800 {
  box-shadow: 0 8px 24px rgba(19, 111, 160, 0.18) !important;
}

.bg-blue-900 {
  background-color: #0e5d87 !important;
}

.text-blue-900 {
  color: #0e5d87 !important;
}

.border-blue-900 {
  border-color: #0e5d87 !important;
}

.shadow-blue-900 {
  box-shadow: 0 8px 24px rgba(14, 93, 135, 0.18) !important;
}

.bg-gray-50 {
  background-color: #f5f5f5 !important;
}

.text-gray-50 {
  color: #f5f5f5 !important;
}

.border-gray-50 {
  border-color: #f5f5f5 !important;
}

.shadow-gray-50 {
  box-shadow: 0 8px 24px rgba(245, 245, 245, 0.18) !important;
}

.bg-gray-100 {
  background-color: #eaeaeb !important;
}

.text-gray-100 {
  color: #eaeaeb !important;
}

.border-gray-100 {
  border-color: #eaeaeb !important;
}

.shadow-gray-100 {
  box-shadow: 0 8px 24px rgba(234, 234, 235, 0.18) !important;
}

.bg-gray-200 {
  background-color: #dcdcde !important;
}

.text-gray-200 {
  color: #dcdcde !important;
}

.border-gray-200 {
  border-color: #dcdcde !important;
}

.shadow-gray-200 {
  box-shadow: 0 8px 24px rgba(220, 220, 222, 0.18) !important;
}

.bg-gray-300 {
  background-color: #bfbfc3 !important;
}

.text-gray-300 {
  color: #bfbfc3 !important;
}

.border-gray-300 {
  border-color: #bfbfc3 !important;
}

.shadow-gray-300 {
  box-shadow: 0 8px 24px rgba(191, 191, 195, 0.18) !important;
}

.bg-gray-400 {
  background-color: #949398 !important;
}

.text-gray-400 {
  color: #949398 !important;
}

.border-gray-400 {
  border-color: #949398 !important;
}

.shadow-gray-400 {
  box-shadow: 0 8px 24px rgba(148, 147, 152, 0.18) !important;
}

.bg-gray-500 {
  background-color: #737278 !important;
}

.text-gray-500 {
  color: #737278 !important;
}

.border-gray-500 {
  border-color: #737278 !important;
}

.shadow-gray-500 {
  box-shadow: 0 8px 24px rgba(115, 114, 120, 0.18) !important;
}

.bg-gray-600 {
  background-color: #5d5c62 !important;
}

.text-gray-600 {
  color: #5d5c62 !important;
}

.border-gray-600 {
  border-color: #5d5c62 !important;
}

.shadow-gray-600 {
  box-shadow: 0 8px 24px rgba(93, 92, 98, 0.18) !important;
}

.bg-gray-700 {
  background-color: #454448 !important;
}

.text-gray-700 {
  color: #454448 !important;
}

.border-gray-700 {
  border-color: #454448 !important;
}

.shadow-gray-700 {
  box-shadow: 0 8px 24px rgba(69, 68, 72, 0.18) !important;
}

.bg-gray-800 {
  background-color: #2a292c !important;
}

.text-gray-800 {
  color: #2a292c !important;
}

.border-gray-800 {
  border-color: #2a292c !important;
}

.shadow-gray-800 {
  box-shadow: 0 8px 24px rgba(42, 41, 44, 0.18) !important;
}

.bg-gray-900 {
  background-color: #141414 !important;
}

.text-gray-900 {
  color: #141414 !important;
}

.border-gray-900 {
  border-color: #141414 !important;
}

.shadow-gray-900 {
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.18) !important;
}

.bg-green-50 {
  background-color: #f5fff6 !important;
}

.text-green-50 {
  color: #f5fff6 !important;
}

.border-green-50 {
  border-color: #f5fff6 !important;
}

.shadow-green-50 {
  box-shadow: 0 8px 24px rgba(245, 255, 246, 0.18) !important;
}

.bg-green-100 {
  background-color: #c5fdce !important;
}

.text-green-100 {
  color: #c5fdce !important;
}

.border-green-100 {
  border-color: #c5fdce !important;
}

.shadow-green-100 {
  box-shadow: 0 8px 24px rgba(197, 253, 206, 0.18) !important;
}

.bg-green-200 {
  background-color: #98f9a6 !important;
}

.text-green-200 {
  color: #98f9a6 !important;
}

.border-green-200 {
  border-color: #98f9a6 !important;
}

.shadow-green-200 {
  box-shadow: 0 8px 24px rgba(152, 249, 166, 0.18) !important;
}

.bg-green-300 {
  background-color: #70f284 !important;
}

.text-green-300 {
  color: #70f284 !important;
}

.border-green-300 {
  border-color: #70f284 !important;
}

.shadow-green-300 {
  box-shadow: 0 8px 24px rgba(112, 242, 132, 0.18) !important;
}

.bg-green-400 {
  background-color: #50e967 !important;
}

.text-green-400 {
  color: #50e967 !important;
}

.border-green-400 {
  border-color: #50e967 !important;
}

.shadow-green-400 {
  box-shadow: 0 8px 24px rgba(80, 233, 103, 0.18) !important;
}

.bg-green-500 {
  background-color: #38dd51 !important;
}

.text-green-500 {
  color: #38dd51 !important;
}

.border-green-500 {
  border-color: #38dd51 !important;
}

.shadow-green-500 {
  box-shadow: 0 8px 24px rgba(56, 221, 81, 0.18) !important;
}

.bg-green-600 {
  background-color: #27cd40 !important;
}

.text-green-600 {
  color: #27cd40 !important;
}

.border-green-600 {
  border-color: #27cd40 !important;
}

.shadow-green-600 {
  box-shadow: 0 8px 24px rgba(39, 205, 64, 0.18) !important;
}

.bg-green-700 {
  background-color: #1bb832 !important;
}

.text-green-700 {
  color: #1bb832 !important;
}

.border-green-700 {
  border-color: #1bb832 !important;
}

.shadow-green-700 {
  box-shadow: 0 8px 24px rgba(27, 184, 50, 0.18) !important;
}

.bg-green-800 {
  background-color: #13a028 !important;
}

.text-green-800 {
  color: #13a028 !important;
}

.border-green-800 {
  border-color: #13a028 !important;
}

.shadow-green-800 {
  box-shadow: 0 8px 24px rgba(19, 160, 40, 0.18) !important;
}

.bg-green-900 {
  background-color: #0e8720 !important;
}

.text-green-900 {
  color: #0e8720 !important;
}

.border-green-900 {
  border-color: #0e8720 !important;
}

.shadow-green-900 {
  box-shadow: 0 8px 24px rgba(14, 135, 32, 0.18) !important;
}

.bg-red-50 {
  background-color: #fff5f5 !important;
}

.text-red-50 {
  color: #fff5f5 !important;
}

.border-red-50 {
  border-color: #fff5f5 !important;
}

.shadow-red-50 {
  box-shadow: 0 8px 24px rgba(255, 245, 245, 0.18) !important;
}

.bg-red-100 {
  background-color: #fdc8c5 !important;
}

.text-red-100 {
  color: #fdc8c5 !important;
}

.border-red-100 {
  border-color: #fdc8c5 !important;
}

.shadow-red-100 {
  box-shadow: 0 8px 24px rgba(253, 200, 197, 0.18) !important;
}

.bg-red-200 {
  background-color: #f99c98 !important;
}

.text-red-200 {
  color: #f99c98 !important;
}

.border-red-200 {
  border-color: #f99c98 !important;
}

.shadow-red-200 {
  box-shadow: 0 8px 24px rgba(249, 156, 152, 0.18) !important;
}

.bg-red-300 {
  background-color: #f27770 !important;
}

.text-red-300 {
  color: #f27770 !important;
}

.border-red-300 {
  border-color: #f27770 !important;
}

.shadow-red-300 {
  box-shadow: 0 8px 24px rgba(242, 119, 112, 0.18) !important;
}

.bg-red-400 {
  background-color: #e95850 !important;
}

.text-red-400 {
  color: #e95850 !important;
}

.border-red-400 {
  border-color: #e95850 !important;
}

.shadow-red-400 {
  box-shadow: 0 8px 24px rgba(233, 88, 80, 0.18) !important;
}

.bg-red-500 {
  background-color: #dd4138 !important;
}

.text-red-500 {
  color: #dd4138 !important;
}

.border-red-500 {
  border-color: #dd4138 !important;
}

.shadow-red-500 {
  box-shadow: 0 8px 24px rgba(221, 65, 56, 0.18) !important;
}

.bg-red-600 {
  background-color: #cd2f27 !important;
}

.text-red-600 {
  color: #cd2f27 !important;
}

.border-red-600 {
  border-color: #cd2f27 !important;
}

.shadow-red-600 {
  box-shadow: 0 8px 24px rgba(205, 47, 39, 0.18) !important;
}

.bg-red-700 {
  background-color: #b8231b !important;
}

.text-red-700 {
  color: #b8231b !important;
}

.border-red-700 {
  border-color: #b8231b !important;
}

.shadow-red-700 {
  box-shadow: 0 8px 24px rgba(184, 35, 27, 0.18) !important;
}

.bg-red-800 {
  background-color: #a01a13 !important;
}

.text-red-800 {
  color: #a01a13 !important;
}

.border-red-800 {
  border-color: #a01a13 !important;
}

.shadow-red-800 {
  box-shadow: 0 8px 24px rgba(160, 26, 19, 0.18) !important;
}

.bg-red-900 {
  background-color: #87140e !important;
}

.text-red-900 {
  color: #87140e !important;
}

.border-red-900 {
  border-color: #87140e !important;
}

.shadow-red-900 {
  box-shadow: 0 8px 24px rgba(135, 20, 14, 0.18) !important;
}

.bg-orange-50 {
  background-color: #fff8f5 !important;
}

.text-orange-50 {
  color: #fff8f5 !important;
}

.border-orange-50 {
  border-color: #fff8f5 !important;
}

.shadow-orange-50 {
  box-shadow: 0 8px 24px rgba(255, 248, 245, 0.18) !important;
}

.bg-orange-100 {
  background-color: #fdd7c5 !important;
}

.text-orange-100 {
  color: #fdd7c5 !important;
}

.border-orange-100 {
  border-color: #fdd7c5 !important;
}

.shadow-orange-100 {
  box-shadow: 0 8px 24px rgba(253, 215, 197, 0.18) !important;
}

.bg-orange-200 {
  background-color: #f9b698 !important;
}

.text-orange-200 {
  color: #f9b698 !important;
}

.border-orange-200 {
  border-color: #f9b698 !important;
}

.shadow-orange-200 {
  box-shadow: 0 8px 24px rgba(249, 182, 152, 0.18) !important;
}

.bg-orange-300 {
  background-color: #f29970 !important;
}

.text-orange-300 {
  color: #f29970 !important;
}

.border-orange-300 {
  border-color: #f29970 !important;
}

.shadow-orange-300 {
  box-shadow: 0 8px 24px rgba(242, 153, 112, 0.18) !important;
}

.bg-orange-400 {
  background-color: #e98150 !important;
}

.text-orange-400 {
  color: #e98150 !important;
}

.border-orange-400 {
  border-color: #e98150 !important;
}

.shadow-orange-400 {
  box-shadow: 0 8px 24px rgba(233, 129, 80, 0.18) !important;
}

.bg-orange-500 {
  background-color: #dd6d38 !important;
}

.text-orange-500 {
  color: #dd6d38 !important;
}

.border-orange-500 {
  border-color: #dd6d38 !important;
}

.shadow-orange-500 {
  box-shadow: 0 8px 24px rgba(221, 109, 56, 0.18) !important;
}

.bg-orange-600 {
  background-color: #cd5b27 !important;
}

.text-orange-600 {
  color: #cd5b27 !important;
}

.border-orange-600 {
  border-color: #cd5b27 !important;
}

.shadow-orange-600 {
  box-shadow: 0 8px 24px rgba(205, 91, 39, 0.18) !important;
}

.bg-orange-700 {
  background-color: #b84d1b !important;
}

.text-orange-700 {
  color: #b84d1b !important;
}

.border-orange-700 {
  border-color: #b84d1b !important;
}

.shadow-orange-700 {
  box-shadow: 0 8px 24px rgba(184, 77, 27, 0.18) !important;
}

.bg-orange-800 {
  background-color: #a03f13 !important;
}

.text-orange-800 {
  color: #a03f13 !important;
}

.border-orange-800 {
  border-color: #a03f13 !important;
}

.shadow-orange-800 {
  box-shadow: 0 8px 24px rgba(160, 63, 19, 0.18) !important;
}

.bg-orange-900 {
  background-color: #87340e !important;
}

.text-orange-900 {
  color: #87340e !important;
}

.border-orange-900 {
  border-color: #87340e !important;
}

.shadow-orange-900 {
  box-shadow: 0 8px 24px rgba(135, 52, 14, 0.18) !important;
}

.bg-yellow-50 {
  background-color: #fffcf5 !important;
}

.text-yellow-50 {
  color: #fffcf5 !important;
}

.border-yellow-50 {
  border-color: #fffcf5 !important;
}

.shadow-yellow-50 {
  box-shadow: 0 8px 24px rgba(255, 252, 245, 0.18) !important;
}

.bg-yellow-100 {
  background-color: #fdebc5 !important;
}

.text-yellow-100 {
  color: #fdebc5 !important;
}

.border-yellow-100 {
  border-color: #fdebc5 !important;
}

.shadow-yellow-100 {
  box-shadow: 0 8px 24px rgba(253, 235, 197, 0.18) !important;
}

.bg-yellow-200 {
  background-color: #f9da98 !important;
}

.text-yellow-200 {
  color: #f9da98 !important;
}

.border-yellow-200 {
  border-color: #f9da98 !important;
}

.shadow-yellow-200 {
  box-shadow: 0 8px 24px rgba(249, 218, 152, 0.18) !important;
}

.bg-yellow-300 {
  background-color: #f2c970 !important;
}

.text-yellow-300 {
  color: #f2c970 !important;
}

.border-yellow-300 {
  border-color: #f2c970 !important;
}

.shadow-yellow-300 {
  box-shadow: 0 8px 24px rgba(242, 201, 112, 0.18) !important;
}

.bg-yellow-400 {
  background-color: #e9b950 !important;
}

.text-yellow-400 {
  color: #e9b950 !important;
}

.border-yellow-400 {
  border-color: #e9b950 !important;
}

.shadow-yellow-400 {
  box-shadow: 0 8px 24px rgba(233, 185, 80, 0.18) !important;
}

.bg-yellow-500 {
  background-color: #dda938 !important;
}

.text-yellow-500 {
  color: #dda938 !important;
}

.border-yellow-500 {
  border-color: #dda938 !important;
}

.shadow-yellow-500 {
  box-shadow: 0 8px 24px rgba(221, 169, 56, 0.18) !important;
}

.bg-yellow-600 {
  background-color: #cd9827 !important;
}

.text-yellow-600 {
  color: #cd9827 !important;
}

.border-yellow-600 {
  border-color: #cd9827 !important;
}

.shadow-yellow-600 {
  box-shadow: 0 8px 24px rgba(205, 152, 39, 0.18) !important;
}

.bg-yellow-700 {
  background-color: #b8861b !important;
}

.text-yellow-700 {
  color: #b8861b !important;
}

.border-yellow-700 {
  border-color: #b8861b !important;
}

.shadow-yellow-700 {
  box-shadow: 0 8px 24px rgba(184, 134, 27, 0.18) !important;
}

.bg-yellow-800 {
  background-color: #a07313 !important;
}

.text-yellow-800 {
  color: #a07313 !important;
}

.border-yellow-800 {
  border-color: #a07313 !important;
}

.shadow-yellow-800 {
  box-shadow: 0 8px 24px rgba(160, 115, 19, 0.18) !important;
}

.bg-yellow-900 {
  background-color: #87610e !important;
}

.text-yellow-900 {
  color: #87610e !important;
}

.border-yellow-900 {
  border-color: #87610e !important;
}

.shadow-yellow-900 {
  box-shadow: 0 8px 24px rgba(135, 97, 14, 0.18) !important;
}

.app-btn {
  --btn-bg: #0f1720;
  --btn-text: #ffffff;
  --btn-border: transparent;
  --btn-shadow: none;
  --btn-hover-text: #ffffff;
  --btn-hover-border: var(--btn-border);
  appearance: none;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-text);
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, opacity 0.18s ease, color 0.18s ease, background 0.18s ease;
  box-shadow: var(--btn-shadow);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
}
.app-btn--sm {
  min-height: 34px;
  padding: 8px 14px;
  font-size: 11px;
}
.app-btn--md {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 12px;
}
.app-btn--lg {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 12px;
}
.app-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #d97745;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
  pointer-events: none;
  display: none;
}
.app-btn > * {
  position: relative;
  z-index: 1;
}
.app-btn:hover:not(:disabled) {
  color: var(--btn-hover-text);
  border-color: var(--btn-hover-border);
}
.app-btn:active:not(:disabled) {
  transform: translateY(0);
}
.app-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(217, 119, 69, 0.16);
}
.app-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.app-btn:disabled::before {
  display: none;
}
.app-btn--block {
  width: 100%;
}
.app-btn--sm {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 11px;
}
.app-btn--md {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 11px;
}
.app-btn--lg {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 11px;
}
.app-btn--primary {
  --btn-bg: #0f1720;
  --btn-text: #ffffff;
  --btn-border: #0f1720;
  --btn-hover-text: #ffffff;
  --btn-hover-border: #d97745;
}
.app-btn--primary::before {
  display: block;
  background: #d97745;
}
.app-btn--primary:hover:not(:disabled)::before {
  transform: translateX(0);
}
.app-btn--secondary {
  --btn-bg: #d97745;
  --btn-text: #ffffff;
  --btn-border: #d97745;
  --btn-hover-text: #ffffff;
  --btn-hover-border: #c96d3f;
}
.app-btn--secondary::before {
  display: block;
  background: #c96d3f;
}
.app-btn--secondary:hover:not(:disabled)::before {
  left: 0;
}
.app-btn--outline {
  --btn-bg: #ffffff;
  --btn-text: #7b8188;
  --btn-border: #d5d9df;
  --btn-hover-text: #d97745;
  --btn-hover-border: #d97745;
  --btn-shadow: none;
  background: #ffffff;
}
.app-btn--outline::before {
  display: none;
}
.app-btn--outline:hover:not(:disabled) {
  background: #ffffff;
  color: #d97745;
  border-color: #d97745;
}
.app-btn--ghost {
  --btn-bg: transparent;
  --btn-text: #0f172a;
  --btn-border: transparent;
  --btn-hover-text: #0f172a;
  --btn-hover-border: transparent;
  --btn-shadow: none;
}
.app-btn--ghost::before {
  display: none;
}
.app-btn--ghost:hover:not(:disabled) {
  background: rgba(15, 23, 42, 0.05);
}
.app-btn__spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-top-color: #fff;
  animation: app-btn-spin 0.8s linear infinite;
}

@keyframes app-btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.form-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  width: 100%;
}
.form-input--full {
  width: 100%;
}
.form-input__label {
  margin: 0;
  color: #2a292c;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}
.form-input__required {
  margin-left: 3px;
  color: #d94b41;
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.form-input__control-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.form-input__field {
  width: 100%;
  min-width: 0;
  height: 40px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(42, 41, 44, 0.45);
  border-radius: 2px;
  background: #fcfcfc;
  color: #2a292c;
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.form-input__field::placeholder {
  color: #7b7d84;
  opacity: 1;
}
.form-input__field:hover:not(:disabled):not([readonly]) {
  border-color: rgba(42, 41, 44, 0.6);
}
.form-input__field:focus {
  border-color: rgba(42, 41, 44, 0.8);
  background: #ffffff;
  box-shadow: none;
}
.form-input__field:disabled, .form-input__field[readonly] {
  background: #f3f3f3;
  color: #8a8a8a;
  cursor: not-allowed;
}
.form-input__field--error {
  border-color: #ff5f57;
}
.form-input__field--error:hover, .form-input__field--error:focus {
  border-color: #ff5f57;
  box-shadow: none;
}
.form-input__error {
  margin-top: 0;
  color: #ff5f57;
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.app-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
  position: relative;
}
.app-select__label {
  margin: 0;
  color: #2a292c;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}
.app-select__required {
  margin-left: 3px;
  color: #d94b41;
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.app-select__wrap {
  position: relative;
  width: 100%;
}
.app-select__backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  z-index: 90;
  cursor: default;
}
.app-select__trigger {
  position: relative;
  z-index: 100;
  width: 100%;
  min-height: 40px;
  height: 40px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(42, 41, 44, 0.45);
  border-radius: 2px;
  background: #fcfcfc;
  color: #2a292c;
  font-family: "Motiva Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.app-select__trigger:hover:not(:disabled) {
  border-color: rgba(42, 41, 44, 0.6);
  background: #ffffff;
  box-shadow: none;
}
.app-select__trigger:focus-visible {
  border-color: rgba(42, 41, 44, 0.8);
  background: #ffffff;
  box-shadow: none;
}
.app-select__trigger:disabled {
  background: #f3f3f3;
  color: #8a8a8a;
  border-color: rgba(42, 41, 44, 0.18);
  cursor: not-allowed;
  box-shadow: none;
}
.app-select__trigger.is-open {
  border-color: rgba(42, 41, 44, 0.8);
  background: #ffffff;
  box-shadow: none;
}
.app-select__trigger.is-placeholder .app-select__value {
  color: #7b7d84;
}
.app-select__trigger.is-error {
  border-color: #ff5f57;
  box-shadow: none;
}
.app-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  color: #2a292c;
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}
.app-select__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f7782;
  transition: transform 0.18s ease, color 0.18s ease;
}
.app-select__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.app-select__trigger.is-open .app-select__icon {
  transform: rotate(180deg);
  color: #d46d3f;
}
.app-select__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  z-index: 110;
  overflow: hidden;
  border: 1px solid rgba(42, 41, 44, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.1);
  animation: appSelectPanelIn 0.14s ease-out;
}
.app-select__option {
  width: 100%;
  border: 0;
  background: transparent;
  color: #2a292c;
  font-family: "Motiva Sans", sans-serif;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
  box-sizing: border-box;
}
.app-select__option:hover:not(:disabled) {
  background: rgba(15, 23, 32, 0.05);
}
.app-select__option:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.app-select__option.is-active {
  background: rgba(15, 23, 32, 0.05);
}
.app-select__option.is-selected {
  background: rgba(212, 109, 63, 0.08);
}
.app-select__option-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.app-select__option-label {
  color: inherit;
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
  word-break: break-word;
}
.app-select__option-description {
  color: #7b8190;
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  line-height: 15px;
  font-weight: 400;
  letter-spacing: 0;
  word-break: break-word;
}
.app-select__check {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d46d3f;
}
.app-select__check svg {
  width: 16px;
  height: 16px;
  display: block;
}
.app-select__empty {
  padding: 12px;
  color: #7a8088;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  text-align: left;
}
.app-select__helper {
  margin-top: 2px;
  color: #7a8088;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.app-select__error {
  margin-top: 2px;
  color: #ff5f57;
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

@keyframes appSelectPanelIn {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================================
   ONBOARDING SHELL — FINAL DESKTOP FIGMA MATCH
========================================================= */
.onboarding-shell {
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  background: #FCFCFC;
  border: 1px solid #DDD8D2;
  display: grid;
  grid-template-rows: 56px minmax(0, 1fr) 56px;
  overflow: hidden;
  box-sizing: border-box;
}

.onboarding-shell__header {
  display: grid;
  grid-template-columns: 210px 1fr 180px;
  align-items: center;
  height: 56px;
  padding: 0 20px;
  border-bottom: 1px solid #DDD8D2;
  background: #FCFCFC;
  box-sizing: border-box;
  flex-shrink: 0;
}

.onboarding-shell__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.onboarding-shell__logo {
  display: block;
  height: 42px;
  width: auto;
  object-fit: contain;
}

.onboarding-shell__welcome {
  text-align: center;
  font-size: 18px;
  line-height: 1;
  color: #73787e;
  font-weight: 500;
}
.onboarding-shell__welcome span {
  color: #202428;
  font-weight: 700;
}

.onboarding-shell__skip {
  justify-self: end;
  border: 0;
  background: transparent;
  color: #6F7680;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.onboarding-shell__skip:hover {
  color: #D46D3F;
}
.onboarding-shell__skip:focus-visible {
  outline: 2px solid rgba(212, 109, 63, 0.3);
  outline-offset: 2px;
  border-radius: 6px;
}

.onboarding-shell__body {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 0;
  height: 100%;
  background: #FCFCFC;
  overflow: hidden;
}

.onboarding-shell__sidebar {
  background: #FCFCFC;
  border-right: 1px solid #DDD8D2;
  padding: 28px 22px 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.onboarding-shell__sidebar-title {
  margin: 0 0 22px;
  color: #8E949A;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.onboarding-shell__step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 14px;
  align-items: start;
  column-gap: 12px;
  padding-left: 20px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

.onboarding-shell__step--last::after {
  display: none;
}

.onboarding-shell__step:not(.onboarding-shell__step--last)::after {
  content: "";
  position: absolute;
  left: 37px;
  top: 37px;
  width: 1px;
  height: 52px;
  background: #e7ddd6;
}

.onboarding-shell__step-node {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ddd4cd;
  background: #ffffff;
  color: #8f97a1;
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
  box-sizing: border-box;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}
.onboarding-shell__step-node i {
  font-size: 12px;
  line-height: 1;
}

.onboarding-shell__step-text {
  padding-top: 4px;
  min-width: 0;
}

.onboarding-shell__step-title {
  margin: 0;
  color: #5f6874;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.onboarding-shell__step-subtitle {
  margin-top: 2px;
  color: #9da5af;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
}

.onboarding-shell__step-check {
  color: #d46d3f;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  padding-top: 3px;
  justify-self: end;
}

.onboarding-shell__step--active .onboarding-shell__step-node {
  background: #d46d3f;
  border-color: #d46d3f;
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(212, 109, 63, 0.12);
}
.onboarding-shell__step--active .onboarding-shell__step-title {
  color: #d46d3f;
  font-weight: 700;
}
.onboarding-shell__step--active .onboarding-shell__step-subtitle {
  color: #7f8790;
}
.onboarding-shell__step--active .onboarding-shell__step-check {
  color: #d46d3f;
}

.onboarding-shell__step--completed .onboarding-shell__step-node {
  background: #fdf1ea;
  border-color: #efc3ae;
  color: #d46d3f;
  box-shadow: none;
}
.onboarding-shell__step--completed .onboarding-shell__step-title {
  color: #6f7680;
  font-weight: 600;
}
.onboarding-shell__step--completed .onboarding-shell__step-subtitle {
  color: #9aa2ac;
}
.onboarding-shell__step--completed .onboarding-shell__step-check {
  color: #d46d3f;
}

.onboarding-shell__progress-wrap {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #DDD8D2;
}

.onboarding-shell__progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #8b9198;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.onboarding-shell__progress-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #E7E2DC;
  overflow: hidden;
}

.onboarding-shell__progress-fill {
  height: 100%;
  background: #d46d3f;
  border-radius: inherit;
  transition: width 0.25s ease;
}

.onboarding-shell__main {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: #FCFCFC;
  padding: 6rem;
  box-sizing: border-box;
}

.onboarding-shell__main-inner {
  width: 100%;
  max-width: 860px;
  padding: 20px 0 18px;
  box-sizing: border-box;
}

.onboarding-shell__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin: 0 0 18px;
  border: 1px solid rgba(212, 109, 63, 0.38);
  border-radius: 999px;
  background: rgba(212, 109, 63, 0.06);
  color: #D46D3F;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
}

.onboarding-shell__title {
  max-width: 820px;
  margin: 0 0 10px;
  color: #1f2328;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.onboarding-shell__title span {
  color: #D46D3F;
  font-weight: 600;
}

.onboarding-shell__description {
  max-width: 620px;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.2;
  color: #6f7680;
  letter-spacing: 1px;
}

.onboarding-shell__footer {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-top: 1px solid #DDD8D2;
  background: #FCFCFC;
  box-sizing: border-box;
  flex-shrink: 0;
}

.onboarding-shell__footer-step {
  color: #555b61;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}
.onboarding-shell__footer-step strong {
  color: #202428;
  font-weight: 700;
}

.onboarding-shell__footer-actions {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .onboarding-shell__main {
    padding-left: 28px;
    padding-right: 28px;
  }
  .onboarding-shell__main-inner {
    max-width: 100%;
  }
  .onboarding-shell__title {
    font-size: 36px;
    line-height: 1.1;
    max-width: 640px;
  }
  .onboarding-shell__description {
    max-width: 680px;
  }
}
@media (max-width: 900px) {
  .onboarding-shell {
    height: auto;
    min-height: 100dvh;
    grid-template-rows: auto auto auto;
  }
  .onboarding-shell__header {
    grid-template-columns: 1fr auto;
    row-gap: 10px;
    padding: 14px 16px;
    height: auto;
  }
  .onboarding-shell__brand {
    grid-column: 1/2;
  }
  .onboarding-shell__welcome {
    grid-column: 1/-1;
    order: 3;
    text-align: left;
  }
  .onboarding-shell__skip {
    grid-column: 2/3;
  }
  .onboarding-shell__body {
    grid-template-columns: 1fr;
    height: auto;
  }
  .onboarding-shell__sidebar {
    border-right: 0;
    border-bottom: 1px solid #DDD8D2;
    overflow: visible;
  }
  .onboarding-shell__main {
    overflow: visible;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .onboarding-shell__main-inner {
    padding: 24px 0 20px;
  }
  .onboarding-shell__footer {
    padding: 0 20px;
  }
}
@media (max-width: 640px) {
  .onboarding-shell__title {
    font-size: 32px;
    line-height: 1.1;
  }
  .onboarding-shell__description {
    font-size: 13px;
  }
  .onboarding-shell__footer {
    flex-wrap: wrap;
    row-gap: 10px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .onboarding-shell__footer-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
.onboarding-shell__sidebar {
  background: #FCFCFC;
  border-right: 1px solid #DDD8D2;
  padding: 30px 22px 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.onboarding-shell__sidebar-title {
  margin: 0 0 24px;
  color: #8E949A;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.onboarding-shell__step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 14px;
  align-items: start;
  column-gap: 12px;
  padding-left: 20px;
  margin-bottom: 60px;
  box-sizing: border-box;
}

.onboarding-shell__step--last::after {
  display: none;
}

.onboarding-shell__step:not(.onboarding-shell__step--last)::after {
  content: "";
  position: absolute;
  left: 37px;
  top: 38px;
  width: 1px;
  height: 64px;
  background: #e7ddd6;
}

.onboarding-shell__step-node {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ddd4cd;
  background: #ffffff;
  color: #8f97a1;
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
  box-sizing: border-box;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}
.onboarding-shell__step-node i {
  font-size: 12px;
  line-height: 1;
}

.onboarding-shell__step-text {
  padding-top: 4px;
  min-width: 0;
}

.onboarding-shell__step-title {
  margin: 0;
  color: #5f6874;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.onboarding-shell__step-subtitle {
  margin-top: 3px;
  color: #9da5af;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}

.onboarding-shell__step-check {
  color: #d46d3f;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  padding-top: 3px;
  justify-self: end;
}

.onboarding-shell__step--active .onboarding-shell__step-node {
  background: #d46d3f;
  border-color: #d46d3f;
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(212, 109, 63, 0.12);
}
.onboarding-shell__step--active .onboarding-shell__step-title {
  color: #d46d3f;
  font-weight: 700;
}
.onboarding-shell__step--active .onboarding-shell__step-subtitle {
  color: #7f8790;
}
.onboarding-shell__step--active .onboarding-shell__step-check {
  color: #d46d3f;
}

.onboarding-shell__step--completed .onboarding-shell__step-node {
  background: #fdf1ea;
  border-color: #efc3ae;
  color: #d46d3f;
  box-shadow: none;
}
.onboarding-shell__step--completed .onboarding-shell__step-title {
  color: #d46d3f;
  font-weight: 700;
}
.onboarding-shell__step--completed .onboarding-shell__step-subtitle {
  color: #8f96a0;
}
.onboarding-shell__step--completed .onboarding-shell__step-check {
  color: #d46d3f;
}

.onboarding-shell__progress-wrap {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #DDD8D2;
}

/* =========================================================
   JOURNEY SHELL + SIDEBAR + HEADER
   FIXED APP-SHELL VERSION
========================================================= */
/* ---------- Shell ---------- */
.journey-shell {
  height: 100vh;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  background: #f6f3ef;
  overflow: hidden;
}
.journey-shell__sidebar {
  min-width: 0;
  height: 100vh;
  overflow: hidden;
}
.journey-shell__main {
  min-width: 0;
  height: 100vh;
  min-height: 0;
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr);
  background: #f6f3ef;
  overflow: hidden;
  border-left: 1px solid rgba(32, 38, 44, 0.08);
}
.journey-shell__header {
  min-width: 0;
  min-height: 0;
  z-index: 20;
}
.journey-shell__content {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f6f3ef;
}

/* ---------- Sidebar ---------- */
.journey-sidebar {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: radial-gradient(380px 260px at 18% 8%, rgba(212, 109, 63, 0.17) 0%, rgba(212, 109, 63, 0.03) 34%, rgba(212, 109, 63, 0) 72%), radial-gradient(340px 300px at 80% 92%, rgba(212, 109, 63, 0.12) 0%, rgba(212, 109, 63, 0.02) 30%, rgba(212, 109, 63, 0) 72%), radial-gradient(260px 260px at 56% 46%, rgba(18, 55, 101, 0.2) 0%, rgba(18, 55, 101, 0.05) 36%, rgba(18, 55, 101, 0) 72%), linear-gradient(180deg, #151a20 0%, #10151a 52%, #10161d 100%);
  color: rgba(255, 255, 255, 0.92);
  border-right: 0;
  overflow: hidden;
}
.journey-sidebar__brand {
  flex: 0 0 54px;
  min-height: 54px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  background: rgba(248, 247, 245, 0.96);
  border-bottom: 1px solid #ddd7d0;
}
.journey-sidebar__brand-left {
  min-width: 0;
  display: flex;
  align-items: center;
}
.journey-sidebar__logo {
  width: 126px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.journey-sidebar__brand-divider {
  display: none;
}
.journey-sidebar__body {
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 8px 8px 10px;
  overflow: hidden;
}
.journey-sidebar__section {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.journey-sidebar__section-title {
  margin: 0 0 8px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.journey-sidebar__phase-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.journey-sidebar__phase {
  width: 100%;
  min-height: 44px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.journey-sidebar__phase:hover:not(.is-locked) {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.03);
}
.journey-sidebar__phase.is-active {
  background: linear-gradient(90deg, rgba(212, 109, 63, 0.3) 0%, rgba(212, 109, 63, 0.12) 58%, rgba(212, 109, 63, 0.06) 100%);
  border-color: rgba(212, 109, 63, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.journey-sidebar__phase.is-locked {
  opacity: 0.66;
}
.journey-sidebar__phase-left {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 9px;
}
.journey-sidebar__phase-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 109, 63, 0.3);
  color: #f6eee8;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}
.journey-sidebar__phase-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.journey-sidebar__phase-name-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.journey-sidebar__phase-name {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.journey-sidebar__phase-subtitle {
  color: rgba(255, 255, 255, 0.52);
  font-size: 7.5px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.journey-sidebar__phase-badge {
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(212, 109, 63, 0.26);
  color: #fff2ea;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.journey-sidebar__phase-lock {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.32);
  flex: 0 0 auto;
}
.journey-sidebar__phase-lock svg {
  width: 16px;
  height: 16px;
  display: block;
}
.journey-sidebar__divider {
  height: 1px;
  margin: 12px 14px 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 55%, rgba(255, 255, 255, 0.02) 100%);
}
.journey-sidebar__nav {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 14px;
  margin: 0;
  box-sizing: border-box;
}
.journey-sidebar__nav-item {
  width: 100%;
  min-width: 0;
  min-height: 30px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.journey-sidebar__nav-item:hover {
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.94);
}
.journey-sidebar__nav-item.is-active {
  background: linear-gradient(90deg, rgba(212, 109, 63, 0.34) 0%, rgba(212, 109, 63, 0.16) 52%, rgba(212, 109, 63, 0.1) 100%);
  border-color: rgba(212, 109, 63, 0.14);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.journey-sidebar__nav-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex: 0 0 15px;
}
.journey-sidebar__nav-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}
.journey-sidebar__nav-text {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.journey-sidebar__spacer {
  flex: 1 1 auto;
  min-height: 4px;
}
.journey-sidebar__streak {
  margin: 0 2px;
  min-height: 46px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 109, 63, 0.46);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(212, 109, 63, 0.14) 0%, rgba(212, 109, 63, 0.06) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  flex: 0 0 auto;
}
.journey-sidebar__streak-count {
  color: #ef8449;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  flex: 0 0 auto;
}
.journey-sidebar__streak-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.journey-sidebar__streak-title {
  color: #ef8449;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.05;
}
.journey-sidebar__streak-subtitle {
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  line-height: 1.1;
}

/* ---------- Header ---------- */
.journey-header {
  height: 58px;
  min-height: 58px;
  padding: 0 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(248, 247, 245, 0.96);
  border-bottom: 1px solid #ddd7d0;
  backdrop-filter: blur(8px);
}
.journey-header__left {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
.journey-header__breadcrumb {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
}
.journey-header__brand-label {
  color: #3d4248;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  flex: 0 0 auto;
}
.journey-header__phase-badge {
  padding: 4px 8px;
  border: 1px solid rgba(212, 109, 63, 0.38);
  border-radius: 999px;
  background: rgba(212, 109, 63, 0.06);
  color: #d46d3f;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
}
.journey-header__page-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #7a756f;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}
.journey-header__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.journey-header__profile {
  min-height: 40px;
  padding: 4px 10px 4px 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(36, 40, 46, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8);
  color: #1f2329;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.journey-header__profile:hover {
  background: #ffffff;
  border-color: rgba(36, 40, 46, 0.1);
  box-shadow: 0 4px 10px rgba(16, 24, 40, 0.05);
}
.journey-header__avatar-image, .journey-header__avatar-fallback {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  flex: 0 0 auto;
}
.journey-header__avatar-image {
  display: block;
  object-fit: cover;
}
.journey-header__avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #efb46f 0%, #d46d3f 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
.journey-header__profile-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.journey-header__profile-name {
  color: #2a2e33;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}
.journey-header__profile-role {
  color: #7f7a74;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}
.journey-header__chevron {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #535860;
  flex: 0 0 auto;
}
.journey-header__chevron svg {
  width: 12px;
  height: 12px;
  display: block;
}

/* ---------- Dashboard ---------- */
.journey-page {
  background: #f5f2ee;
  min-height: 100%;
}

.journey-dashboard {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.journey-dashboard__hero {
  min-height: 168px;
  padding: 24px 36px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  background: radial-gradient(520px 260px at 78% 36%, rgba(212, 109, 63, 0.4) 0%, rgba(212, 109, 63, 0.14) 30%, rgba(212, 109, 63, 0) 70%), radial-gradient(420px 220px at 18% 18%, rgba(26, 48, 78, 0.32) 0%, rgba(26, 48, 78, 0.08) 40%, rgba(26, 48, 78, 0) 72%), linear-gradient(180deg, #14181d 0%, #171c22 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.journey-dashboard__hero-left {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.journey-dashboard__date {
  color: #e37d4b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journey-dashboard__title {
  margin: 0;
  color: #f8f6f3;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.04em;
}
.journey-dashboard__title span {
  color: #e37d4b;
  font-weight: 400;
}
.journey-dashboard__subtitle {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.journey-dashboard__hero-right {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex: 0 0 auto;
}
.journey-dashboard__phase-chip {
  padding: 6px 12px;
  border: 1px solid rgba(212, 109, 63, 0.34);
  border-radius: 999px;
  background: rgba(212, 109, 63, 0.08);
  color: #e37d4b;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.journey-dashboard__progress-block {
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.journey-dashboard__progress-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journey-dashboard__progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.journey-dashboard__progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e37d4b 0%, #f0a46e 100%);
}
.journey-dashboard__progress-text {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 500;
}
.journey-dashboard__content {
  padding: 20px 28px 28px;
  background: #f5f2ee;
  flex: 1 1 auto;
}
.journey-dashboard__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.98fr);
  gap: 16px 18px;
  align-items: stretch;
}

.journey-card--module,
.journey-card--baseline {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.journey-card--module > .journey-module-card,
.journey-card--baseline > .journey-baseline-card {
  height: 100%;
}

.journey-module-card {
  display: flex;
  flex-direction: column;
}

.journey-module-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.journey-module-card__actions {
  margin-top: auto;
}

/* ---------- Shared dashboard card wrapper ---------- */
.journey-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.journey-card__section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7d7770;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journey-card__section-label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #cfc7bf;
}
.journey-card .journey-card--module, .journey-card .journey-card--tools, .journey-card .journey-card--streak {
  grid-column: 1;
}
.journey-card .journey-card--baseline, .journey-card .journey-card--reflection, .journey-card .journey-card--quote {
  grid-column: 2;
}

.journey-module-card {
  border: 1px solid #ddd7cf;
  border-radius: 10px;
  background: #fbfaf8;
  box-shadow: 0 8px 18px rgba(26, 31, 38, 0.045);
  overflow: hidden;
}
.journey-module-card__top {
  min-height: 40px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: radial-gradient(280px 100px at 72% 40%, rgba(212, 109, 63, 0.16) 0%, rgba(212, 109, 63, 0.02) 42%, rgba(212, 109, 63, 0) 80%), linear-gradient(180deg, #13181d 0%, #171c22 100%);
}
.journey-module-card__badge {
  padding: 4px 8px;
  border: 1px solid rgba(212, 109, 63, 0.5);
  border-radius: 999px;
  color: #e37d4b;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.journey-module-card__time {
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}
.journey-module-card__body {
  padding: 14px 16px 14px;
}
.journey-module-card__title {
  margin: 0 0 10px;
  color: #2d3137;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.journey-module-card__title span {
  color: #d46d3f;
  font-weight: 400;
}
.journey-module-card__text {
  margin: 0 0 10px;
  color: #4b4f55;
  font-size: 11px;
  line-height: 1.5;
  max-width: 100%;
}
.journey-module-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.journey-module-card__tags span {
  padding: 4px 8px;
  border: 1px solid #ddd7cf;
  border-radius: 999px;
  background: #f6f2ee;
  color: #7d7770;
  font-size: 9px;
  line-height: 1.1;
  font-weight: 500;
  white-space: nowrap;
}
.journey-module-card .journey-module-card__actions .app-btn {
  min-height: 30px;
  height: 30px;
  padding: 0 14px;
  font-size: 10px;
  line-height: 1;
  border-radius: 4px;
  letter-spacing: 0.03em;
}
.journey-module-card .journey-module-card__actions .app-btn--light {
  background: #f3f0ec;
  border-color: #d7d0c9;
  color: #9b948d;
  box-shadow: none;
}
.journey-module-card .journey-module-card__actions .app-btn--dark {
  box-shadow: none;
}
.journey-module-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* =========================================================
   PREMIUM BASELINE CARD (FIGMA STYLE)
========================================================= */
.journey-baseline-card {
  border: 1px solid #ddd7cf;
  border-radius: 12px;
  background: #fbfaf8;
  box-shadow: 0 10px 22px rgba(26, 31, 38, 0.06);
  overflow: hidden;
}
.journey-baseline-card__header {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebe5df;
}
.journey-baseline-card__header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2f3339;
}
.journey-baseline-card__header span {
  font-size: 11px;
  color: #9a948c;
}
.journey-baseline-card__rows {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---------- Score Row ---------- */
.journey-score-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 8px;
}

.journey-score-row__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.journey-score-row__label {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: #2f3339;
}

.journey-score-row__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 8px;
}

.journey-score-row__value {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}

.journey-score-row__bar {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: #e7e3df;
  overflow: hidden;
}
.journey-score-row__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
}

/* ---------- Color Variants ---------- */
.score-orange .journey-score-row__dot {
  background: #e37d4b;
}
.score-orange .journey-score-row__bar span {
  background: #e37d4b;
}
.score-orange .journey-score-row__value {
  color: #e37d4b;
}

.score-blue .journey-score-row__dot {
  background: #4aa3ff;
}
.score-blue .journey-score-row__bar span {
  background: #4aa3ff;
}
.score-blue .journey-score-row__value {
  color: #4aa3ff;
}

.score-green .journey-score-row__dot {
  background: #34c759;
}
.score-green .journey-score-row__bar span {
  background: #34c759;
}
.score-green .journey-score-row__value {
  color: #34c759;
}

.score-yellow .journey-score-row__dot {
  background: #f5b942;
}
.score-yellow .journey-score-row__bar span {
  background: #f5b942;
}
.score-yellow .journey-score-row__value {
  color: #f5b942;
}

/* ---------- Quick Tools ---------- */
.journey-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.journey-tool-card {
  min-height: 118px;
  padding: 12px 12px 10px;
  border: 1px solid #ddd7cf;
  border-radius: 10px;
  background: #fbfaf8;
  box-shadow: 0 4px 10px rgba(26, 31, 38, 0.03);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.journey-tool-card__icon {
  width: 28px;
  height: 28px;
  border: 1px solid #d8d2cb;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #43484f;
  background: #fcfbf9;
  flex: 0 0 auto;
}
.journey-tool-card__icon svg {
  width: 12px;
  height: 12px;
  display: block;
}
.journey-tool-card h4 {
  margin: 0;
  color: #1f2b3d;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.journey-tool-card p {
  margin: 0;
  color: #8a827a;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 400;
}
.journey-tool-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(26, 31, 38, 0.045);
  border-color: #d6cfc7;
}

/* ---------- Reflection wrapper ---------- */
.journey-card--reflection .journey-reflection-card {
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(26, 31, 38, 0.045);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .journey-shell {
    grid-template-columns: 300px minmax(0, 1fr);
  }
  .journey-sidebar__logo {
    width: 132px;
  }
  .journey-dashboard__grid {
    grid-template-columns: 1fr;
  }
  .journey-card--module,
  .journey-card--baseline,
  .journey-card--tools,
  .journey-card--streak,
  .journey-card--reflection {
    grid-column: auto;
  }
}
@media (max-width: 991px) {
  .journey-shell {
    grid-template-columns: 1fr;
  }
  .journey-header {
    padding-inline: 12px;
  }
}
@media (max-width: 767.9px) {
  .journey-header {
    min-height: 52px;
    height: auto;
    padding: 10px 12px;
    gap: 10px;
  }
  .journey-header__breadcrumb {
    gap: 6px;
  }
  .journey-header__page-title {
    display: none;
  }
  .journey-header__profile {
    padding-right: 7px;
  }
  .journey-dashboard__hero {
    padding: 16px 16px 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .journey-dashboard__hero-right {
    width: 100%;
    align-items: flex-start;
  }
  .journey-dashboard__content {
    padding: 12px;
  }
  .journey-tools-grid {
    grid-template-columns: 1fr;
  }
  .journey-score-row {
    grid-template-columns: 1fr;
  }
}
/* ---------- Weekly Streak Card ---------- */
.journey-weekly-streak-card {
  border: 1px solid #ddd7cf;
  border-radius: 10px;
  background: #fbfaf8;
  box-shadow: 0 6px 14px rgba(26, 31, 38, 0.035);
  overflow: hidden;
}
.journey-weekly-streak-card__header {
  padding: 12px 16px 10px;
  border-bottom: 1px solid #d8d2cb;
  background: #fbfaf8;
}
.journey-weekly-streak-card__title {
  margin: 0 0 2px;
  color: #2f3339;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.journey-weekly-streak-card__subtitle {
  color: #9a948c;
  font-size: 10px;
  line-height: 1.3;
}
.journey-weekly-streak-card__chart {
  height: 92px;
  padding: 12px 18px 14px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
}
.journey-weekly-streak-card__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 6px;
  min-width: 0;
}
.journey-weekly-streak-card__bar-wrap {
  height: 52px;
  display: flex;
  align-items: end;
}
.journey-weekly-streak-card__bar {
  width: 28px;
  border-radius: 2px 2px 0 0;
  background: #d46d3f;
}
.journey-weekly-streak-card__bar.is-active {
  background: #d97745;
}
.journey-weekly-streak-card__bar.is-active-strong {
  background: #d46d3f;
}
.journey-weekly-streak-card__bar.is-soft {
  background: #efb08b;
}
.journey-weekly-streak-card__bar.is-muted {
  background: #d8d8dc;
}
.journey-weekly-streak-card__day-label {
  color: #4d4f55;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

/* ---------- Quote Card ---------- */
.journey-quote-card {
  position: relative;
  border: 1px solid rgba(212, 109, 63, 0.55);
  border-radius: 8px;
  background: #fff6f1;
  overflow: hidden;
}
.journey-quote-card__accent {
  position: absolute;
  top: 10px;
  left: 18px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(212, 109, 63, 0.2) 0%, rgba(212, 109, 63, 0.08) 55%, rgba(212, 109, 63, 0) 100%);
  pointer-events: none;
}
.journey-quote-card__body {
  position: relative;
  padding: 14px 16px 12px;
}
.journey-quote-card__text {
  margin: 0 0 10px;
  color: #51463f;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
.journey-quote-card__meta {
  color: #de7b49;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================
   FINAL FIGMA TUNING — SINGLE CLEAN OVERRIDE
========================================================= */
.journey-shell {
  grid-template-columns: 300px minmax(0, 1fr);
}
.journey-shell__main {
  grid-template-rows: 54px minmax(0, 1fr);
  background: #f5f2ee;
}
.journey-shell__content {
  background: #f5f2ee;
}

.journey-header {
  height: 54px;
  min-height: 54px;
  padding: 0 16px 0 20px;
  background: #f7f4ef;
  border-bottom: 1px solid #d8d1c9;
  backdrop-filter: none;
}
.journey-header__breadcrumb {
  gap: 8px;
}
.journey-header__brand-label {
  color: #3f444a;
  font-size: 9px;
}
.journey-header__phase-badge {
  padding: 3px 7px;
  font-size: 7px;
}
.journey-header__page-title {
  color: #6f6a64;
  font-size: 10px;
}
.journey-header__profile {
  min-height: 34px;
  padding: 3px 8px 3px 5px;
  gap: 6px;
  border-radius: 5px;
  background: #fbfaf8;
  border: 1px solid rgba(36, 40, 46, 0.08);
}
.journey-header__profile:hover {
  background: #ffffff;
  border-color: rgba(36, 40, 46, 0.12);
  box-shadow: 0 4px 10px rgba(16, 24, 40, 0.04);
}
.journey-header__avatar-image, .journey-header__avatar-fallback {
  width: 24px;
  height: 24px;
}
.journey-header__profile-name {
  color: #2c3137;
  font-size: 10px;
}
.journey-header__profile-role {
  color: #7d776f;
  font-size: 8px;
}
.journey-header__chevron {
  color: #5b6068;
}

.journey-dashboard__hero {
  min-height: 122px;
  padding: 18px 28px 16px;
  gap: 20px;
}
.journey-dashboard__hero-left {
  gap: 6px;
}
.journey-dashboard__date {
  font-size: 9px;
}
.journey-dashboard__title {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 0.95;
}
.journey-dashboard__subtitle {
  max-width: 620px;
  font-size: 11px;
  line-height: 1.35;
}
.journey-dashboard__hero-right {
  min-width: 185px;
  gap: 10px;
}
.journey-dashboard__phase-chip {
  padding: 5px 10px;
  font-size: 9px;
}
.journey-dashboard__progress-block {
  width: 140px;
  gap: 6px;
}
.journey-dashboard__progress-label {
  font-size: 8px;
}
.journey-dashboard__progress-text {
  font-size: 9px;
}
.journey-dashboard__content {
  padding: 16px 22px 22px;
}
.journey-dashboard__grid {
  gap: 14px 18px;
}

.journey-card {
  gap: 8px;
}
.journey-card__section-label {
  gap: 10px;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.journey-module-card {
  border-radius: 10px;
}
.journey-module-card__top {
  min-height: 40px;
  padding: 8px 12px;
}
.journey-module-card__badge {
  padding: 4px 8px;
  font-size: 8px;
}
.journey-module-card__time {
  font-size: 10px;
}
.journey-module-card__body {
  padding: 14px 16px 14px;
}
.journey-module-card__title {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.12;
}
.journey-module-card__text {
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1.5;
}
.journey-module-card__tags {
  gap: 6px;
  margin-bottom: 10px;
}
.journey-module-card__tags span {
  padding: 4px 8px;
  font-size: 9px;
}
.journey-module-card__actions {
  gap: 8px;
}
.journey-module-card .journey-module-card__actions .app-btn {
  min-height: 30px;
  height: 30px;
  padding: 0 14px;
  font-size: 10px;
  border-radius: 4px;
}

.journey-baseline-card {
  border-radius: 12px;
}
.journey-baseline-card__header {
  padding: 16px 18px;
}
.journey-baseline-card__header h3 {
  font-size: 18px;
}
.journey-baseline-card__header span {
  font-size: 11px;
}
.journey-baseline-card__rows {
  padding: 16px 18px 18px;
  gap: 18px;
}

.journey-score-row {
  row-gap: 8px;
}

.journey-score-row__top {
  gap: 12px;
}

.journey-score-row__label,
.journey-score-row__value {
  font-size: 12px;
}

.journey-score-row__dot {
  width: 8px;
  height: 8px;
  flex-basis: 8px;
}

.journey-score-row__bar {
  height: 5px;
}

.journey-tools-grid {
  gap: 12px;
}

.journey-tool-card {
  min-height: 118px;
  padding: 12px 12px 10px;
  border-radius: 10px;
  gap: 8px;
}
.journey-tool-card__icon {
  width: 28px;
  height: 28px;
}
.journey-tool-card__icon svg {
  width: 12px;
  height: 12px;
}
.journey-tool-card h4 {
  font-size: 11px;
}
.journey-tool-card p {
  font-size: 10px;
  line-height: 1.45;
}

.journey-weekly-streak-card {
  border-radius: 10px;
}
.journey-weekly-streak-card__header {
  padding: 12px 16px 10px;
}
.journey-weekly-streak-card__title {
  font-size: 13px;
}
.journey-weekly-streak-card__subtitle {
  font-size: 10px;
}
.journey-weekly-streak-card__chart {
  height: 92px;
  padding: 12px 18px 14px;
  gap: 10px;
}
.journey-weekly-streak-card__bar-wrap {
  height: 52px;
}
.journey-weekly-streak-card__bar {
  width: 28px;
}
.journey-weekly-streak-card__day-label {
  font-size: 9px;
}

.journey-quote-card {
  border-radius: 8px;
}
.journey-quote-card__body {
  padding: 14px 16px 12px;
}
.journey-quote-card__text {
  font-size: 12px;
  line-height: 1.5;
}
.journey-quote-card__meta {
  font-size: 9px;
}

/* =========================================================
   JOURNEY SIDEBAR NAV 

========================================================= */
.journey-sidebar__body, .journey-sidebar__section {
  width: 100% !important;
  min-width: 0 !important;
  align-items: stretch !important;
}

/* actual nav element */
nav.journey-sidebar__nav,
.journey-sidebar__nav {
  width: 100% !important;
  min-width: 0 !important;
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* if buttons are wrapped by list markup anywhere */
nav.journey-sidebar__nav ul,
nav.journey-sidebar__nav ol,
.journey-sidebar__nav ul,
.journey-sidebar__nav ol {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

nav.journey-sidebar__nav li,
.journey-sidebar__nav li {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* nav items */
nav.journey-sidebar__nav > .journey-sidebar__nav-item,
.journey-sidebar__nav > .journey-sidebar__nav-item,
nav.journey-sidebar__nav li > .journey-sidebar__nav-item,
.journey-sidebar__nav li > .journey-sidebar__nav-item {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 30px !important;
  padding: 0 8px !important;
  gap: 8px !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

/* keep title and divider aligned to same left edge */
.journey-sidebar__section-title {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.journey-sidebar__divider {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* =========================================================
   DASHBOARD TOP CARDS — FIGMA FIX ONLY
   Controls only TODAY'S MODULE + YOUR BASELINE layout
========================================================= */
.journey-dashboard__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 549px) minmax(0, 549px) !important;
  column-gap: 24px !important;
  row-gap: 24px !important;
  align-items: start !important;
  justify-content: start !important;
}

.journey-card--module,
.journey-card--tools,
.journey-card--streak {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.journey-card--baseline,
.journey-card--reflection,
.journey-card--quote {
  grid-column: 2 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.journey-card--module > .journey-module-card,
.journey-card--baseline > .journey-baseline-card {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

/* =========================================================
   MOVE CARD — FIGMA COMPACT
========================================================= */
.journey-module-card--move {
  min-height: 266px !important;
  border-radius: 6px !important;
  border: 1px solid #d9d9d9 !important;
  background: #fcfcfc !important;
  overflow: hidden !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1) !important;
}

.journey-module-card--move .journey-module-card__top {
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 12px !important;
  background: #12171d !important;
}

.journey-module-card--move .journey-module-card__badge {
  height: 20px !important;
  padding: 0 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  border: 1px solid #d99b18 !important;
  background: rgba(217, 155, 24, 0.08) !important;
  color: #d99b18 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.journey-module-card--move .journey-module-card__time {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #b5b8bd !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

.journey-module-card--move .journey-module-card__body {
  padding: 17px 12px 14px !important;
}

.journey-module-card--move .journey-module-card__title {
  margin: 0 0 12px !important;
  color: #2b2d31 !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.journey-module-card--move .journey-module-card__title span {
  color: #df7444 !important;
  font-weight: 800 !important;
}

.journey-module-card--move .journey-module-card__text {
  max-width: 470px !important;
  margin: 0 0 16px !important;
  color: #55575d !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}

.journey-module-card--move .journey-module-card__text strong {
  font-weight: 800 !important;
}

.journey-module-card--move .journey-module-card__tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 12px !important;
  margin: 0 0 18px !important;
}

.journey-module-card--move .journey-module-card__tag {
  height: 22px !important;
  padding: 0 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  border: 1px solid #cfd1d4 !important;
  background: #f8f8f8 !important;
  color: #70737a !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.journey-module-card--move .journey-module-card__tag::before {
  content: "•" !important;
  margin-right: 4px !important;
}

.journey-module-card--move .journey-module-card__tag--active {
  border-color: #edae2d !important;
  background: #fff8eb !important;
  color: #eba126 !important;
}

.journey-module-card--move .journey-module-card__actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 0 !important;
}

.journey-module-card--move .journey-module-card__button {
  height: 36px !important;
  min-height: 36px !important;
  border-radius: 3px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;
  box-shadow: none !important;
}

.journey-module-card--move .journey-module-card__button--primary {
  min-width: 178px !important;
  padding: 0 16px !important;
  border: 1px solid #0e1720 !important;
  background: #0e1720 !important;
  color: #ffffff !important;
}

.journey-module-card--move .journey-module-card__button--secondary {
  min-width: 113px !important;
  padding: 0 16px !important;
  border: 1px solid #d2d5da !important;
  background: #ffffff !important;
  color: #c2c3c7 !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199.98px) {
  .journey-dashboard__grid {
    grid-template-columns: 1fr !important;
  }
  .journey-card--module,
  .journey-card--tools,
  .journey-card--streak,
  .journey-card--baseline,
  .journey-card--reflection,
  .journey-card--quote {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* =========================================================
   BASELINE TOP CARD — MATCH MOVE CARD HEIGHT ONLY
   Safe patch. No grid changes.
========================================================= */
.journey-card--baseline > .journey-baseline-card {
  height: 266px !important;
  min-height: 266px !important;
}

.journey-baseline-card {
  width: 100% !important;
  border-radius: 6px !important;
  border: 1px solid #d9d9d9 !important;
  background: #fcfcfc !important;
  overflow: hidden !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08) !important;
}

.journey-baseline-card__header {
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid #dedede !important;
}

.journey-baseline-card__header h3 {
  margin: 0 !important;
  color: #2f3339 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.journey-baseline-card__header span {
  color: #8a8a8a !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}

.journey-baseline-card__rows {
  height: 214px !important;
  padding: 18px 16px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 0 !important;
}

.journey-score-row {
  row-gap: 6px !important;
}

.journey-score-row__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.journey-score-row__label,
.journey-score-row__value {
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.journey-score-row__dot {
  width: 6px !important;
  height: 6px !important;
  flex: 0 0 6px !important;
}

.journey-score-row__bar {
  height: 5px !important;
}

/* =========================================================
   DASHBOARD TOP CARDS — FINAL FIGMA MATCH
   Only controls Today Module + Baseline top cards
========================================================= */
.journey-dashboard__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 549px) minmax(0, 549px) !important;
  column-gap: 24px !important;
  row-gap: 24px !important;
  align-items: start !important;
  justify-content: start !important;
}

.journey-card--module,
.journey-card--tools,
.journey-card--streak {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.journey-card--baseline,
.journey-card--reflection,
.journey-card--quote {
  grid-column: 2 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.journey-card--module > .journey-module-card,
.journey-card--baseline > .journey-baseline-card {
  width: 100% !important;
  max-width: 100% !important;
  height: 266px !important;
  min-height: 266px !important;
}

/* =========================================================
   MOVE CARD
========================================================= */
.journey-module-card--move {
  border-radius: 6px !important;
  border: 1px solid #d9d9d9 !important;
  background: #fcfcfc !important;
  overflow: hidden !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1) !important;
}

.journey-module-card--move .journey-module-card__top {
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 12px !important;
  background: #12171d !important;
}

.journey-module-card--move .journey-module-card__badge {
  height: 20px !important;
  padding: 0 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  border: 1px solid #d99b18 !important;
  background: rgba(217, 155, 24, 0.08) !important;
  color: #d99b18 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.journey-module-card--move .journey-module-card__time {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #b5b8bd !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

.journey-module-card--move .journey-module-card__body {
  height: 214px !important;
  padding: 17px 12px 14px !important;
  display: flex !important;
  flex-direction: column !important;
}

.journey-module-card--move .journey-module-card__title {
  margin: 0 0 12px !important;
  color: #2b2d31 !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.journey-module-card--move .journey-module-card__title span {
  color: #df7444 !important;
  font-weight: 800 !important;
}

.journey-module-card--move .journey-module-card__text {
  max-width: 470px !important;
  margin: 0 0 16px !important;
  color: #55575d !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}

.journey-module-card--move .journey-module-card__text strong {
  font-weight: 800 !important;
}

.journey-module-card--move .journey-module-card__tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 12px !important;
  margin: 0 0 18px !important;
}

.journey-module-card--move .journey-module-card__tag {
  height: 22px !important;
  padding: 0 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  border: 1px solid #cfd1d4 !important;
  background: #f8f8f8 !important;
  color: #70737a !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.journey-module-card--move .journey-module-card__tag::before {
  content: "•" !important;
  margin-right: 4px !important;
}

.journey-module-card--move .journey-module-card__tag--active {
  border-color: #edae2d !important;
  background: #fff8eb !important;
  color: #eba126 !important;
}

.journey-module-card--move .journey-module-card__actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: auto !important;
}

.journey-module-card--move .journey-module-card__button {
  height: 36px !important;
  min-height: 36px !important;
  border-radius: 3px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;
  box-shadow: none !important;
}

.journey-module-card--move .journey-module-card__button--primary {
  min-width: 178px !important;
  padding: 0 16px !important;
  border: 1px solid #0e1720 !important;
  background: #0e1720 !important;
  color: #ffffff !important;
}

.journey-module-card--move .journey-module-card__button--secondary {
  min-width: 113px !important;
  padding: 0 16px !important;
  border: 1px solid #d2d5da !important;
  background: #ffffff !important;
  color: #c2c3c7 !important;
}

/* =========================================================
   BASELINE CARD — SAME HEIGHT AS MOVE
========================================================= */
.journey-baseline-card {
  border-radius: 6px !important;
  border: 1px solid #d9d9d9 !important;
  background: #fcfcfc !important;
  overflow: hidden !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08) !important;
}

.journey-baseline-card__header {
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid #dedede !important;
}

.journey-baseline-card__header h3 {
  margin: 0 !important;
  color: #2f3339 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.journey-baseline-card__header span {
  color: #8a8a8a !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}

.journey-baseline-card__rows {
  height: 214px !important;
  padding: 18px 16px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 0 !important;
}

.journey-score-row {
  row-gap: 6px !important;
}

.journey-score-row__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.journey-score-row__label,
.journey-score-row__value {
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.journey-score-row__dot {
  width: 6px !important;
  height: 6px !important;
  flex: 0 0 6px !important;
}

.journey-score-row__bar {
  height: 5px !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199.98px) {
  .journey-dashboard__grid {
    grid-template-columns: 1fr !important;
  }
  .journey-card--module,
  .journey-card--tools,
  .journey-card--streak,
  .journey-card--baseline,
  .journey-card--reflection,
  .journey-card--quote {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* =========================================================
   MOVE CARD BUTTON VISIBILITY FIX
   Keep Figma look, but do not clip Continue Module button
========================================================= */
.journey-card--module > .journey-module-card {
  height: auto !important;
  min-height: 266px !important;
}

.journey-module-card--move {
  height: auto !important;
  min-height: 266px !important;
  overflow: visible !important;
}

.journey-module-card--move .journey-module-card__body {
  height: auto !important;
  min-height: 214px !important;
  padding: 17px 12px 14px !important;
  display: flex !important;
  flex-direction: column !important;
}

.journey-module-card--move .journey-module-card__actions {
  margin-top: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.journey-module-card--move .journey-module-card__button {
  flex: 0 0 auto !important;
}

/* =========================================================
   TOP DASHBOARD CARDS — SAME HEIGHT FIX
   MOVE card controls height, Baseline stretches to match
========================================================= */
.journey-dashboard__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 549px) minmax(0, 549px) !important;
  column-gap: 24px !important;
  row-gap: 24px !important;
  align-items: stretch !important;
  justify-content: start !important;
}

.journey-card--module,
.journey-card--baseline {
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
}

.journey-card--module > .journey-module-card,
.journey-card--baseline > .journey-baseline-card {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 266px !important;
}

/* MOVE should grow naturally so button never hides */
.journey-module-card--move {
  height: auto !important;
  min-height: 266px !important;
  overflow: hidden !important;
}

.journey-module-card--move .journey-module-card__body {
  height: auto !important;
  min-height: 214px !important;
  padding: 17px 12px 14px !important;
  display: flex !important;
  flex-direction: column !important;
}

.journey-module-card--move .journey-module-card__actions {
  margin-top: 18px !important;
}

/* Baseline stretches to same height as MOVE */
.journey-baseline-card {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

.journey-baseline-card__header {
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.journey-baseline-card__rows {
  flex: 1 1 auto !important;
  height: auto !important;
  padding: 18px 16px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 0 !important;
}

/* =========================================================
   BASELINE INNER CONTENT — MATCH TALL CARD
   Only adjusts spacing/text inside baseline card
========================================================= */
.journey-baseline-card__rows {
  flex: 1 1 auto !important;
  height: auto !important;
  padding: 28px 24px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 0 !important;
}

.journey-score-row {
  row-gap: 10px !important;
}

.journey-score-row__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
}

.journey-score-row__label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #202631 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
}

.journey-score-row__value {
  color: inherit !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.journey-score-row__dot {
  width: 8px !important;
  height: 8px !important;
  flex: 0 0 8px !important;
}

.journey-score-row__bar {
  height: 6px !important;
  border-radius: 999px !important;
  background: #e8e3de !important;
}

.journey-score-row__bar span {
  height: 100% !important;
  border-radius: inherit !important;
}

body {
  font-family: "Motiva Sans", sans-serif;
  background: #f8f9fa;
  color: #212529;
  overflow-x: hidden;
  letter-spacing: 0.07em;
}

label {
  font-size: 0.875em;
  color: #4b5563 !important;
  font-weight: bolder !important;
}

.bg-transparent {
  background: transparent !important;
}

input[type=checkbox] {
  width: 1rem;
  height: 1rem;
}

.box-shadow-left {
  --shadow-color: transparent;
  box-shadow: -5px 0 0 0 var(--shadow-color);
  margin-left: 5px;
}

.px_1 {
  padding-left: 1px;
  padding-right: 1px;
}

.px_2 {
  padding-left: 2px;
  padding-right: 2px;
}

.tab-content .active {
  background: transparent;
}

.active {
  background: var(--bs-white);
}

.fs-7 {
  font-size: 0.75em !important;
}

.fs-8 {
  font-size: 0.5rem !important;
}

.w-15 {
  width: 15% !important;
}

.bg-opacity-5 {
  --bs-bg-opacity: 0.05;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1 !important ;
}

.bg-opacity-15 {
  --bs-bg-opacity: 0.15;
}

.bg_secondary {
  background-color: var(--secondary);
  color: #fff !important;
}

.bg_red-10 {
  background-color: var(--red-10);
}

.bg_primary {
  background-color: var(--primary);
}

.primary_bg {
  background-color: #AD4A23;
}

.bg_gray-90 {
  background-color: #eeeded;
}

.bg-green-10 {
  background-color: #ecfeff;
}

.bg_purple {
  background-color: #faf5ff;
}

.txt-green-90 {
  color: #0891b2;
}

.txt-green-80 {
  color: #164e63;
}

.text_primary {
  color: var(--primary) !important;
}

.txt_primary {
  color: #AD4A23;
}

.txt_foreground {
  color: var(--foreground);
}

.txt_orange {
  color: var(--bs-orange);
}

.txt_amber {
  color: var(--amber);
}

.txt_amber-80 {
  color: var(--amber-800);
}

.txt_purple-99 {
  color: var(--purple-99);
}

.txt_purple-90 {
  color: var(--purple-90);
}

.txt_purple-80 {
  color: var(--purple-80);
}

.txt_blue-90 {
  color: var(--blue-90);
}

.txt_blue-80 {
  color: var(--blue-80);
}

.txt_red-90 {
  color: var(--red-90);
}

.txt_bs-pink {
  color: var(--bs-pink);
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
}

#navbar {
  display: flex;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#navbar .navbar {
  display: flex;
}

main {
  flex: 1;
}

.green-btn {
  color: #FFF;
  background: #0891b2;
}
.green-btn:hover {
  background: rgb(5.8064516129, 105.2419354839, 129.1935483871);
  color: #FFF;
}
.green-btn:focus {
  background: rgb(5.8064516129, 105.2419354839, 129.1935483871);
}
.green-btn .closed-icon {
  background: #fff;
}

.accent-btn {
  color: #374151;
}
.accent-btn:hover {
  background-color: var(--chart-1);
  color: #fff;
}

.primary-small-btn {
  color: #FFF;
  background-color: #AD4A23;
  box-shadow: 0 0 0 1px #ced4da;
  padding: 0.2rem 0.2rem 0.2rem 0.5rem !important;
}
.primary-small-btn:hover {
  background: rgb(130.5817307692, 55.8557692308, 26.4182692308);
  color: #FFF;
}
.primary-small-btn:focus {
  background: rgb(130.5817307692, 55.8557692308, 26.4182692308);
}
.primary-small-btn .closed {
  color: #6c757d;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 2px 0px #000;
  opacity: 0.8;
  border: none !important;
}

.small-btn {
  font-size: 0.75rem;
  border-radius: 1rem;
  border-style: solid;
  border-width: 1px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}
.small-btn .closed-icon {
  border-radius: 50%;
}

.circle-btn {
  font-size: 0.6rem;
  border-style: solid;
  border-width: 1px;
  white-space: nowrap;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.btn:focus {
  box-shadow: 0 0 0 0 !important;
}

.primary {
  color: #AD4A23;
}
.primary:hover {
  color: rgb(130.5817307692, 55.8557692308, 26.4182692308);
}

.primary-btn {
  background-color: #AD4A23;
  border-color: #AD4A23;
  color: #fff;
}
.primary-btn:hover {
  color: #fff;
  background-color: rgb(130.5817307692, 55.8557692308, 26.4182692308);
  border-color: rgb(130.5817307692, 55.8557692308, 26.4182692308);
}
.primary-btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(173, 74, 35, 0.5) !important;
}

.login-container {
  width: max-content;
  margin: auto;
}

.input-icon {
  position: relative;
}
.input-icon i {
  position: absolute;
  color: #AD4A23;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.input-icon input, .input-icon select {
  padding-left: 35px;
}

.form-control, .form-select, .form-check-input {
  font-size: 0.875em;
}
.form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0 rgba(173, 74, 35, 0.25) !important;
}
.form-control:hover, .form-select:hover, .form-check-input:hover {
  box-shadow: 0 0 0 0 rgba(173, 74, 35, 0.25) !important;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #AD4A23;
  font-weight: 500;
}
.divider::before {
  content: "";
  flex: 1;
  border-bottom: 2px solid #34495e;
}
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #34495e;
}
.divider:not(:empty)::before {
  margin-right: 0.75em;
}
.divider:not(:empty)::after {
  margin-left: 0.75em;
}

.c_flex {
  display: flex;
  justify-content: space-between;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0.3rem 0.5rem !important;
}

.navbar-light .navbar-toggler {
  box-shadow: 0 0 0 0;
}

article {
  padding-top: 1rem !important;
  padding-bottom: 3rem !important;
}

nav, article {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

@media (max-width: 991px) {
  .c_flex {
    display: block;
  }
  .sidebar {
    width: 100%;
    min-height: auto;
  }
  nav, article {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
}
.text-small {
  font-size: 0.875rem;
}

.dropdown .dropdown-toggle {
  color: #AD4A23;
}
.dropdown .dropdown-toggle:hover {
  color: rgb(130.5817307692, 55.8557692308, 26.4182692308);
}
.dropdown .dropdown-divider {
  margin: 0.2rem 0;
}
.dropdown .dropdown-menu {
  min-width: auto;
  padding: 0;
  top: auto;
}
.dropdown .dropdown-menu .dropdown-item {
  color: #AD4A23;
  padding: 0.2rem 0.5rem;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: rgb(238.5096153846, 191.8653846154, 173.4903846154);
}

.check_circle {
  list-style: none;
  padding-left: 0;
}
.check_circle li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.check_circle li::before {
  content: "\f270";
  font-family: "bootstrap-icons" !important;
  font-size: 1.1rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.close_circle {
  list-style: none;
  padding-left: 0;
}
.close_circle li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.close_circle li::before {
  content: "\f623";
  font-family: "bootstrap-icons" !important;
  font-size: 1.1rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.checklist {
  list-style: none;
  padding-left: 0;
}
.checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: green;
}

.closelist {
  list-style: none;
  padding-left: 0;
}
.closelist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.closelist li::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 0;
  color: red;
}

.card_list {
  list-style: none;
  padding-left: 0;
}
.card_list li {
  padding: 10px;
  margin-bottom: 8px;
  line-height: 20px;
  border-radius: 5px;
}

.order-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.order-listli {
  line-height: 20px;
}

.chips-wrapper {
  position: relative;
}

.chips-container {
  min-height: 2.25rem;
  cursor: text;
  background: #fff;
}
.chips-container:focus-within {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  border-color: #86b7fe;
}
.chips-container .chips-input {
  min-width: 4ch;
  outline: none;
}
.chips-container .chips-input:focus {
  box-shadow: none;
}

.chips-dropdown {
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

.custom-btn {
  background: linear-gradient(#f7f8fa, #e7e9ec);
  border: 1px solid #8d9096;
  box-shadow: rgba(255, 255, 255, 0.6) 0 1px 0 inset;
  text-align: left;
  transition: all 0.15s ease;
}
.custom-btn:hover {
  background: linear-gradient(#e7e9ec, #d7d9dc);
}

.pain-slider {
  width: 100%;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  /* slider value variables */
  --range: calc(var(--max) - var(--min));
  --ratio: calc((var(--value) - var(--min)) / var(--range));
  --percent: calc(var(--ratio) * 100%);
  /* Track Line */
}
.pain-slider::-webkit-slider-runnable-track {
  height: 0.5rem;
  border-radius: 2rem;
  background: linear-gradient(to right, #1f3f63 0%, #1f3f63 var(--percent), #e39026 var(--percent), #e39026 100%);
}
.pain-slider::-moz-range-track {
  height: 0.5rem;
  border-radius: 2rem;
  background: linear-gradient(to right, #1f3f63 0%, #1f3f63 var(--percent), #e39026 var(--percent), #e39026 100%);
}
.pain-slider {
  /* Thumb Circle */
}
.pain-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #1f3f63;
  margin-top: -0.4rem;
  cursor: pointer;
}
.pain-slider::-moz-range-thumb {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #1f3f63;
  cursor: pointer;
}
.pain-slider:focus {
  outline: none;
}

.pointer-none {
  pointer-events: none !important;
}

.pointer-auto {
  pointer-events: auto !important;
}

.pointer-all {
  pointer-events: all !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-text {
  cursor: text !important;
}

.cursor-move {
  cursor: move !important;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

.cursor-grab {
  cursor: grab !important;
}

.cursor-grabbing {
  cursor: grabbing !important;
}

.cursor-help {
  cursor: help !important;
}

.bg-gray {
  --bs-bg-opacity: 1;
  --bs-gray-rgb: 246, 249, 252;
  background-color: rgba(var(--bs-gray-rgb), var(--bs-bg-opacity)) !important;
}

.text-gray {
  color: #5b5f63 !important;
}

.border-gray {
  border: 1px solid #e7edf3 !important;
}

.phase-gray {
  background-color: #f6f9fc;
  border: 1px solid #e7edf3;
}
.phase-gray:hover {
  color: #5b5f63;
}

.bg-green {
  --bs-bg-opacity: 1;
  --bs-green-rgb: 240, 255, 244;
  background-color: rgba(var(--bs-green-rgb), var(--bs-bg-opacity)) !important;
}

.text-green {
  color: #0f7a4f !important;
}

.border-green {
  border: 1px solid #f0fff4 !important;
}

.phase-green {
  background-color: #f0fff4;
  border: 1px solid #f0fff4;
}
.phase-green:hover {
  color: #0f7a4f;
}

.bg-red {
  --bs-bg-opacity: 1;
  --bs-red-rgb: 255, 240, 244;
  background-color: rgba(var(--bs-red-rgb), var(--bs-bg-opacity)) !important;
}

.text-red {
  color: #b10049 !important;
}

.border-red {
  border: 1px solid #fff0f4 !important;
}

.phase-red {
  background-color: #fff0f4;
  border: 1px solid #fff0f4;
}
.phase-red:hover {
  color: #b10049;
}

.bg-blue {
  --bs-bg-opacity: 1;
  --bs-blue-rgb: 240, 247, 255;
  background-color: rgba(var(--bs-blue-rgb), var(--bs-bg-opacity)) !important;
}

.text-blue {
  color: #1b56d9 !important;
}

.border-blue {
  border: 1px solid #f0f7ff !important;
}

.phase-blue {
  background-color: #f0f7ff;
  border: 1px solid #f0f7ff;
}
.phase-blue:hover {
  color: #1b56d9;
}

.bg-yellow {
  --bs-bg-opacity: 1;
  --bs-yellow-rgb: 255, 247, 230;
  background-color: rgba(var(--bs-yellow-rgb), var(--bs-bg-opacity)) !important;
}

.text-yellow {
  color: #a86a00 !important;
}

.border-yellow {
  border: 1px solid #fff7e6 !important;
}

.phase-yellow {
  background-color: #fff7e6;
  border: 1px solid #fff7e6;
}
.phase-yellow:hover {
  color: #a86a00;
}

.bg-purple {
  --bs-bg-opacity: 1;
  --bs-purple-rgb: 243, 232, 255;
  background-color: rgba(var(--bs-purple-rgb), var(--bs-bg-opacity)) !important;
}

.text-purple {
  color: #6b21a8 !important;
}

.border-purple {
  border: 1px solid #f3e8ff !important;
}

.phase-purple {
  background-color: #f3e8ff;
  border: 1px solid #f3e8ff;
}
.phase-purple:hover {
  color: #6b21a8;
}

.bg-skyblue {
  --bs-bg-opacity: 1;
  --bs-skyblue-rgb: 14, 165, 233;
  background-color: rgba(var(--bs-skyblue-rgb), var(--bs-bg-opacity)) !important;
}

.text-skyblue {
  color: #FFF !important;
}

.border-skyblue {
  border: 1px solid #0ea5e9 !important;
}

.phase-skyblue {
  background-color: #0ea5e9;
  border: 1px solid #0ea5e9;
}
.phase-skyblue:hover {
  color: #FFF;
}

.bg-indigo {
  --bs-bg-opacity: 1;
  --bs-indigo-rgb: 99, 102, 241;
  background-color: rgba(var(--bs-indigo-rgb), var(--bs-bg-opacity)) !important;
}

.text-indigo {
  color: #FFF !important;
}

.border-indigo {
  border: 1px solid #6366f1 !important;
}

.phase-indigo {
  background-color: #6366f1;
  border: 1px solid #6366f1;
}
.phase-indigo:hover {
  color: #FFF;
}

.bg-violet {
  --bs-bg-opacity: 1;
  --bs-violet-rgb: 168, 85, 247;
  background-color: rgba(var(--bs-violet-rgb), var(--bs-bg-opacity)) !important;
}

.text-violet {
  color: #FFF !important;
}

.border-violet {
  border: 1px solid #a855f7 !important;
}

.phase-violet {
  background-color: #a855f7;
  border: 1px solid #a855f7;
}
.phase-violet:hover {
  color: #FFF;
}

.bg-pink {
  --bs-bg-opacity: 1;
  --bs-pink-rgb: 236, 72, 153;
  background-color: rgba(var(--bs-pink-rgb), var(--bs-bg-opacity)) !important;
}

.text-pink {
  color: #FFF !important;
}

.border-pink {
  border: 1px solid #ec4899 !important;
}

.phase-pink {
  background-color: #ec4899;
  border: 1px solid #ec4899;
}
.phase-pink:hover {
  color: #FFF;
}

.bg-crimson {
  --bs-bg-opacity: 1;
  --bs-crimson-rgb: 244, 63, 94;
  background-color: rgba(var(--bs-crimson-rgb), var(--bs-bg-opacity)) !important;
}

.text-crimson {
  color: #FFF !important;
}

.border-crimson {
  border: 1px solid #f43f5e !important;
}

.phase-crimson {
  background-color: #f43f5e;
  border: 1px solid #f43f5e;
}
.phase-crimson:hover {
  color: #FFF;
}

.bg-uncover {
  --bs-bg-opacity: 1;
  --bs-uncover-rgb: 16, 185, 129;
  background-color: rgba(var(--bs-uncover-rgb), var(--bs-bg-opacity)) !important;
}

.text-uncover {
  color: #FFF !important;
}

.border-uncover {
  border: 1px solid #10b981 !important;
}

.phase-uncover {
  background-color: #10b981;
  border: 1px solid #10b981;
}
.phase-uncover:hover {
  color: #FFF;
}

.bg-feel {
  --bs-bg-opacity: 1;
  --bs-feel-rgb: 20, 184, 166;
  background-color: rgba(var(--bs-feel-rgb), var(--bs-bg-opacity)) !important;
}

.text-feel {
  color: #FFF !important;
}

.border-feel {
  border: 1px solid #14b8a6 !important;
}

.phase-feel {
  background-color: #14b8a6;
  border: 1px solid #14b8a6;
}
.phase-feel:hover {
  color: #FFF;
}

.bg-claim {
  --bs-bg-opacity: 1;
  --bs-claim-rgb: 6, 182, 212;
  background-color: rgba(var(--bs-claim-rgb), var(--bs-bg-opacity)) !important;
}

.text-claim {
  color: #FFF !important;
}

.border-claim {
  border: 1px solid #06b6d4 !important;
}

.phase-claim {
  background-color: #06b6d4;
  border: 1px solid #06b6d4;
}
.phase-claim:hover {
  color: #FFF;
}

.bg-integrate {
  --bs-bg-opacity: 1;
  --bs-integrate-rgb: 14, 165, 233;
  background-color: rgba(var(--bs-integrate-rgb), var(--bs-bg-opacity)) !important;
}

.text-integrate {
  color: #FFF !important;
}

.border-integrate {
  border: 1px solid #0ea5e9 !important;
}

.phase-integrate {
  background-color: #0ea5e9;
  border: 1px solid #0ea5e9;
}
.phase-integrate:hover {
  color: #FFF;
}

.bg-dark_orange {
  --bs-bg-opacity: 1;
  --bs-dark_orange-rgb: 217, 119, 6;
  background-color: rgba(var(--bs-dark_orange-rgb), var(--bs-bg-opacity)) !important;
}

.text-dark_orange {
  color: #FFF !important;
}

.border-dark_orange {
  border: 1px solid #d97706 !important;
}

.phase-dark_orange {
  background-color: #d97706;
  border: 1px solid #d97706;
}
.phase-dark_orange:hover {
  color: #FFF;
}

.energy_circule {
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  border: 0;
}

.btn-circule {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  padding: 0;
  border: 0;
}

@media (max-width: 768px) {
  .circle {
    max-width: 100px;
    margin: auto;
  }
}
.btn-aspect {
  aspect-ratio: 1/1; /* 🔥 keeps width = height */
}

.circle {
  aspect-ratio: 1/1; /* 🔥 keeps width = height */
  border-radius: 50%;
}

.flip-x {
  display: inline-block;
  transform: scaleX(-1);
}

.flip-y {
  display: inline-block;
  transform: scaleY(-1);
}

.border-dashed {
  border-style: dashed;
}

.rounded-4 {
  border-radius: 0.8rem !important;
}

/**************************************** Cover Page ****************************************/
.cover-wrapper {
  position: relative;
  height: 100vh;
}

.cover-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding-top: 40vh;
}

.vh_remaining {
  height: calc(100vh - 125px);
}

.guided-wrapper {
  width: 100%;
}

.guide-style-section {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5));
  box-shadow: var(--shadow-2);
  border: 1px solid var(--stroke-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.guide-style-section::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(820px 260px at 12% 0%, rgba(245, 158, 11, 0.18), transparent 62%), radial-gradient(780px 260px at 92% 34%, rgba(99, 102, 241, 0.16), transparent 62%);
  opacity: 0.95;
  pointer-events: none;
}

.guide-style-section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  opacity: 0.95;
}

.guide-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.guide-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: radial-gradient(12px 12px at 30% 30%, rgba(255, 255, 255, 0.84), transparent 60%), linear-gradient(135deg, rgba(245, 158, 11, 0.34), rgba(99, 102, 241, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.18);
}

.guide-title {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: var(--text-900);
}

.guide-description {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  max-width: 980px;
  font-size: 0.96rem;
  line-height: 1.78;
  color: #516072;
}

.chat-card {
  position: relative;
  margin-top: 14px;
  padding: 16px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.36));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 46px 125px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.chat-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: radial-gradient(1000px 320px at 12% 0%, rgba(245, 158, 11, 0.12), transparent 60%), radial-gradient(1000px 360px at 92% 22%, rgba(99, 102, 241, 0.12), transparent 62%);
  opacity: 0.85;
}

.chat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  opacity: 0.95;
}

:root {
  --panel-bg: #fcfcfc;
  --page-bg: #000000;
  --accent: #d46d3f;
  --accent-hover: #c76433;
  --navy: #0f1720;
  --navy-deep: #04152f;
  --text-dark: #151515;
  --text-body: #4e4e4e;
  --text-muted: #77787d;
  --text-soft: #666666;
  --line: #d9d9d9;
  --line-soft: #c8c8cb;
  --input-autofill-border: #5d5c62;
  --white: #ffffff;
  --radius-sm: 4px;
  --transition-fast: 0.18s ease;
  --transition-med: 300ms ease-out;
}

/* =========================================================
   PAGE RESET
========================================================= */
html,
body,
#app {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: var(--page-bg);
  overflow-x: hidden;
}

body {
  overflow-y: auto;
}

article {
  margin: 0 !important;
  padding: 0 !important;
}

/* =========================================================
   SHARED AUTH LAYOUT
   Keep aliases so old login page does not break
========================================================= */
.auth-stage,
.login-stage,
.register-stage {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--page-bg);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.auth-shell,
.login-shell,
.register-shell {
  width: min(100vw, 1470px);
  height: 100vh;
  display: grid;
  grid-template-columns: 735px 735px;
  overflow: hidden;
  background: var(--page-bg);
  box-shadow: none;
}

.auth-hero,
.login-hero,
.register-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 28px 22px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(ellipse 52% 42% at 69% 18%, rgba(212, 109, 63, 0.22) 0%, rgba(212, 109, 63, 0.14) 26%, rgba(212, 109, 63, 0.07) 46%, rgba(212, 109, 63, 0.015) 60%, rgba(212, 109, 63, 0) 74%), radial-gradient(ellipse 34% 38% at 14% 88%, rgba(212, 109, 63, 0.16) 0%, rgba(212, 109, 63, 0.09) 30%, rgba(212, 109, 63, 0.04) 52%, rgba(212, 109, 63, 0) 74%), radial-gradient(ellipse 20% 38% at 7% 24%, rgba(24, 44, 69, 0.12) 0%, rgba(24, 44, 69, 0.05) 38%, rgba(24, 44, 69, 0) 72%), radial-gradient(ellipse 18% 28% at 96% 92%, rgba(18, 40, 63, 0.09) 0%, rgba(18, 40, 63, 0.04) 42%, rgba(18, 40, 63, 0) 74%), linear-gradient(180deg, #141416 0%, #111214 54%, #0a0c0f 100%);
}

.auth-hero::before,
.login-hero::before,
.register-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: none;
}

.auth-hero__overlay,
.login-hero__overlay,
.register-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: none;
}

.auth-hero__top,
.login-hero__top,
.register-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.auth-brand,
.login-brand,
.register-brand {
  display: block;
}

.auth-brand__mark,
.login-brand__mark,
.register-brand__mark {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.auth-hero__top,
.login-hero__top,
.register-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 6px;
}

.auth-hero__body,
.login-hero__body,
.register-hero__body {
  width: 100%;
  max-width: 560px;
  margin: auto 0 0;
  padding: 18px 0 0 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  box-sizing: border-box;
}

.auth-kicker,
.login-kicker,
.register-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding-left: 38px;
}

.auth-kicker::before,
.login-kicker::before,
.register-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--accent);
  transform: translateY(-50%);
  opacity: 0.92;
}

.auth-title,
.login-title,
.register-title {
  margin: 0;
  max-width: 510px;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(36px, 3.05vw, 48px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.auth-title span,
.login-title span,
.register-title span {
  color: var(--accent);
  font-weight: 350;
}

.auth-desc,
.login-desc,
.register-desc {
  margin: 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 350;
  text-wrap: pretty;
}

.auth-hero__dot,
.login-hero__dot,
.register-hero__dot {
  color: var(--accent);
}

.auth-panel,
.login-panel,
.register-panel {
  position: relative;
  background: var(--panel-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 72px;
  overflow: hidden;
  box-sizing: border-box;
}

.auth-card,
.login-card,
.register-card {
  width: 100%;
  max-width: 520px;
  margin: 4px auto 0;
  position: relative;
  z-index: 1;
  background: transparent;
}

.auth-card__title,
.login-card__title,
.register-card__title {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-size: clamp(34px, 2.8vw, 44px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.auth-card__subtitle,
.login-card__subtitle,
.register-card__subtitle {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.35;
  color: #566270;
  position: relative;
  padding-bottom: 10px;
}

.auth-card__subtitle::after,
.login-card__subtitle::after,
.register-card__subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.auth-form,
.login-form,
.register-form {
  margin: 0;
}

.auth-field,
.login-field,
.register-field {
  margin-bottom: 22px;
}

.register-form .auth-field:last-of-type {
  margin-bottom: 18px;
}

.auth-form .form-input__field:-webkit-autofill,
.auth-form .form-input__field:-webkit-autofill:hover,
.auth-form .form-input__field:-webkit-autofill:focus,
.auth-form .form-input__field:-webkit-autofill:active,
.login-form .form-input__field:-webkit-autofill,
.login-form .form-input__field:-webkit-autofill:hover,
.login-form .form-input__field:-webkit-autofill:focus,
.login-form .form-input__field:-webkit-autofill:active,
.register-form .form-input__field:-webkit-autofill,
.register-form .form-input__field:-webkit-autofill:hover,
.register-form .form-input__field:-webkit-autofill:focus,
.register-form .form-input__field:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fcfcfc inset !important;
  -webkit-text-fill-color: #141414 !important;
  caret-color: #141414 !important;
  border: 1px solid var(--input-autofill-border) !important;
  transition: background-color 9999s ease-in-out 0s;
}

.auth-grid,
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.auth-grid--single,
.register-grid--single {
  grid-template-columns: 1fr;
}

.auth-submit,
.login-submit,
.register-submit,
.auth-submit button,
.login-submit button,
.register-submit button,
button.auth-submit,
button.login-submit,
button.register-submit,
.app-btn.auth-submit,
.app-btn.login-submit,
.app-btn.register-submit {
  position: relative;
  width: 100%;
  min-height: 38px;
  height: 38px;
  padding: 8px;
  gap: 4px;
  margin-top: 2px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 0 !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  box-shadow: none !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: transform var(--transition-med), opacity var(--transition-med);
  z-index: 0;
}

.auth-submit::before,
.login-submit::before,
.register-submit::before,
.auth-submit button::before,
.login-submit button::before,
.register-submit button::before,
button.auth-submit::before,
button.login-submit::before,
button.register-submit::before,
.app-btn.auth-submit::before,
.app-btn.login-submit::before,
.app-btn.register-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-med);
  z-index: 0;
}

.auth-submit > *,
.login-submit > *,
.register-submit > *,
.auth-submit button > *,
.login-submit button > *,
.register-submit button > *,
button.auth-submit > *,
button.login-submit > *,
button.register-submit > *,
.app-btn.auth-submit > *,
.app-btn.login-submit > *,
.app-btn.register-submit > * {
  position: relative;
  z-index: 1;
}

.auth-submit:hover::before,
.login-submit:hover::before,
.register-submit:hover::before,
.auth-submit button:hover::before,
.login-submit button:hover::before,
.register-submit button:hover::before,
button.auth-submit:hover::before,
button.login-submit:hover::before,
button.register-submit:hover::before,
.app-btn.auth-submit:hover::before,
.app-btn.login-submit:hover::before,
.app-btn.register-submit:hover::before {
  transform: scaleX(1);
}

.auth-submit:hover,
.login-submit:hover,
.register-submit:hover,
.auth-submit button:hover,
.login-submit button:hover,
.register-submit button:hover,
button.auth-submit:hover,
button.login-submit:hover,
button.register-submit:hover,
.app-btn.auth-submit:hover,
.app-btn.login-submit:hover,
.app-btn.register-submit:hover {
  color: var(--white) !important;
  box-shadow: none !important;
  transform: none;
}

.auth-submit:active,
.login-submit:active,
.register-submit:active,
.auth-submit button:active,
.login-submit button:active,
.register-submit button:active,
button.auth-submit:active,
button.login-submit:active,
button.register-submit:active,
.app-btn.auth-submit:active,
.app-btn.login-submit:active,
.app-btn.register-submit:active {
  transform: scale(0.995);
}

.auth-submit:focus-visible,
.login-submit:focus-visible,
.register-submit:focus-visible,
.auth-submit button:focus-visible,
.login-submit button:focus-visible,
.register-submit button:focus-visible,
button.auth-submit:focus-visible,
button.login-submit:focus-visible,
button.register-submit:focus-visible,
.app-btn.auth-submit:focus-visible,
.app-btn.login-submit:focus-visible,
.app-btn.register-submit:focus-visible {
  outline: 2px solid rgba(15, 23, 32, 0.18);
  outline-offset: 2px;
  box-shadow: none !important;
}

.login-meta {
  margin: 8px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.login-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  line-height: 1;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  user-select: none;
  white-space: nowrap;
}

.login-remember input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--navy-deep);
  cursor: pointer;
}

.login-link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.login-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.login-divider {
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-divider span {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.login-divider p {
  margin: 0;
  font-size: 12px;
  color: #7a7a7a;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.login-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.login-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.login-social-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.login-social-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.08);
  border-color: #bdbdbd;
}

.login-bottom-text {
  margin-top: 30px;
  text-align: center;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.login-bottom-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 400;
}

.login-bottom-text a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.register-card {
  max-width: 560px;
}

.register-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 20px;
}

.register-progress__bar {
  height: 2px;
  border-radius: 999px;
  background: #d7d7d7;
  overflow: hidden;
  position: relative;
}

.register-progress__bar.is-active,
.register-progress__bar.is-complete {
  background: rgba(212, 109, 63, 0.2);
}

.register-progress__bar.is-active::after,
.register-progress__bar.is-complete::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
}

.register-step-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.register-gender {
  margin: 0 0 18px;
}

.register-gender__label {
  margin: 0 0 8px;
  color: #2a292c;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.register-gender__required {
  margin-left: 3px;
  color: #d94b41;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.register-gender__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.register-gender__option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  color: #2a292c;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.register-gender__option input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--navy-deep);
  cursor: pointer;
}

.register-password-strength {
  margin: -2px 0 18px;
}

.register-password-strength__bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

/* =========================================================
   REGISTER STEP 1 FINAL COMPACT FIX
========================================================= */
.register-card {
  max-width: 560px;
  margin-top: 0;
}

.register-card__title,
.auth-card__title {
  margin-bottom: 6px;
}

.register-card__subtitle,
.auth-card__subtitle {
  margin-bottom: 18px;
}

.register-progress {
  margin-bottom: 18px;
}

.register-step-label {
  margin-bottom: 16px;
}

.register-grid {
  gap: 18px 24px;
  margin-bottom: 0;
}

.register-form .auth-field {
  margin-bottom: 14px;
}

.register-form .form-input__error,
.register-gender__error {
  display: block;
  margin-top: 5px;
  margin-bottom: 0;
  color: #ff3b32;
  font-size: 10.5px;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.register-gender {
  margin: 0 0 14px;
}

.register-gender__options {
  min-height: 26px;
  gap: 18px;
}

.register-gender__option {
  font-size: 12px;
  line-height: 1;
  gap: 7px;
}

.register-gender__option input[type=radio] {
  width: 16px;
  height: 16px;
}

.register-form .form-input__field,
.register-form .register-input {
  height: 38px;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 12px;
  line-height: 18px;
}

.register-actions {
  margin-top: 12px;
}

.register-bottom-text {
  margin-top: 14px;
}

.register-password-strength__bar {
  height: 2px;
  border-radius: 999px;
  background: #cfcfcf;
}

.register-password-strength__bar.is-filled {
  background: var(--accent);
}

.register-password-strength__label {
  font-size: 12px;
  color: #555;
  line-height: 1.3;
}

.register-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: center;
}

.register-actions--single {
  grid-template-columns: 1fr;
}

.register-back,
.app-btn.register-back,
button.register-back {
  width: 100px;
  min-width: 100px;
  height: 38px;
  min-height: 38px;
  padding: 8px;
  gap: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #bfbfc3 !important;
  border-radius: 4px;
  background: #ffffff !important;
  color: #a6a6a6 !important;
  box-shadow: none !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.register-back:hover,
.app-btn.register-back:hover,
button.register-back:hover {
  background: #ffffff !important;
  color: #d46d3f !important;
  border-color: #d46d3f !important;
  box-shadow: none !important;
}

.register-back:hover *,
.app-btn.register-back:hover *,
button.register-back:hover * {
  color: #d46d3f !important;
}

.register-bottom-text {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.register-bottom-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.register-bottom-text a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.register-hero-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 470px;
  margin-top: 2px;
}

.auth-hero__footer,
.login-hero__footer,
.register-hero__footer {
  width: 100%;
  max-width: 607px;
  min-height: 48px;
  margin: 0 auto;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.82);
}

.auth-hero__footer > span,
.login-hero__footer > span,
.register-hero__footer > span {
  flex: 1 1 0;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  box-sizing: border-box;
  font-size: 11px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.auth-hero__footer > span:nth-child(1),
.login-hero__footer > span:nth-child(1),
.register-hero__footer > span:nth-child(1) {
  justify-content: flex-start;
}

.auth-hero__footer > span:nth-child(2),
.login-hero__footer > span:nth-child(2),
.register-hero__footer > span:nth-child(2) {
  justify-content: center;
}

.auth-hero__footer > span:nth-child(3),
.login-hero__footer > span:nth-child(3),
.register-hero__footer > span:nth-child(3) {
  justify-content: flex-end;
}

.auth-hero__dot,
.login-hero__dot,
.register-hero__dot {
  color: #d66f3f;
  font-size: 12px;
  line-height: 1;
  flex: 0 0 auto;
}

.register-hero-steps__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.register-hero-steps__item.is-active {
  color: rgba(255, 255, 255, 0.92);
}

.register-hero-steps__circle {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  line-height: 1;
}

.register-hero-steps__item.is-active .register-hero-steps__circle,
.register-hero-steps__item.is-complete .register-hero-steps__circle {
  border-color: var(--accent);
  color: var(--accent);
}

.register-hero-steps__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  min-width: 24px;
}

.register-hero-steps__line.is-active,
.register-hero-steps__line.is-complete {
  background: rgba(212, 109, 63, 0.72);
}

@media (max-width: 1470px) {
  .auth-shell,
  .login-shell,
  .register-shell {
    width: 100vw;
    height: 100vh;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1100px) {
  .auth-shell,
  .login-shell,
  .register-shell {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }
  .auth-hero,
  .login-hero,
  .register-hero {
    min-height: 360px;
  }
  .auth-hero__body,
  .auth-hero__footer,
  .auth-card,
  .login-hero__body,
  .login-hero__footer,
  .login-card,
  .register-hero__body,
  .register-hero__footer,
  .register-card {
    max-width: 100%;
  }
  .auth-panel,
  .login-panel,
  .register-panel {
    padding: 28px 110px;
  }
}
@media (max-width: 1400px) {
  .register-panel {
    padding: 28px 90px;
  }
}
@media (max-width: 1100px) {
  .register-panel {
    padding: 24px 32px;
  }
}
@media (max-width: 768px) {
  .auth-hero,
  .auth-panel,
  .login-hero,
  .login-panel,
  .register-hero,
  .register-panel {
    padding: 20px 18px;
  }
  .auth-hero__body,
  .login-hero__body,
  .register-hero__body {
    min-height: auto;
    padding: 0;
  }
  .auth-title,
  .login-title,
  .register-title {
    font-size: 36px;
  }
  .auth-desc,
  .login-desc,
  .register-desc {
    font-size: 15px;
  }
  .auth-card__title,
  .login-card__title,
  .register-card__title {
    font-size: 36px;
  }
  .login-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .auth-hero__footer,
  .login-hero__footer,
  .register-hero__footer {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .auth-grid,
  .register-grid,
  .register-progress,
  .register-actions {
    grid-template-columns: 1fr;
  }
}
.register-select-field {
  margin-bottom: 18px;
}

.register-card {
  max-width: 490px;
}

.register-step-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 11.5px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.register-checks {
  margin: 2px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.register-check {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  column-gap: 10px;
  cursor: pointer;
}

.register-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--navy-deep);
  cursor: pointer;
}

.register-check span {
  color: #5f6670;
  font-size: 10.5px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.register-check a {
  color: #d46d3f;
  text-decoration: none;
  font-weight: 500;
}

/* =========================================================
   REGISTER ACTION BUTTONS - FIGMA MATCH
========================================================= */
.register-actions {
  width: 100%;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
}

.register-actions--single {
  grid-template-columns: 1fr !important;
}

.register-actions > * {
  min-width: 0;
}

.register-back,
.app-btn.register-back,
button.register-back {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  height: 38px;
  min-height: 38px;
  padding: 8px;
  gap: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #bfbfc3 !important;
  border-radius: 4px;
  background: #ffffff !important;
  color: #a6a6a6 !important;
  box-shadow: none !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}

.register-actions .auth-submit,
.register-actions .register-submit,
.register-actions .app-btn.auth-submit,
.register-actions .app-btn.register-submit,
.register-actions button.auth-submit,
.register-actions button.register-submit {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 38px;
  min-height: 38px;
  margin-top: 0 !important;
  box-sizing: border-box;
}

.register-back:hover,
.app-btn.register-back:hover,
button.register-back:hover {
  background: #ffffff !important;
  color: #d46d3f !important;
  border-color: #d46d3f !important;
  box-shadow: none !important;
}

.register-back:hover *,
.app-btn.register-back:hover *,
button.register-back:hover * {
  color: #d46d3f !important;
}

/* =========================================================
   NEW JOURNEY — STEP 1 (FINAL WIDTH FIX)
========================================================= */
.ob-step1 {
  width: 100%;
  max-width: 920px;
}

.onboarding-shell__title,
.onboarding-shell__description,
.ob-video,
.ob-method,
.ob-method__table,
.ob-video__frame {
  width: 100%;
  max-width: 860px;
}

.onboarding-shell__title {
  margin: 0 0 10px;
}

.onboarding-shell__description {
  margin: 0 0 16px;
}

.ob-video {
  margin: 0 0 16px;
}

.ob-video__frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #d9d9dd;
  border: 1px solid rgba(207, 214, 221, 0.7);
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.03);
}

.ob-video__player {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/5.2;
  object-fit: cover;
  background: #cfcfd4;
}

.ob-method {
  margin-top: 4px;
}

.ob-method__title {
  margin: 0 0 4px;
  color: #2b2f33;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.ob-method__desc {
  margin: 0 0 20px;
  color: #7b8188;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 1px;
}

.ob-method__table {
  border: 1px solid #cfd6dd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.03);
  margin-bottom: 18px;
}

.ob-method__row {
  min-height: 40px;
  display: grid;
  grid-template-columns: 30px 76px 14px 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid #d9e0e7;
  box-sizing: border-box;
  transition: background-color 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.ob-method__row:hover {
  background: #fff8f4;
}

.ob-method__row:hover .ob-method__badge {
  background: #f4cdb9;
  color: #d46d3f;
}

.ob-method__row:hover .ob-method__phase {
  color: #d46d3f;
}

.ob-method__row:hover .ob-method__divider {
  background: rgba(212, 109, 63, 0.35);
}

.ob-method__row:hover .ob-method__text {
  color: #5f6670;
}

.ob-method__row--last {
  border-bottom: 0;
}

.ob-method__badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f7d9c9;
  color: #d46d3f;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.ob-method__phase {
  color: #2e3338;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ob-method__divider {
  width: 1px;
  height: 18px;
  background: #cfd6dd;
}

.ob-method__text {
  color: #767d84;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
}

@media (max-height: 900px) {
  .ob-method__row {
    min-height: 32px;
  }
}
@media (max-width: 768px) {
  .onboarding-shell__title,
  .onboarding-shell__description,
  .ob-video,
  .ob-video__frame,
  .ob-method,
  .ob-method__table {
    max-width: 100%;
  }
  .ob-method__row {
    grid-template-columns: 28px 70px 12px 1fr;
    padding: 0 12px;
  }
}
/* =========================================================
   TRANSITION — STEP 1 OF 
   FINAL PRODUCTION SCSS 
========================================================= */
.ob-step2 {
  width: 100%;
  max-width: 920px;
}

.ob-form {
  width: 100%;
  max-width: 920px;
}

.ob-cat {
  width: 100%;
  max-width: 860px;
  margin-top: 8px;
}

.ob-cat__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  width: 100%;
}

.ob-cat__card {
  position: relative;
  width: 100%;
  min-height: 124px;
  padding: 18px 20px;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.ob-cat__card:hover:not(:disabled):not(.is-selected) {
  border-color: #cfd6dd;
  background: #f1f3f5;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.08);
}

.ob-cat__card:active:not(:disabled) {
  transform: none;
}

.ob-cat__card:focus-visible {
  outline: none;
  border-color: #d8dde3;
  background: #fff;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.08);
}

.ob-cat__card:disabled {
  cursor: default;
  opacity: 0.72;
}

.ob-cat__card.is-selected {
  border-color: #e17845;
  background: #fef8f4;
  box-shadow: none;
}

.ob-cat__icon {
  width: 32px;
  height: 32px;
  margin: 0 0 12px;
  border-radius: 999px;
  border: 1px solid #d8dde3;
  background: #fafafa;
  color: #6f7680;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  flex: 0 0 auto;
}

.onboarding-shell__eyebrow.step-style::before {
  content: "";
  height: 1px;
  width: 50px;
  background-color: #D46D3F;
}

.onboarding-shell__eyebrow.step-style {
  border: none;
  background: white;
}

.ob-cat__icon i {
  line-height: 1;
}

.ob-cat__content {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ob-cat__title {
  display: block;
  margin: 0 0 8px;
  color: #25292e;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.ob-cat__subtitle {
  display: block;
  margin: 0;
  color: #7b8188;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  word-break: break-word;
  letter-spacing: 0.2px;
}

.ob-cat__dot {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  border: 1.5px solid #d2d8de;
  background: #fff;
  box-sizing: border-box;
}

.ob-cat__card.is-selected .ob-cat__dot {
  border-color: #e17845;
  background: radial-gradient(circle at center, #e17845 0 52%, transparent 53% 100%);
}

.ob-cat__card--other.is-selected {
  min-height: 168px;
}

.ob-cat__card--other .ob-cat__subtitle {
  max-width: 92%;
}

.ob-cat__input {
  width: 100%;
  margin-top: 14px;
  height: 34px;
  padding: 7px 10px;
  border: 1px solid #bcc5ce;
  border-radius: 2px;
  background: #fff;
  color: #2b2f33;
  font-size: 11.5px;
  line-height: 1.2;
  outline: none;
  box-shadow: none;
  box-sizing: border-box;
}

.ob-cat__input::placeholder {
  color: #8a9097;
}

.ob-cat__input:focus {
  border-color: rgba(212, 109, 63, 0.52);
  box-shadow: 0 0 0 2px rgba(212, 109, 63, 0.08);
}

.ob-step2 .ob-form__label {
  display: none;
}

.ob-step2 .ob-form__help {
  color: #7b8188;
  font-size: 12px;
  line-height: 1.45;
}

.ob-step2 .ob-form__error {
  margin-top: 12px;
  color: #c43d2f;
  font-size: 12px;
  line-height: 1.4;
}

/* =========================================================
   STEP 3 — WHERE ARE YOU NOW?
========================================================= */
.ob-checkin {
  width: 100%;
  max-width: 920px;
}

.ob-checkin__group {
  width: 100%;
  max-width: 860px;
  margin: 0 0 24px;
  border: 1px solid #d9dfe5;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
}

.ob-checkin__group-head {
  min-height: 34px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #081321;
  color: #fff;
}

.ob-checkin__group-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d46d3f;
  flex: 0 0 auto;
}

.ob-checkin__group-title {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ob-checkin__group-body {
  background: #fff;
}

.ob-checkin__row {
  padding: 12px 14px 16px;
  border-top: 1px solid #eceff3;
  background: #ffffff;
  transition: background-color 0.18s ease;
}

.ob-checkin__row:first-child {
  border-top: 0;
}

.ob-checkin__row:hover {
  background: #f3f4f6;
}

.ob-checkin__question {
  margin: 0 0 12px;
  color: #202428;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.ob-checkin__slider-line {
  display: grid;
  grid-template-columns: auto 1fr auto 22px;
  align-items: center;
  column-gap: 12px;
}

.ob-checkin__scale-label {
  color: #202428;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.ob-checkin__value {
  color: #d46d3f;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-align: right;
}

.ob-checkin__slider-wrap {
  display: flex;
  align-items: center;
  min-height: 24px;
  width: 100%;
}

.ob-checkin__slider {
  width: 100%;
  height: 24px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
  touch-action: none;
}

.ob-checkin__slider:focus {
  outline: none;
}

.ob-checkin__slider::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: #d7d9dd;
}

.ob-checkin__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border-radius: 50%;
  border: 2px solid #d46d3f;
  background: radial-gradient(circle at center, #d46d3f 0 4px, #ffffff 4px 100%);
  box-shadow: 0 1px 4px rgba(16, 24, 40, 0.14);
  cursor: ew-resize;
}

.ob-checkin__slider:hover::-webkit-slider-thumb {
  transform: scale(1.04);
}

.ob-checkin__slider:active::-webkit-slider-thumb {
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(212, 109, 63, 0.12), 0 1px 6px rgba(16, 24, 40, 0.18);
}

.ob-checkin__slider::-moz-range-track {
  height: 3px;
  border-radius: 999px;
  background: #d7d9dd;
}

.ob-checkin__slider::-moz-range-thumb {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid #d46d3f;
  background: #ffffff;
  box-shadow: 0 0 0 2px #ffffff, 0 1px 4px rgba(16, 24, 40, 0.16);
  cursor: ew-resize;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ob-checkin__slider:hover::-moz-range-thumb {
  transform: scale(1.04);
}

.ob-checkin__slider:active::-moz-range-thumb {
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(212, 109, 63, 0.12), 0 1px 6px rgba(16, 24, 40, 0.18);
}

.ob-checkin__slider::-moz-range-progress {
  height: 3px;
  border-radius: 999px;
  background: #d7d9dd;
}

.ob-checkin__empty {
  width: 100%;
  max-width: 860px;
  padding: 18px;
  border: 1px solid #d9dfe5;
  border-radius: 6px;
  background: #fff;
  color: #7b8188;
  font-size: 12px;
  line-height: 1.45;
}

.baseline-header {
  margin-bottom: 26px;
}

.baseline-step {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #d46d3f;
  font-weight: 600;
  margin-bottom: 14px;
}

.baseline-title {
  font-size: 26px;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 12px;
}
.baseline-title span {
  color: #d46d3f;
}

.baseline-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* =========================================================
   STEP 4 — PROFILE SUMMARY
========================================================= */
.profile-summary {
  width: 100%;
  max-width: 820px;
}

.profile-summary__card {
  width: 100%;
  border: 1px solid #ddd8d2;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
}

.profile-summary__hero {
  padding: 20px 24px 18px;
  background: radial-gradient(420px 220px at 10% 25%, rgba(212, 109, 63, 0.3) 0%, rgba(212, 109, 63, 0) 70%), radial-gradient(380px 220px at 88% 40%, rgba(212, 109, 63, 0.34) 0%, rgba(212, 109, 63, 0) 72%), radial-gradient(280px 200px at 50% 50%, rgba(12, 28, 42, 0.4) 0%, rgba(12, 28, 42, 0) 72%), linear-gradient(90deg, #4a2d23 0%, #0a1520 48%, #5a351f 100%);
}

.profile-summary__identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-summary__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(235, 172, 139, 0.72);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  box-sizing: border-box;
}

.profile-summary__identity-text {
  min-width: 0;
}

.profile-summary__name {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.profile-summary__context {
  margin-top: 5px;
  color: #e57b47;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
}

.profile-summary__rows {
  background: #fbf9f7;
}

.profile-summary__row {
  min-height: 48px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #e6e0d9;
}
.profile-summary__row:first-child {
  border-top: 0;
}

.profile-summary__label {
  color: #22262b;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
}

.profile-summary__value {
  color: #6b7178;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  text-align: right;
}

.profile-summary__value--accent {
  color: #d46d3f;
  font-weight: 600;
}

@media (max-width: 700px) {
  .profile-summary__hero {
    padding: 20px 18px;
  }
  .profile-summary__row {
    padding: 14px 16px;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .profile-summary__value {
    text-align: left;
  }
}
/* =========================================================
   STEP 5 — SETUP COMPLETE
========================================================= */
.onboarding-shell__main:has(.setup-complete) {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.onboarding-shell__main:has(.setup-complete) .onboarding-shell__main-inner {
  width: 100%;
  max-width: none;
  min-height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.setup-complete {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.setup-complete__inner {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-18px);
}

.setup-complete__icon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  border: 2px solid #d46d3f;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: transparent;
  box-sizing: border-box;
}
.setup-complete__icon span {
  color: #d46d3f;
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  transform: translateY(-1px);
}

.setup-complete__title {
  margin: 0 0 16px;
  color: #202428;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.setup-complete__title span {
  display: block;
  margin-top: 4px;
  color: #d46d3f;
}

.setup-complete__desc {
  max-width: 560px;
  margin: 0 0 28px;
  color: #7b8188;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

.setup-complete__cta {
  min-width: 172px;
  height: 38px;
  padding: 0 16px;
  border: 1px solid #111827;
  border-radius: 4px;
  background: #111827;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.setup-complete__cta:hover {
  background: #d46d3f;
  border-color: #d46d3f;
  box-shadow: 0 8px 18px rgba(212, 109, 63, 0.18);
}
.setup-complete__cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 109, 63, 0.16);
}

@media (max-width: 700px) {
  .setup-complete {
    padding: 20px;
  }
  .setup-complete__inner {
    max-width: 420px;
    transform: translateY(-8px);
  }
  .setup-complete__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }
  .setup-complete__icon span {
    font-size: 32px;
  }
  .setup-complete__title {
    font-size: 30px;
  }
  .setup-complete__desc {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* =========================================================
   JOURNEY DASHBOARD — DAILY REFLECTION CARD
   WRITABLE FIGMA VERSION
========================================================= */
.journey-card--reflection .journey-reflection-card {
  background: #fbfaf8;
  border: 1px solid #d7d1ca;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(26, 31, 38, 0.05);
  overflow: hidden;
}
.journey-card--reflection .journey-reflection-card__header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #c9c2bb;
  background: #fbfaf8;
}
.journey-card--reflection .journey-reflection-card__header-title {
  min-width: 0;
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.journey-card--reflection .journey-reflection-card__header-icon {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex: 0 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d46d3f;
  overflow: hidden;
}
.journey-card--reflection .journey-reflection-card__header-icon svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  display: block;
  flex: 0 0 14px;
}
.journey-card--reflection .journey-reflection-card__header-title-text {
  color: #2f3339;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.journey-card--reflection .journey-reflection-card__date {
  color: #9a948c;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  flex: 0 0 auto;
}
.journey-card--reflection .journey-reflection-card__prompt {
  padding: 12px 16px 12px;
  border-bottom: 1px solid #c9c2bb;
  background: #fbfaf8;
}
.journey-card--reflection .journey-reflection-card__label {
  margin: 0 0 8px;
  color: #d46d3f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journey-card--reflection .journey-reflection-card__question {
  color: #4a4f55;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  max-width: 100%;
}
.journey-card--reflection .journey-reflection-card__input {
  padding: 0;
  background: #fbfaf8;
}
.journey-card--reflection .journey-reflection-card__textarea {
  display: block;
  width: 100%;
  min-height: 118px;
  resize: vertical;
  border: 0;
  border-bottom: 1px solid #c9c2bb;
  background: transparent;
  box-shadow: none;
  padding: 14px 16px;
  color: #242a31;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.journey-card--reflection .journey-reflection-card__textarea::placeholder {
  color: #b7b0a8;
  font-size: 11px;
  line-height: 1.5;
}
.journey-card--reflection .journey-reflection-card__textarea:focus {
  background: #ffffff;
}
.journey-card--reflection .journey-reflection-card__actions {
  padding: 12px 14px 12px 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #fbfaf8;
}
.journey-card--reflection .journey-reflection-card__error {
  margin: 8px 16px 12px;
  padding: 10px 12px;
  border: 1px solid rgba(212, 109, 63, 0.32);
  border-radius: 6px;
  background: rgba(212, 109, 63, 0.08);
  color: #7c4a33;
  font-size: 11px;
  line-height: 1.45;
}

/* =========================================================
   FOG INTRO PAGE — FINAL FIGMA MATCH
========================================================= */
.fog-intro-page {
  padding: 0;
  background: #f7f5f2;
  color: #2c2f35;
}

/* ---------- centered content width ---------- */
.fog-intro-page__hero,
.fog-intro-page__overview,
.fog-intro-page__section {
  width: 100%;
  max-width: 100%;
}

/* ---------- shared section label ---------- */
.fog-intro-page__section {
  padding: 0 18px;
  margin-bottom: 16px;
}

.fog-intro-page__section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #746f69;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fog-intro-page__section-label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #bdb6ae;
}

/* ---------- hero ---------- */
.fog-intro-page__hero {
  min-height: 168px;
  padding: 16px 22px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  background: radial-gradient(600px 300px at 85% 50%, rgba(212, 109, 63, 0.38) 0%, rgba(212, 109, 63, 0.2) 30%, rgba(212, 109, 63, 0.1) 55%, rgba(212, 109, 63, 0.04) 75%, rgba(212, 109, 63, 0) 90%), radial-gradient(340px 180px at 18% 22%, rgba(26, 48, 78, 0.28) 0%, rgba(26, 48, 78, 0.08) 38%, rgba(26, 48, 78, 0) 72%), linear-gradient(180deg, #11161c 0%, #171d24 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fog-intro-page__hero-copy {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

.fog-intro-page__hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #e3824f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fog-intro-page__hero-phase-dot {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(227, 125, 75, 0.5);
  color: #f0a071;
  font-size: 12px;
  font-weight: 100;
  line-height: 1;
}

.fog-intro-page__hero-title {
  margin: 0 0 6px;
  color: #f5f4f1;
  font-size: 32px;
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.028em;
}
.fog-intro-page__hero-title span {
  color: #e37d4b;
  font-weight: 400;
}

.fog-intro-page__hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1;
}

.fog-intro-page__hero-chip {
  flex: 0 0 auto;
  align-self: flex-start;
}
.fog-intro-page__hero-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(227, 125, 75, 0.55);
  border-radius: 999px;
  color: #e37d4b;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- overview ---------- */
.fog-intro-page__overview {
  padding: 32px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 16px;
  align-items: start;
  background: #f7f5f2;
}

.fog-intro-page__overview-copy p {
  margin: 0 0 14px;
  color: #3d4147;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}
.fog-intro-page__overview-copy strong {
  font-weight: 700;
  color: #2f343a;
}

.fog-intro-page__accent {
  color: #e37d4b;
  font-weight: 500;
}

.fog-intro-page__note {
  margin-top: 4px;
  max-width: 85%;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(227, 125, 75, 0.55);
  border-radius: 2px;
  background: #fbf7f4;
}

.fog-intro-page__note-icon {
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1;
}

.fog-intro-page__note-text {
  color: #5a534c;
  font-size: 14px;
  line-height: 1.5;
}
.fog-intro-page__note-text span {
  color: #e37d4b;
  font-weight: 500;
}

/* ---------- video ---------- */
.fog-intro-page__video-card {
  position: relative;
  min-height: 255px;
  border-radius: 3px;
  overflow: hidden;
  background: radial-gradient(180px 120px at 22% 24%, rgba(212, 109, 63, 0.2) 0%, rgba(212, 109, 63, 0.06) 34%, rgba(212, 109, 63, 0) 72%), radial-gradient(220px 140px at 76% 48%, rgba(13, 34, 57, 0.44) 0%, rgba(13, 34, 57, 0.16) 36%, rgba(13, 34, 57, 0) 76%), linear-gradient(90deg, #2a2522 0%, #0e1821 56%, #10171d 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  isolation: isolate;
}

.fog-intro-page__video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0f1720;
}

/* soft dark overlay so text/buttons stay visible on top of real video */
.fog-intro-page__video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 13, 18, 0.1) 0%, rgba(9, 13, 18, 0.18) 28%, rgba(9, 13, 18, 0.42) 100%), radial-gradient(180px 120px at 22% 24%, rgba(212, 109, 63, 0.18) 0%, rgba(212, 109, 63, 0.04) 34%, rgba(212, 109, 63, 0) 72%);
}

.fog-intro-page__video-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  border: 0;
  background: transparent;
  color: #e37d4b;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 0;
}

.fog-intro-page__video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(227, 125, 75, 0.35);
  border-radius: 999px;
  background: rgba(64, 44, 34, 0.74);
  color: #f4d6c8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 8px rgba(227, 125, 75, 0.05);
  backdrop-filter: blur(4px);
}
.fog-intro-page__video-play span {
  font-size: 12px;
  line-height: 1;
  margin-left: 2px;
}

.fog-intro-page__video-meta {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
}

.fog-intro-page__video-title {
  color: #f3f2ef;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 3px;
}

.fog-intro-page__video-duration {
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  line-height: 1;
}

.fog-intro-page__video-element::-webkit-media-controls {
  display: none !important;
}

.fog-intro-page__video-element::-webkit-media-controls-enclosure {
  display: none !important;
}

.fog-intro-page .fog-intro-page__steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}

.fog-intro-page .fog-intro-step-card {
  min-height: 126px;
  border: 1px solid #e5ddd6;
  border-radius: 8px;
  background: #f9f4f0;
  box-shadow: none;
  overflow: hidden;
}

.fog-intro-page .fog-intro-step-card__inner {
  padding: 16px 16px 14px 16px;
  min-height: 225px;
}

.fog-intro-page .fog-intro-step-card__number {
  margin: 0 0 12px;
  color: #9a9ba1;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.fog-intro-page .fog-intro-step-card__title {
  margin: 15px 0;
  color: #2b2f34;
  font-size: 14px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.fog-intro-page .fog-intro-step-card__text {
  margin: 0;
  color: #69655f;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1300px) {
  .fog-intro-page .fog-intro-step-card__inner {
    padding: 16px 16px 14px 16px;
    min-height: 250px;
  }
}
/* ---------- boundaries ---------- */
.fog-intro-page__boundaries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fog-boundary-card {
  border: 1px solid #e3ddd7;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(28, 33, 38, 0.04);
}
.fog-boundary-card__header {
  min-height: 50px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.fog-boundary-card__icon {
  height: 24px;
  width: 24px;
  border: 2px solid red;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
}
.fog-boundary-card__list {
  list-style: none;
  margin: 0;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fog-boundary-card__list li {
  position: relative;
  padding-left: 16px;
  color: #4b4f55;
  font-size: 16px;
  line-height: 1.38;
}
.fog-boundary-card__list li::before {
  position: absolute;
  left: 0;
  top: 0.08rem;
  font-size: 11px;
  line-height: 1;
}
.fog-boundary-card--negative .fog-boundary-card__header {
  background: #fff2f1;
  color: #ff5b4f;
}
.fog-boundary-card--negative .fog-boundary-card__list li::before {
  content: "×";
  color: #ff5b4f;
}
.fog-boundary-card--positive .fog-boundary-card__header {
  background: #eff9ef;
  color: #2ec54a;
}
.fog-boundary-card--positive .fog-boundary-card__list li::before {
  content: "✓";
  color: #2ec54a;
}

.fog-boundary-card__list li {
  font-size: 14px;
}

.fog-boundary-card__list {
  gap: 16px;
}

/* ---------- travellers ---------- */
.fog-intro-page__travellers-text {
  margin: 0 0 16px;
  max-width: 980px;
  color: #7f7a74;
  font-size: 12px;
  line-height: 1.55;
}

.fog-intro-page__travellers-topbar {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fog-intro-page__travellers-count {
  color: #5f646c;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}

.fog-intro-page__travellers-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fog-intro-page__travellers-arrow {
  width: 60px;
  height: 40px;
  border: 2px solid rgba(213, 85, 23, 0.72);
  border-radius: 8px;
  background: #fffaf7;
  color: #c35015;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fog-intro-page__travellers-arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.fog-intro-page__travellers-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fog-intro-page__travellers-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e3c4b4;
  display: block;
}

.fog-intro-page__travellers-dots .is-active {
  width: 24px;
  border-radius: 999px;
  background: #de7b49;
}

.fog-intro-page__travellers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fog-intro-page__travellers-empty {
  padding: 18px;
  border: 1px dashed #d7cfc7;
  border-radius: 6px;
  color: #746f69;
  font-size: 12px;
  background: #faf8f5;
}

/* ---------- traveller card ---------- */
.fog-traveller-card {
  border: 1px solid #e9e3dd;
  border-radius: 6px;
  background: #fcfbf9;
  box-shadow: none;
  overflow: hidden;
}

.fog-traveller-card__inner {
  padding: 16px 16px 14px;
}

.fog-traveller-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fog-traveller-card__avatar-wrap {
  flex: 0 0 auto;
  height: auto;
  width: 100px;
}

.fog-traveller-card__avatar,
.fog-traveller-card__avatar-fallback {
  width: 100%;
  min-height: 100px;
  object-fit: cover;
  border-radius: 2px;
}

.fog-traveller-card__avatar {
  display: block;
  object-fit: cover;
}

.fog-traveller-card__avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #efb46f 0%, #d46d3f 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.fog-traveller-card__identity {
  min-width: 0;
  flex: 1 1 auto;
}

.fog-traveller-card__name {
  margin: 0 0 3px;
  color: #2a2f35;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
}

.fog-traveller-card__meta {
  color: #8b837b;
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.fog-traveller-card__archetype {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 8px;
  border: 1px solid rgba(227, 125, 75, 0.58);
  border-radius: 999px;
  background: #fff7f2;
  color: #de7b49;
  font-size: 8px;
  line-height: 1;
  font-weight: 600;
}

.fog-traveller-card__status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid rgba(58, 211, 93, 0.7);
  border-radius: 20px;
  background: #f1fff3;
  color: #2ac44b;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.fog-traveller-card__quote {
  margin: 17px 0 15px;
  padding: 20px 14px 33px 20px;
  border-left: 4px solid #e37d4b;
  background: #f4e8e3;
  color: #615d58;
  font-size: 14px;
  line-height: 1.55;
  min-height: 78px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  box-sizing: border-box;
}

.fog-traveller-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.fog-traveller-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  justify-content: center;
  padding: 0px 8px;
  border: 1px solid #d9d4cf;
  border-radius: 16px;
  background: #f2f1ef;
  color: #aaa59f;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  min-width: 74px;
}

/* ---------- audio shell ---------- */
.fog-traveller-card__audio-shell {
  margin-top: 20px;
  padding: 20px 14px;
  border-radius: 4px;
  background: radial-gradient(180px 70px at 20% 50%, rgba(212, 109, 63, 0.18) 0%, rgba(212, 109, 63, 0.06) 35%, rgba(212, 109, 63, 0) 70%), radial-gradient(220px 70px at 80% 50%, rgba(14, 28, 43, 0.42) 0%, rgba(14, 28, 43, 0.14) 36%, rgba(14, 28, 43, 0) 76%), linear-gradient(90deg, #35261f 0%, #121f2b 55%, #171c23 100%);
}

.fog-traveller-card__audio-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fog-traveller-card__audio-play {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(227, 125, 75, 0.75);
  border-radius: 999px;
  background: transparent;
  color: #de7b49;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fog-traveller-card__audio-main {
  min-width: 0;
  flex: 1 1 auto;
}

.fog-traveller-card__audio-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 10px;
}

.fog-traveller-card__audio-time {
  color: #de7b49;
  font-size: 9px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.fog-traveller-card__audio-center {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fog-traveller-card__audio-progress {
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(227, 125, 75, 0.38);
  overflow: hidden;
}

.fog-traveller-card__audio-progress-fill {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: 999px;
  background: #de7b49;
}

.fog-traveller-card__audio-label {
  min-width: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.fog-traveller-card__audio-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.fog-traveller-card__audio-wave {
  display: inline-flex;
  align-items: end;
  gap: 2px;
  height: 12px;
  opacity: 0.8;
}

.fog-traveller-card__audio-wave span {
  display: block;
  width: 1px;
  border-radius: 999px;
  background: rgba(227, 125, 75, 0.75);
  height: 4px;
}

.fog-traveller-card__audio-wave span:nth-child(1) {
  height: 4px;
}

.fog-traveller-card__audio-wave span:nth-child(2) {
  height: 8px;
}

.fog-traveller-card__audio-wave span:nth-child(3) {
  height: 6px;
}

.fog-traveller-card__audio-wave span:nth-child(4) {
  height: 10px;
}

.fog-traveller-card__audio-wave span:nth-child(5) {
  height: 5px;
}

.fog-traveller-card__audio-wave span:nth-child(6) {
  height: 8px;
}

.fog-traveller-card__audio-wave span:nth-child(7) {
  height: 4px;
}

.fog-traveller-card__audio-wave.is-playing span {
  animation: fog-audio-wave 1s ease-in-out infinite;
}

.fog-traveller-card__audio-wave.is-playing span:nth-child(2) {
  animation-delay: 0.1s;
}

.fog-traveller-card__audio-wave.is-playing span:nth-child(3) {
  animation-delay: 0.2s;
}

.fog-traveller-card__audio-wave.is-playing span:nth-child(4) {
  animation-delay: 0.3s;
}

.fog-traveller-card__audio-wave.is-playing span:nth-child(5) {
  animation-delay: 0.4s;
}

.fog-traveller-card__audio-wave.is-playing span:nth-child(6) {
  animation-delay: 0.5s;
}

.fog-traveller-card__audio-wave.is-playing span:nth-child(7) {
  animation-delay: 0.6s;
}

.fog-traveller-card__audio-end {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  line-height: 1;
  white-space: nowrap;
}

.fog-traveller-card__audio-element {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

@keyframes fog-audio-wave {
  0%, 100% {
    transform: scaleY(0.7);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1.35);
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .fog-intro-page__hero {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .fog-intro-page__overview,
  .fog-intro-page__section,
  .fog-intro-page__footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  .fog-intro-page__steps-grid,
  .fog-intro-page__boundaries-grid {
    grid-template-columns: 1fr;
  }
  .fog-intro-page__travellers-topbar,
  .fog-intro-page__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .fog-traveller-card__head {
    flex-wrap: wrap;
  }
  .fog-traveller-card__status {
    margin-left: 50px;
  }
  .fog-traveller-card__quote {
    -webkit-line-clamp: unset;
    overflow: visible;
    min-height: 0;
  }
}
.fog-intro-page__section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #746f69;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 30px 0px 40px 20px;
}
.fog-intro-page__section-label::after {
  content: "";
  flex: 1 1 auto;
  height: 3px;
  background: #bdb6ae;
  display: block;
}

.journey-header__profile-wrap {
  position: relative;
}

.journey-header__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease;
}

.journey-header__chevron.is-open {
  transform: rotate(180deg);
}

.journey-header__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  width: 340px;
}

.journey-header__menu-card {
  border: 1px solid #ddd8d2;
  border-radius: 12px;
  background: #fcfcfc;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
  overflow: hidden;
}

.journey-header__menu-hero {
  padding: 16px;
  border-bottom: 1px solid #ece7e1;
  background: #fbfaf8;
}

.journey-header__menu-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.journey-header__menu-avatar-image,
.journey-header__menu-avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex: 0 0 44px;
}

.journey-header__menu-avatar-image {
  display: block;
  object-fit: cover;
}

.journey-header__menu-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e38b54 0%, #cf6f3e 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.journey-header__menu-identity-text {
  min-width: 0;
}

.journey-header__menu-name {
  color: #202428;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.journey-header__menu-context {
  margin-top: 2px;
  color: #6f7680;
  font-size: 12px;
  line-height: 1.35;
}

.journey-header__menu-rows {
  padding: 8px 16px 4px;
}

.journey-header__menu-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0ebe6;
}

.journey-header__menu-row:last-child {
  border-bottom: 0;
}

.journey-header__menu-label {
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1.35;
}

.journey-header__menu-value {
  color: #202428;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.journey-header__menu-value--accent {
  color: #d46d3f;
  font-weight: 700;
}

.journey-header__menu-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid #ece7e1;
  background: #fcfcfc;
}

.journey-header__menu-btn {
  min-width: 92px;
  height: 34px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.journey-header__menu-btn--secondary {
  border: 1px solid #d8d2cb;
  background: #fff;
  color: #202428;
}

.journey-header__menu-btn--secondary:hover {
  background: #f8f6f3;
}

.journey-header__menu-btn--danger {
  border: 1px solid #d46d3f;
  background: #d46d3f;
  color: #fff;
}

.journey-header__menu-btn--danger:hover {
  background: #c76433;
  border-color: #c76433;
}

/* =========================================================
   FOG NAME YOUR CONFUSION — MODULE 1 / GROUNDING
   CLEAN FINAL SVG VERSION
========================================================= */
/* ---------- tokens ---------- */
/* =========================================================
   ROOT
========================================================= */
.fog-nyc-exercise {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: #1f2933;
  background: transparent;
}

/* =========================================================
   HERO - BALANCED FIGMA MATCH
========================================================= */
.fog-nyc-exercise__hero {
  position: relative;
  width: 100%;
  min-height: 164px;
  margin: 0;
  padding: 26px 48px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: radial-gradient(circle at 78% 36%, rgba(212, 109, 63, 0.26), rgba(212, 109, 63, 0) 25%), linear-gradient(90deg, #071223 0%, #0d1520 35%, #171720 62%, #2b1a15 100%);
  overflow: hidden;
}

.fog-nyc-exercise__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.fog-nyc-exercise__hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fog-nyc-exercise__phase-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 109, 63, 0.76);
  background: rgba(255, 255, 255, 0.015);
  color: #f17a45;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fog-nyc-exercise__phase-intro-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: color 180ms ease;
}

.fog-nyc-exercise__phase-intro-btn:hover {
  color: #ffffff;
}

.fog-nyc-exercise__hero-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #f7f4ef;
  font-family: "Motiva Sans", sans-serif;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0.045em;
}

.fog-nyc-exercise__hero-title span {
  color: #d46d3f;
}

/* =========================================================
   STEPPER - BALANCED FIGMA MATCH
========================================================= */
.fog-nyc-exercise__stepper {
  width: 100%;
  margin: 0;
  padding: 36px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  background: #f5e8df;
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 -1px 0 rgba(31, 41, 51, 0.06);
}

.fog-nyc-exercise__step {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.fog-nyc-exercise__step-number {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9c0b8;
  background: transparent;
  color: #9ba1a8;
  font-family: "Motiva Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.fog-nyc-exercise__step-label {
  color: #9ba1a8;
  font-family: "Motiva Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.fog-nyc-exercise__step.is-active .fog-nyc-exercise__step-number {
  border-color: #0f1a27;
  background: #0f1a27;
  color: #ffffff;
  box-shadow: none;
}

.fog-nyc-exercise__step.is-active .fog-nyc-exercise__step-label {
  color: #2a292c;
  font-weight: 700;
}

.fog-nyc-exercise__step.is-complete .fog-nyc-exercise__step-number {
  border-color: #0f1a27;
  background: #0f1a27;
  color: #ffffff;
  box-shadow: none;
}

.fog-nyc-exercise__step.is-complete .fog-nyc-exercise__step-label {
  color: #2a292c;
  font-weight: 700;
}

.fog-nyc-exercise__step-line {
  width: 96px;
  height: 1px;
  flex: 0 0 96px;
  background: #aaa19a;
  opacity: 0.9;
}

.fog-nyc-exercise__step-line.is-complete {
  background: #aaa19a;
  opacity: 0.9;
}

/* =========================================================
   HERO / STEPPER RESPONSIVE
========================================================= */
@media (max-width: 1200px) {
  .fog-nyc-exercise__stepper {
    padding: 34px 44px;
    gap: 8px;
  }
  .fog-nyc-exercise__step-number {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 16px;
  }
  .fog-nyc-exercise__step-label {
    font-size: 16px;
  }
  .fog-nyc-exercise__step-line {
    width: 70px;
    flex-basis: 70px;
  }
}
@media (max-width: 992px) {
  .fog-nyc-exercise__hero {
    min-height: 150px;
    padding: 22px 28px 30px;
  }
  .fog-nyc-exercise__hero-title {
    font-size: 38px;
  }
  .fog-nyc-exercise__stepper {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 28px 24px;
  }
}
@media (max-width: 768px) {
  .fog-nyc-exercise__hero {
    min-height: 140px;
    padding: 18px 20px 26px;
    gap: 16px;
  }
  .fog-nyc-exercise__phase-pill {
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
  }
  .fog-nyc-exercise__phase-intro-btn {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .fog-nyc-exercise__hero-title {
    font-size: 34px;
    letter-spacing: 0.035em;
  }
  .fog-nyc-exercise__stepper {
    padding: 24px 18px;
  }
  .fog-nyc-exercise__step {
    gap: 10px;
  }
  .fog-nyc-exercise__step-number {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 15px;
  }
  .fog-nyc-exercise__step-label {
    font-size: 14px;
  }
  .fog-nyc-exercise__step-line {
    width: 42px;
    flex-basis: 42px;
  }
}
/* =========================================================
   CONTENT
========================================================= */
.fog-nyc-exercise__content {
  padding: 2rem 46px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f3f0ec;
}

.fog-nyc-exercise__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fog-nyc-exercise__eyebrow-line {
  width: 38px;
  height: 1px;
  flex: 0 0 38px;
  background: #d46d3f;
}

.fog-nyc-exercise__eyebrow-text {
  color: #d46d3f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fog-nyc-exercise__module-title {
  margin: 0;
  color: #1a2230;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.fog-nyc-exercise__module-title span {
  color: #d46d3f;
}

.fog-nyc-exercise__module-description {
  margin: 2px 0 8px;
  color: #6f7780;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 25px;
}

/* =========================================================
   BREATHING CARD
========================================================= */
.fog-nyc-exercise__breathing-card {
  width: 100%;
  min-height: 228px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  padding: 16px 18px;
  border: 1px solid #ddd5ce;
  border-radius: 10px;
  background: #FCFCFC;
  box-shadow: none;
}

.fog-nyc-exercise__breathing-orb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.fog-nyc-exercise__breathing-orb {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fog-nyc-exercise__orb-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.fog-nyc-exercise__orb-ring--outer {
  inset: 0;
  border: 2px solid rgba(212, 109, 63, 0.92);
}

.fog-nyc-exercise__orb-ring--inner {
  inset: 22px;
  border: 2px solid rgba(201, 133, 86, 0.568627451);
}

.fog-nyc-exercise__orb-core {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #dcc5b8;
  transform-origin: center;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), opacity 650ms ease, box-shadow 650ms ease, background-color 650ms ease;
  transform: scale(1);
  opacity: 0.95;
  box-shadow: 0 0 0 rgba(220, 197, 184, 0);
}

.fog-nyc-exercise__orb-core.is-inhale {
  transform: scale(2.2);
  opacity: 1;
  box-shadow: 0 0 16px rgba(220, 197, 184, 0.12);
}

.fog-nyc-exercise__orb-core.is-hold {
  transform: scale(2.2);
  opacity: 1;
  box-shadow: 0 0 14px rgba(220, 197, 184, 0.1);
}

.fog-nyc-exercise__orb-core.is-exhale {
  transform: scale(1);
  opacity: 0.9;
  box-shadow: 0 0 6px rgba(220, 197, 184, 0.05);
}

.fog-nyc-exercise__breathing-copy {
  min-width: 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.fog-nyc-exercise__breathing-phase {
  margin: 0 0 6px;
  color: #d46d3f;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0;
  transition: color 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.fog-nyc-exercise__breathing-text {
  margin: 0;
  max-width: 560px;
  color: #6f7680;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

/* =========================================================
   FEELINGS — FIGMA GIF VERSION
========================================================= */
.fog-nyc-exercise__feelings {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fog-nyc-exercise__feelings-title {
  margin: 0;
  color: #252a31;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 17px 0;
}

.fog-nyc-exercise__feelings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.fog-nyc-exercise__feeling-card {
  appearance: none;
  border: 1px solid #ece7e2;
  background: #fdfcfb;
  border-radius: 4px;
  min-height: 180px;
  padding: 10px 8px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font: inherit;
  color: inherit;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.fog-nyc-exercise__feeling-card:hover {
  border-color: rgba(212, 109, 63, 0.28);
  background: #fffdfa;
}

.fog-nyc-exercise__feeling-card:focus-visible {
  outline: none;
  border-color: rgba(212, 109, 63, 0.52);
  box-shadow: 0 0 0 2px rgba(212, 109, 63, 0.08);
}

.fog-nyc-exercise__feeling-card.is-selected {
  border-color: rgba(212, 109, 63, 0.46);
  background: #fff9f5;
}

.fog-nyc-exercise__feeling-icon-wrap {
  width: 64px;
  height: 64px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fog-nyc-exercise__feeling-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}

.fog-nyc-exercise__feeling-label {
  color: #252b31;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 500;
  line-height: 1.25;
}

/* =========================================================
   FOOTER 
========================================================= */
.fog-nyc-exercise__footer {
  margin-top: 0;
  min-height: 60px;
  padding: 0 28px;
  border-top: 1px solid rgba(31, 41, 51, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
}

.fog-nyc-exercise__footer-step {
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #7c848d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.fog-nyc-exercise__footer-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.fog-nyc-exercise__btn {
  appearance: none;
  padding: 9px 22px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.fog-nyc-exercise__btn--secondary {
  border: 1px solid #d8d0c8;
  background: #fff;
  color: #8b949d;
}

.fog-nyc-exercise__btn--secondary:hover:not(:disabled) {
  background: #fff;
  color: #6c7580;
}

.fog-nyc-exercise__btn--secondary:disabled {
  opacity: 1;
  cursor: not-allowed;
  color: #b0b6bc;
  border-color: #e5ddd6;
}

.fog-nyc-exercise__btn--primary {
  border: 1px solid #111a24;
  background: #111a24;
  color: #fff;
}

.fog-nyc-exercise__btn--primary:hover {
  background: #1a2430;
  border-color: #1a2430;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199px) {
  .fog-nyc-exercise__content {
    padding-left: 28px;
    padding-right: 28px;
  }
  .fog-nyc-exercise__stepper {
    gap: 12px;
    padding: 14px 20px;
  }
  .fog-nyc-exercise__step-line {
    display: none;
  }
  .fog-nyc-exercise__breathing-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .fog-nyc-exercise__breathing-copy,
  .fog-nyc-exercise__breathing-text {
    max-width: 100%;
  }
  .fog-nyc-exercise__feelings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .fog-nyc-exercise__hero {
    padding: 16px 18px 14px;
  }
  .fog-nyc-exercise__hero-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .fog-nyc-exercise__hero-title {
    font-size: 26px;
  }
  .fog-nyc-exercise__content {
    padding: 18px 16px 18px;
  }
  .fog-nyc-exercise__module-title {
    font-size: 26px;
  }
  .fog-nyc-exercise__breathing-card {
    min-height: 0;
    padding: 16px;
    gap: 12px;
  }
  .fog-nyc-exercise__breathing-orb {
    width: 118px;
    height: 118px;
  }
  .fog-nyc-exercise__orb-ring--inner {
    inset: 11px;
  }
  .fog-nyc-exercise__orb-core {
    width: 30px;
    height: 30px;
  }
  .fog-nyc-exercise__feelings-grid {
    grid-template-columns: 1fr;
  }
  .fog-nyc-exercise__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .fog-nyc-exercise__footer-actions {
    width: 100%;
    justify-content: space-between;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fog-nyc-exercise__orb-core,
  .feeling-svg,
  .feeling-svg *,
  .fog-nyc-exercise__feeling-card,
  .fog-nyc-exercise__btn,
  .fog-nyc-exercise__phase-intro-btn {
    animation: none !important;
    transition: none !important;
  }
}
.fog-nyc-exercise__step.is-complete .fog-nyc-exercise__step-number {
  border-color: #d46d3f;
  background: #d46d3f;
  color: #ffffff;
}

.fog-nyc-exercise__step.is-complete .fog-nyc-exercise__step-label {
  color: #d46d3f;
  font-weight: 700;
}

.fog-nyc-exercise__step-line.is-complete {
  background: rgba(212, 109, 63, 0.9);
}

/* =========================================================
   STEP 2 — VALUES MAPPING
========================================================= */
.fog-values-mapping {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fog-values-mapping__info-card {
  min-height: 52px;
  padding: 16px 18px;
  border-radius: 4px;
  background: #0d1520;
  color: #f4f6f8;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
  display: flex;
  align-items: center;
}

.fog-values-mapping__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px 16px;
}

.fog-values-mapping__option {
  appearance: none;
  min-height: 52px;
  padding: 0 12px;
  border: 1px solid #ece7e2;
  border-radius: 4px;
  background: #fdfcfb;
  color: #252b31;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.fog-values-mapping__option:hover:not(:disabled) {
  border-color: rgba(212, 109, 63, 0.28);
  background: #fffdfa;
}

.fog-values-mapping__option:focus-visible {
  outline: none;
  border-color: rgba(212, 109, 63, 0.52);
  box-shadow: 0 0 0 2px rgba(212, 109, 63, 0.08);
}

.fog-values-mapping__option.is-selected {
  border-color: rgba(212, 109, 63, 0.46);
  background: #fff6f1;
  color: #1f2933;
}

.fog-values-mapping__option:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.fog-values-mapping__footer {
  color: #8a9198;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1199.98px) {
  .fog-values-mapping__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .fog-values-mapping__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* =========================================================
   STEP 3 — PRIORITIZATION
========================================================= */
.fog-prioritization {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fog-prioritization__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fog-prioritization__item {
  appearance: none;
  width: 100%;
  min-height: 74px;
  padding: 0 22px 0 36px;
  border: 1px solid #ebe6e1;
  border-radius: 4px;
  background: #fbfaf8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.fog-prioritization__item:hover {
  border-color: rgba(212, 109, 63, 0.24);
  background: #fcfbf9;
}

.fog-prioritization__item:focus-visible {
  outline: none;
  border-color: rgba(212, 109, 63, 0.46);
  box-shadow: 0 0 0 2px rgba(212, 109, 63, 0.06);
}

.fog-prioritization__item.is-selected {
  border-color: rgba(212, 109, 63, 0.62);
  background: #fdf6f2;
}

.fog-prioritization__item-left {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.fog-prioritization__rank {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d46d3f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.fog-prioritization__label {
  color: #2a2f35;
  font-size: 14px;
  letter-spacing: 0.09em;
  font-weight: 600;
  line-height: 1.3;
}

.fog-prioritization__item-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  padding-left: 12px;
}

.fog-prioritization__handle {
  color: #9ba1a8;
  font-size: 16px;
  letter-spacing: -2px;
  line-height: 1;
  user-select: none;
}

.fog-prioritization__footer {
  margin-top: 8px;
  color: #8a9198;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 767.98px) {
  .fog-prioritization__item {
    min-height: 64px;
    padding: 0 16px 0 18px;
  }
  .fog-prioritization__rank {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 12px;
  }
  .fog-prioritization__label {
    font-size: 12px;
  }
  .fog-prioritization__handle {
    font-size: 14px;
  }
}
/* =========================================================
   STEP 4 — REFLECTION
========================================================= */
.fog-reflection {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 8px;
}

.fog-reflection__prompt-card {
  min-height: 70px;
  padding: 14px 18px;
  border-left: 4px solid #d46d3f;
  border-radius: 2px 4px 4px 2px;
  background: #efe5e0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.fog-reflection__prompt-text {
  margin: 0;
  color: #5b5f66;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.fog-reflection__editor-wrap {
  position: relative;
  margin-top: 2px;
}

.fog-reflection__editor {
  width: 100%;
  min-height: 88px;
  padding: 14px 14px 24px;
  border: 1px solid #cfc8c1;
  border-radius: 6px;
  background: #fbfaf8;
  color: #252b31;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  resize: none;
  box-sizing: border-box;
  box-shadow: 0 10px 16px rgba(16, 24, 40, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.fog-reflection__editor::placeholder {
  color: #b0b4b9;
  opacity: 1;
}

.fog-reflection__editor:hover {
  border-color: #c4bdb5;
  background: #fcfbf9;
}

.fog-reflection__editor:focus {
  outline: none;
  border-color: rgba(212, 109, 63, 0.52);
  box-shadow: 0 0 0 2px rgba(212, 109, 63, 0.08), 0 10px 16px rgba(16, 24, 40, 0.05);
  background: #fffdfa;
}

.fog-reflection__word-count {
  position: absolute;
  right: 10px;
  bottom: -12px;
  color: #8e949b;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.fog-reflection__tags-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.fog-reflection__tags-title {
  margin: 0;
  color: #24292f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fog-reflection__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fog-reflection__tag {
  appearance: none;
  min-height: 26px;
  padding: 7px 25px;
  border: 1px solid #d8d2cb;
  border-radius: 999px;
  background: #f6f4f1;
  color: #747b83;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.fog-reflection__tag:hover {
  border-color: rgba(212, 109, 63, 0.3);
  background: #fffaf6;
  color: #4e5761;
}

.fog-reflection__tag:focus-visible {
  outline: none;
  border-color: rgba(212, 109, 63, 0.52);
  box-shadow: 0 0 0 2px rgba(212, 109, 63, 0.08);
}

.fog-reflection__tag.is-selected {
  border-color: rgba(212, 109, 63, 0.46);
  background: #fff4ed;
  color: #d46d3f;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .fog-reflection {
    gap: 16px;
  }
  .fog-reflection__prompt-card {
    padding: 14px 14px;
  }
  .fog-reflection__editor {
    min-height: 110px;
    padding: 12px 12px 22px;
    font-size: 10px;
  }
  .fog-reflection__word-count {
    right: 10px;
    bottom: -12px;
  }
  .fog-reflection__tags {
    gap: 8px;
  }
  .fog-reflection__tag {
    min-height: 25px;
    padding: 0 12px;
    font-size: 9px;
  }
}
/* =========================================================
   FOG MODULE COMPLETE
========================================================= */
.fog-module-complete {
  min-height: calc(100vh - 146px);
  padding: 86px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #f3f0ec;
  text-align: center;
  box-sizing: border-box;
}

.fog-module-complete__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fog-module-complete__icon-wrap {
  margin-bottom: 24px;
}

.fog-module-complete__icon {
  width: 78px;
  height: 78px;
  border: 2px solid #d46d3f;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d46d3f;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.fog-module-complete__title {
  margin: 0 0 14px;
  color: #172133;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.fog-module-complete__title span {
  color: #d46d3f;
}

.fog-module-complete__description {
  margin: 0;
  max-width: 680px;
  color: #6f7782;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.fog-module-complete__stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 464px;
  max-width: 100%;
  border: 1px solid #cfc8c1;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f6f3;
}

.fog-module-complete__stat {
  min-height: 132px;
  padding: 18px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #cfc8c1;
  box-sizing: border-box;
}

.fog-module-complete__stat:last-child {
  border-right: 0;
}

.fog-module-complete__stat-value {
  margin-bottom: 12px;
  color: #d46d3f;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.fog-module-complete__stat-label {
  color: #111827;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.fog-module-complete__actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.fog-module-complete__btn {
  appearance: none;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #111a24;
  border-radius: 6px;
  background: #111a24;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.fog-module-complete__btn:hover {
  background: #1a2430;
  border-color: #1a2430;
}

.fog-module-complete__hint {
  color: #7c848d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 767.98px) {
  .fog-module-complete {
    min-height: auto;
    padding: 56px 16px 40px;
  }
  .fog-module-complete__icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
  .fog-module-complete__title {
    font-size: 28px;
  }
  .fog-module-complete__description {
    font-size: 12px;
    max-width: 100%;
  }
  .fog-module-complete__stats {
    width: 100%;
  }
  .fog-module-complete__stat {
    min-height: 108px;
    padding: 14px 10px;
  }
  .fog-module-complete__stat-value {
    font-size: 30px;
  }
  .fog-module-complete__stat-label {
    font-size: 10px;
  }
  .fog-module-complete__btn {
    min-height: 38px;
    font-size: 11px;
  }
  .fog-module-complete__hint {
    font-size: 11px;
  }
}
.fog-intro-page .fog-intro-step-card.is-completed {
  background: #eef8ef;
  border-color: #d7ead8;
  box-shadow: none;
}

.fog-intro-page .fog-intro-step-card.is-completed .fog-intro-step-card__number {
  color: #8a9390;
}

.fog-intro-page .fog-intro-step-card.is-completed .fog-intro-step-card__title {
  color: #202428;
}

.fog-intro-page .fog-intro-step-card.is-completed .fog-intro-step-card__text {
  color: #667085;
}

.fog-intro-page .fog-intro-step-card__status--completed {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #3aa655;
  color: #3aa655;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* =========================================================
   FOG ARCHETYPE INTRO PAGE — FINAL FIGMA MATCH
========================================================= */
.fog-archetype-intro-page {
  width: 100%;
  background: #f7f4f0;
}

/* =========================================================
   SHELL
========================================================= */
.fog-archetype-intro-page .fog-nyc-exercise {
  background: #f7f4f0;
  color: #1b2230;
}

/* ---------- HERO ---------- */
.fog-archetype-intro-page .fog-nyc-exercise__hero {
  padding: 22px 28px 18px;
  background: radial-gradient(circle at 74% 18%, rgba(203, 117, 67, 0.55), rgba(203, 117, 67, 0) 22%), linear-gradient(90deg, #071629 0%, #081a34 34%, #11172c 58%, #1a1624 74%, #2a1b18 100%);
}

.fog-archetype-intro-page .fog-nyc-exercise__hero-top {
  margin-bottom: 8px;
}

.fog-archetype-intro-page .fog-nyc-exercise__phase-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  border: 1px solid rgba(230, 121, 64, 0.9);
  border-radius: 999px;
  background: transparent;
  color: #e67940;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fog-archetype-intro-page .fog-nyc-exercise__phase-intro-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 100;
  letter-spacing: 0.15em;
  gap: 6px;
}

.fog-archetype-intro-page .fog-nyc-exercise__phase-intro-btn:hover {
  color: #ffffff;
}

.fog-archetype-intro-page .fog-nyc-exercise__hero-title {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.fog-archetype-intro-page .fog-nyc-exercise__hero-title span {
  color: #e67940;
}

/* =========================================================
   STEPPER — FIGMA MATCH
========================================================= */
.fog-nyc-exercise__stepper {
  width: 100%;
  margin: 0;
  padding: 32px 15px;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center;
  gap: 2px;
  background: rgba(212, 109, 63, 0.1019607843);
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 -1px 0 rgba(31, 41, 51, 0.06);
}

.fog-nyc-exercise__step {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.fog-nyc-exercise__step-number {
  width: 33px;
  height: 32px;
  flex: 0 0 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9c0b8;
  background: transparent;
  color: #99a0a8;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.fog-nyc-exercise__step-label {
  color: #9298a0;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

/* active = black */
.fog-nyc-exercise__step.is-active .fog-nyc-exercise__step-number {
  border-color: #0f1a27;
  background: #0f1a27;
  color: #ffffff;
  box-shadow: none;
}

.fog-nyc-exercise__step.is-active .fog-nyc-exercise__step-label {
  color: #2f3134;
  font-weight: 700;
}

/* complete = also black */
.fog-nyc-exercise__step.is-complete .fog-nyc-exercise__step-number {
  border-color: #0f1a27;
  background: #0f1a27;
  color: #ffffff;
  box-shadow: none;
}

.fog-nyc-exercise__step.is-complete .fog-nyc-exercise__step-label {
  color: #2f3134;
  font-weight: 700;
}

.fog-nyc-exercise__step-line {
  width: 100%;
  height: 1px;
  background: #aaa19a;
  opacity: 0.9;
}

/* complete line also neutral/dark, not orange */
.fog-nyc-exercise__step-line.is-complete {
  background: #aaa19a;
  opacity: 0.9;
}

/* =========================================================
   FOG ARCHETYPE INTRO — HARD OVERRIDE FINAL FIX
========================================================= */
.fog-archetype-intro-page .fog-archetype-intro__grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.fog-archetype-intro-page .fog-archetype-intro__card {
  min-height: 182px !important;
  padding: 16px 12px 14px !important;
  border: 1px solid #dddddd !important;
  border-radius: 4px !important;
  background: #f8f8f8 !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.fog-archetype-intro-page .fog-archetype-intro__card-body {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 8px !important;
}

.fog-archetype-intro-page .fog-archetype-intro__icon-wrap {
  width: 40px !important;
  height: 40px !important;
  margin: 0 0 12px 0 !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 999px !important;
  background: #f3f3f3 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
}

.fog-archetype-intro-page .fog-archetype-intro__icon {
  width: 75% !important;
  height: auto !important;
  display: block !important;
  color: #4f5663 !important;
}

.fog-archetype-intro-page .fog-archetype-intro__card-title {
  margin: 0;
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  letter-spacing: 0;
}

.fog-archetype-intro-page .fog-archetype-intro__card-text {
  margin: 0 !important;
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.62;
  text-align: left;
  letter-spacing: 0;
}

@media (max-width: 1199px) {
  .fog-archetype-intro-page .fog-archetype-intro__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  .fog-archetype-intro-page .fog-archetype-intro__card {
    min-height: 180px !important;
  }
}
@media (max-width: 991px) {
  .fog-archetype-intro-page .fog-archetype-intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .fog-archetype-intro-page .fog-archetype-intro__card-title {
    font-size: 16px !important;
  }
  .fog-archetype-intro-page .fog-archetype-intro__card-text {
    font-size: 15px !important;
  }
}
@media (max-width: 767px) {
  .fog-archetype-intro-page .fog-archetype-intro__grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .fog-archetype-intro-page .fog-archetype-intro__card {
    min-height: auto !important;
  }
}
/* =========================================================
   FOG ARCHETYPE INTRO — TEXT HIERARCHY + STEPPER MATCH
========================================================= */
/* ---------- content spacing ---------- */
.fog-archetype-intro-page .fog-nyc-exercise__content {
  padding: 26px 48px 34px !important;
}

/* ---------- section label ---------- */
.fog-archetype-intro-page .fog-nyc-exercise__section-label,
.fog-archetype-intro-page .fog-nyc-exercise__eyebrow {
  margin: 0 0 14px !important;
  color: #df7a43 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* ---------- heading ---------- */
.fog-archetype-intro-page .fog-nyc-exercise__module-title,
.fog-archetype-intro-page .fog-nyc-exercise__content-title,
.fog-archetype-intro-page .fog-nyc-exercise__title {
  margin: 0 0 18px !important;
  max-width: 760px !important;
  color: #111827 !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.01em !important;
}

/* ---------- first paragraph ---------- */
.fog-archetype-intro-page .fog-nyc-exercise__module-description,
.fog-archetype-intro-page .fog-nyc-exercise__description {
  margin: 0 0 10px !important;
  max-width: 1160px !important;
  color: #6f7782 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.58 !important;
}

/* ---------- second paragraph ---------- */
.fog-archetype-intro-page .fog-archetype-intro__lead {
  margin: 0 0 18px !important;
  max-width: 1160px !important;
  color: #4d5561 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.58 !important;
}

/*My changes*/
/*sidebar*/
.journey-sidebar__section {
  padding: 0px;
  height: 772px;
}

.journey-sidebar__body {
  padding: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.journey-sidebar__body::-webkit-scrollbar {
  display: none;
}

.journey-sidebar__phase {
  padding: 8px;
}

journey-sidebar__section {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1098039216);
}

/*Fog Insights*/
.fog-insights .fog-nyc-exercise__stepper {
  display: none !important;
}

.fog-insights .card.mb-4 {
  background: linear-gradient(95deg, rgba(221, 171, 149, 0.1098039216), #ffffff);
}

.fog-insights .text-uppercase.small.text-warning {
  color: #D46D3F !important;
  font-size: 16px !important;
  padding: 10px;
}

.fog-insights .module-heading {
  font-size: 10px;
  letter-spacing: 0.03em;
}

.fog-insights .subtext {
  color: #D46D3F;
}

.fog-insights span.badge.rounded-pill.fog-tier-pill.is-active {
  font-weight: 500;
  font-size: 14px;
}

.fog-insights .card-body .title {
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 0 10px 10px 10px;
}

.fog-insights .card-body .desc {
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 0 0 10px 10px;
}

.fog-insights button.auto {
  color: #D46D3F;
  letter-spacing: 0.04em;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 15px;
}

.fog-insights .card-top {
  background: linear-gradient(355deg, #2a2f39, #572a11);
  border: 5px;
}

.fog-insights button.btn.btn-outline-secondary.btn-sm {
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 2px 4px;
  border-radius: 2px;
}

.fog-insights .text.mb-2 {
  font-size: 10px;
  font-weight: 500;
}

.fog-insights .heading-thread {
  font-size: 18px;
  font-weight: 600;
}

.fog-insights .text-across {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.fog-insights .module-heading.sage {
  color: #D46D3F;
  letter-spacing: 0.03em;
}

.fog-insights h3 {
  font-size: 24px;
}

.guide.small.text-uppercase.text-warning-emphasis {
  color: #d46d3f;
}

.dot-active {
  color: #fff;
}

section.fog-guide.d-flex.align-items-start.gap-4 {
  background: radial-gradient(420px 220px at 10% 25%, rgba(212, 109, 63, 0.3) 0%, rgba(212, 109, 63, 0) 70%), radial-gradient(380px 220px at 88% 40%, rgba(212, 109, 63, 0.34) 0%, rgba(212, 109, 63, 0) 72%), radial-gradient(280px 200px at 50% 50%, rgba(12, 28, 42, 0.4) 0%, rgba(12, 28, 42, 0) 72%), linear-gradient(172deg, #4a2d23 0%, #0a1520 48%, #5a351f 100%);
}

section.reflection.bg-dark.text-white.rounded-3.px-4.py-4 {
  background: radial-gradient(420px 220px at 10% 25%, rgba(212, 109, 63, 0.3) 0%, rgba(212, 109, 63, 0) 70%), radial-gradient(380px 220px at 88% 40%, rgba(212, 109, 63, 0.34) 0%, rgba(212, 109, 63, 0) 72%), radial-gradient(280px 200px at 50% 50%, rgba(12, 28, 42, 0.4) 0%, rgba(12, 28, 42, 0) 72%), linear-gradient(172deg, #4a2d23 0%, #0a1520 48%, #5a351f 100%);
}

.star-container {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 1px solid #D46D3F !important;
  background: rgba(214, 94, 41, 0.168627451);
}

.star-icon {
  font-size: 43px;
  color: #D46D3F !important;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #D46D3F;
  cursor: pointer;
  margin-top: -7px;
}

.map-roles, .roles {
  background: rgba(227, 133, 90, 0.1019607843) !important;
  border: 1px solid #f6d1bf !important;
  border-left: 4px solid #D46D3F !important;
}

button.btn.rounded-pill.px-3.px-md-4.py-2.text-start.btn-outline-secondary.bg-white:hover {
  color: rgba(0, 0, 0, 0.7607843137) !important;
}

h3.mb-0.text-uppercase.fw-semibold.small.text-secondary.flex-shrink-0 {
  font-size: 16px;
}

button.fog-nyc-exercise__btn.fog-nyc-exercise__btn--primary {
  position: relative;
  z-index: 1;
}

button.btn.rounded-pill.px-3.py-1.btn-outline-secondary.bg-white:hover {
  color: black !important;
}

button.fog-nyc-exercise__btn.fog-nyc-exercise__btn--primary::before {
  content: "";
  top: 0;
  left: 0;
  background: #D46D3F;
  position: absolute;
  height: 100%;
  width: 0;
  z-index: -2;
  transition: width 0.9s ease;
}

.fog-nyc-exercise__btn {
  border: 0 !important;
}

button.fog-nyc-exercise__btn.fog-nyc-exercise__btn--primary:hover::before {
  width: 100%;
}

label.fog-option-row.is-selected {
  background: rgba(212, 109, 63, 0.1019607843);
  letter-spacing: 0.05em;
  padding: 20px;
}

.fog-option-row {
  padding: 20px;
  background: #F5F5F5;
}

span.badge.rounded-pill.fog-tier-pill.is-active {
  font-size: 1em;
  color: #d46d3f;
  border: 1px solid #D46D3F;
}

span.badge.rounded-pill.fog-tier-pill.is-complete, span.badge.rounded-pill.fog-tier-pill.is-disabled {
  background: #ffffff;
  color: #999;
  border: 1px solid #999;
}

span.badge.rounded-pill.text-bg-light.fog-question-card__chip {
  border: 1px solid #DCDCDE;
  color: #949398;
  padding: 0.5rem 1.3em;
  background: #EAEAEB;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}

.medium.text-uppercase.fw-medium.my-4.fog-question-card__count {
  color: #D46D3F;
  letter-spacing: 0.8px;
}

.fog-values-mapping__info-card {
  min-height: 70px;
  font-size: 14px;
  letter-spacing: 0.09em;
  margin-bottom: 20px;
}

.fog-values-mapping__option {
  min-height: 140px;
  font-size: 14px;
  letter-spacing: 0.09em;
  margin-bottom: 20px;
}

h3.fw-semibold.mb-3.fog-question-card__title {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

label.fog-option-row {
  font-size: 1rem;
  color: #4b5563 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* hide default look */
.fog-option-row__radio {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #D46D3F;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}

/* inner dot */
.fog-option-row__radio::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D46D3F;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

/* checked state */
.fog-option-row__radio:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

.form-check-input:checked {
  background-color: #fff;
  border-color: #D46D3F;
}

.fog-option-row {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.fog-option-row__text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.progress.fog-assessment-progress {
  height: 0.6rem;
  background-color: #e9ecef;
  border-radius: 0.7rem;
}

.progress-heading.fw-semibold {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.progress-bar.fog-assessment-progress__bar {
  background-color: #D46D3F;
}

.fog-assessment-progress__tiers .progress-stage {
  font-size: 14px;
}

section.fog-assessment-summary__hero-card {
  background: radial-gradient(420px 220px at 10% 25%, rgba(212, 109, 63, 0.3) 0%, rgba(212, 109, 63, 0) 70%), radial-gradient(380px 220px at 88% 40%, rgba(212, 109, 63, 0.34) 0%, rgba(212, 109, 63, 0) 72%), radial-gradient(280px 200px at 50% 50%, rgba(12, 28, 42, 0.4) 0%, rgba(12, 28, 42, 0) 72%), linear-gradient(4deg, #4a2d23 0%, #0a1520 48%, #5a351f 100%);
  color: #fff;
  padding: 20px 25px;
}

.fog-assessment-summary__hero-eyebrow {
  color: #D46D3F;
  font-size: 1.2rem;
  padding: 10px 0px;
}

p.fog-assessment-summary__hero-copy {
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
}

h3.fog-assessment-summary__hero-title {
  font-size: 16px;
}

span.fog-assessment-summary__secondary-label {
  font-size: 12px;
  color: #D46D3F;
}

h4.fog-assessment-summary__insight-title {
  font-size: 18px;
}

h3 .fog-assessment-summary__hero-title Specificity {
  padding: 0 0 0 10px;
}

section.fog-assessment-summary__insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0;
  padding: 10px 0px;
  gap: 20px;
}

article.fog-assessment-summary__insight-card.fog-assessment-summary__insight-card--blindspots, article.fog-assessment-summary__insight-card.fog-assessment-summary__insight-card--strengths {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  background: #fff;
  padding: 20px 10px 20px 20px !important;
}

h4.fog-assessment-summary__insight-title {
  color: #0E8720;
  margin-bottom: 15px;
}

h4.fog-assessment-summary__insight-title.blind {
  color: #B8231B;
}

ul.fog-assessment-summary__list {
  list-style: none;
  padding-left: 2px;
  font-size: 12px;
  letter-spacing: 0.8px;
}

span.fog-assessment-summary__list-icon {
  color: #0E8720;
  font-size: 20px;
}

li.fog-assessment-summary__list-item.fog-assessment-summary__list-item--warning, li.fog-assessment-summary__list-item.fog-assessment-summary__list-item--strength {
  margin-bottom: 12px;
  display: flex;
  align-items: self-start;
  gap: 10px;
}

li.fog-assessment-summary__list-item.fog-assessment-summary__list-item--warning .fog-assessment-summary__list-icon {
  color: #B8231B;
}

fog-intro-step-card__head {
  display: flex;
  justify-content: space-between;
}

.fog-values-mapping__footer {
  font-size: 1rem;
  margin-top: 10px;
  font-size: 14px;
}

.fog-nyc-exercise__module-description {
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.journey-sidebar__streak {
  margin: 16px 14px;
  min-height: 46px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #ef8449;
  border-radius: 14px;
  background: #ef8449;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  flex: 0 0 auto;
}

.journey-sidebar__streak-count {
  color: #000;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  flex: 0 0 auto;
}

.journey-sidebar__streak-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}

.journey-sidebar__streak-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.journey-sidebar__streak-subtitle {
  color: #000;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

button.journey-sidebar__phase.is-active {
  transition: all 0.3s ease;
}

.journey-sidebar__phase-icon {
  transition: all 0.3s ease;
}

button.journey-sidebar__phase.is-active:hover {
  background-color: #d46d3f;
}

button.journey-sidebar__phase.is-active:hover .journey-sidebar__phase-icon {
  background-color: #fff;
  color: #d46d3f;
}

.fog-boundary-card__icon {
  height: 24px;
  width: 24px;
  border: 1px solid #ff5b4f;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.fog-boundary-card__icon.green {
  border: 1px solid #2ec54a;
}

.journey-dashboard__progress-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journey-dashboard__phase-chip {
  padding: 15px 15px;
  font-size: 14px;
}

.journey-dashboard__phase-chip {
  padding: 11px 15px;
  border: 1px solid rgba(212, 109, 63, 0.34);
  border-radius: 999px;
  background: rgba(212, 109, 63, 0.08);
  color: #e37d4b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.journey-dashboard__subtitle {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.35;
}

.journey-dashboard__date {
  font-size: 14px;
}

.journey-dashboard__progress-text {
  font-size: 13px;
}

.journey-dashboard__hero {
  min-height: 168px;
  padding: 24px 36px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: radial-gradient(520px 260px at 78% 36%, rgba(212, 109, 63, 0.4) 0%, rgba(212, 109, 63, 0.14) 30%, rgba(212, 109, 63, 0) 70%), radial-gradient(420px 220px at 18% 18%, rgba(26, 48, 78, 0.32) 0%, rgba(26, 48, 78, 0.08) 40%, rgba(26, 48, 78, 0) 72%), linear-gradient(180deg, #14181d 0%, #171c22 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.journey-card__section-label {
  gap: 10px;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  margin: 15px 0px 15px 10px;
}

.journey-module-card__top {
  min-height: 60px;
  padding: 8px 12px;
}

.journey-module-card__badge {
  padding: 4px 8px;
  border: 1px solid rgba(212, 109, 63, 0.5);
  border-radius: 999px;
  color: #e37d4b;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.journey-module-card__badge {
  padding: 8px 12px;
  font-size: 14px;
}

.journey-module-card__time {
  font-size: 14px;
}

.journey-module-card__title {
  margin: 14px 0px;
  font-size: 25px;
  line-height: 1.12;
}

.journey-module-card__text {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.journey-module-card__tags span {
  padding: 9px 20px;
  font-size: 14px;
  margin-bottom: 7px;
}

.journey-module-card__tags {
  gap: 4px;
  margin-bottom: 16px;
}

.journey-module-card .journey-module-card__actions .app-btn {
  min-height: 50px;
  height: 50px;
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 8px;
}

.journey-baseline-card__header {
  padding: 19px 18px;
}

.journey-baseline-card__header h3 {
  font-size: 22px;
}

.journey-baseline-card__header span {
  font-size: 14px;
}

.journey-score-row__label, .journey-score-row__value {
  font-size: 16px;
}

.journey-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.journey-tool-card {
  min-height: 152px;
  min-width: 200px;
  padding: 12px 12px 10px;
  border-radius: 10px;
  gap: 8px;
}

.journey-tool-card__icon {
  width: 50px;
  height: 50px;
}

.journey-tool-card__icon svg {
  width: 25px;
  height: 24px;
}

.journey-tool-card h4 {
  font-size: 16px;
  line-height: 1.5;
}

.journey-tool-card p {
  font-size: 14px;
  line-height: 1.45;
}

.journey-card--reflection .journey-reflection-card__header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  min-width: 100px;
}

.journey-tool-card:hover {
  border: 1px solid #d97745;
}

.journey-card--reflection .journey-reflection-card__header-icon {
  min-width: 40px;
  flex: 0 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d46d3f;
  overflow: hidden;
}

.journey-card--reflection .journey-reflection-card__header-title-text {
  color: #2f3339;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.journey-card--reflection .journey-reflection-card__label {
  margin: 0 0 8px;
  color: #d46d3f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-card--reflection .journey-reflection-card__question {
  color: #4a4f55;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  max-width: 100%;
}

.journey-card--reflection .journey-reflection-card__question {
  color: #4a4f55;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  max-width: 100%;
  margin: 20px 0;
}

.app-btn--md {
  min-height: 50px;
  padding: 8px 25px;
  font-size: 14px;
}

.journey-card--reflection .journey-reflection-card__textarea {
  width: 100%;
  min-height: 141px;
  border: 0;
  border-bottom: 1px solid #c9c2bb;
  background: transparent;
  box-shadow: none;
  padding: 14px 16px;
  color: #242a31;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  font-size: 18px;
}

.journey-weekly-streak-card {
  min-height: 200px;
}

.journey-weekly-streak-card__title {
  font-size: 20px;
}

.journey-weekly-streak-card__subtitle {
  font-size: 14px;
  margin: 8px 0 8px 5px;
}

.journey-weekly-streak-card__chart {
  padding: 21px 18px 14px;
  gap: 10px;
}

.journey-quote-card__text {
  font-size: 16px;
  line-height: 1.5;
}

.journey-quote-card__meta {
  font-size: 14px;
}

.journey-card--reflection .journey-reflection-card__date {
  color: #9a948c;
  font-size: 14px;
}

.journey-card--reflection .journey-reflection-card__header-icon {
  min-width: 40px;
  min-height: 40px;
  flex: 0 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d46d3f;
  overflow: hidden;
}

.journey-card--reflection .journey-reflection-card__header-icon svg {
  min-width: 37px;
  min-height: 37px;
  display: block;
  flex: 0 0 14px;
}

.journey-header__brand-label {
  color: #3f444a;
  font-size: 16px;
  letter-spacing: 1.2px;
}

.journey-header__phase-badge {
  padding: 4px 11px;
  font-size: 14px;
}

.journey-header__page-title {
  color: #6f6a64;
  font-size: 14px;
}

.journey-header__avatar-image, .journey-header__avatar-fallback {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

.journey-header__profile-name {
  font-size: 16px;
}

.journey-header__profile-copy {
  gap: 3px;
}

.journey-header__profile-role {
  color: #7d776f;
  font-size: 13px;
}

.fog-intro-page__hero-chip span {
  padding: 8px 13px;
  min-height: 0px !important;
  font-size: 14px;
}

@media (max-width: 576px) {
  .journey-shell {
    grid-template-columns: 200px minmax(0, 1fr);
  }
  .fog-traveller-card__avatar-wrap {
    height: auto;
    width: 100%;
  }
  .fog-nyc-exercise__footer-step {
    margin-top: 10px;
  }
  .fog-nyc-exercise__footer-actions {
    margin-bottom: 10px;
  }
}
button.journey-sidebar__nav-item:hover {
  background: #ef8449;
}

@media (max-width: 767px) {
  .fog-nyc-exercise__stepper {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .fog-nyc-exercise__stepper {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .fog-intro-page .fog-intro-page__steps-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .fog-intro-page .fog-intro-step-card__inner {
    min-height: 225px;
  }
  span.journey-header__brand-label {
    display: none;
  }
  .fog-traveller-card__status {
    font-size: 12px;
    line-height: 0;
    font-weight: 500;
  }
  .fog-traveller-card__avatar-wrap {
    height: auto;
    width: 100%;
  }
  .fog-traveller-card__meta {
    line-height: 1.3;
  }
}
@media (max-width: 991px) {
  .d-flex.justify-content-between.align-items-center.mb-3 {
    flex-direction: column;
    gap: 10px;
  }
  .fog-intro-page .fog-intro-page__steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  section.fog-assessment-summary__insight-grid {
    grid-template-columns: 1fr;
  }
  .fog-intro-page .fog-intro-step-card__inner {
    min-height: 225px;
  }
  .fog-traveller-card__meta {
    line-height: 1.3;
  }
  .fog-intro-page__begin-btn {
    padding: 8px 11px;
  }
  .fog-nyc-exercise__btn {
    padding: 4px 5px;
    gap: 5px;
    font-size: 12px;
  }
  .fog-nyc-exercise__footer-step {
    font-size: 1rem;
  }
  .fog-nyc-exercise__hero-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .fog-archetype-intro-page .fog-archetype-intro__card-title {
    font-size: 1rem !important;
  }
  .fog-archetype-intro-page .fog-archetype-intro__card-title {
    font-size: 18px !important;
  }
  .journey-sidebar__nav-text {
    letter-spacing: 0.08em;
    font-size: 16px;
    font-weight: 200;
  }
  .journey-sidebar__section-title {
    font-size: 11px;
  }
  .journey-sidebar__phase-name {
    font-size: 14px;
  }
  .journey-sidebar__phase-subtitle {
    font-size: 11px;
  }
  .journey-sidebar__phase-icon {
    height: 40px;
    width: 40px;
    font-size: 18px;
  }
  .journey-sidebar__phase-left {
    gap: 13px;
  }
  .journey-sidebar__phase-list {
    gap: 16px;
  }
  .journey-sidebar__phase-badge {
    font-weight: 500;
    font-size: 12px;
  }
  .journey-sidebar__section-title {
    padding: 0px 0 8px 0px;
  }
}
@media screen and (max-width: 1199px) {
  .fog-nyc-exercise__stepper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  span.fog-nyc-exercise__step-line {
    width: 5%;
  }
}
@media screen and (min-width: 1300px) {
  .fog-intro-page .fog-intro-step-card__inner {
    min-height: 250px;
  }
}
@media screen and (min-width: 1500px) {
  .fog-intro-page__overview {
    grid-template-columns: minmax(0, 1fr) 550px;
  }
}
@media screen and (min-width: 1199px) and (max-width: 1499px) {
  .fog-intro-page__overview {
    grid-template-columns: minmax(0, 1fr) 424px;
  }
  .fog-intro-page__video-card {
    min-height: 300px;
  }
}
/**OBSERVE intro*/
.app-layout__hero {
  background: radial-gradient(600px 300px at 80% 20%, rgba(40, 90, 160, 0.45) 0%, rgba(40, 90, 160, 0.15) 40%, transparent 70%), radial-gradient(500px 250px at 60% 50%, rgba(30, 70, 130, 0.35) 0%, rgba(30, 70, 130, 0.12) 45%, transparent 75%), linear-gradient(180deg, #0f141a 0%, #151b22 100%);
}

.observe-layout.container-fluid.px-0 {
  letter-spacing: 0.08em;
}

h1 {
  color: #fff;
  font-weight: 200 !important;
}

.badge {
  padding: 10px;
  border: 1px solid #D46D3F;
  border-radius: 20px;
  font-weight: 100;
}

.stepper {
  background: rgba(42, 80, 128, 0.1019607843);
}

.stepper span {
  width: 8%;
  height: 6px;
  background: rgba(42, 80, 128, 0.1019607843);
}

button.observe-layout__phase-intro.btn.btn-link.text-decoration-none {
  color: #949398;
}

.observe-subtext, .span-text {
  color: #2A5080;
}

.text-pink {
  color: #D46D3F;
  background-color: #f8fcff;
}

.box-text {
  border: 1px solid #D46D3F;
  padding: 12px;
  border-radius: 5px;
}

.alert-text {
  color: #2A5080;
  border: 1px solid #2A5080;
  border-radius: 6px;
  border-left: 11px solid #2A5080;
}

.btn-observe {
  background: #2A5080;
  color: #fff;
}

.btn-observe:hover {
  color: #fff;
}

.observe-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.observe {
  letter-spacing: 0.08em;
}
.observe .section1 {
  background: radial-gradient(600px 300px at 80% 20%, rgba(40, 90, 160, 0.45) 0%, rgba(40, 90, 160, 0.15) 40%, transparent 70%), radial-gradient(500px 250px at 60% 50%, rgba(30, 70, 130, 0.35) 0%, rgba(30, 70, 130, 0.12) 45%, transparent 75%), linear-gradient(180deg, #0f141a 0%, #151b22 100%);
}
.observe .section1 .top {
  font-size: 12px;
  font-weight: 100;
}
.observe .section1 h1.title {
  font-size: 32px;
}
.observe .section1 .badge.left {
  font-size: 12px;
  padding: 7px 8px;
  font-weight: 100;
  border: 1px solid #fff;
  border-radius: 10pc;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2em;
  background: rgba(125, 116, 163, 0.5098039216);
}
.observe .section1 .description {
  color: #737278;
}
.observe section2 .card-content {
  min-height: 220px;
}
.observe section2 .card-content video {
  min-height: inherit;
}
.observe .pattern-areas .heading, .observe .boundaries .heading, .observe .five-step-section .heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.observe .pattern-areas .card-four, .observe .boundaries .card-four, .observe .five-step-section .card-four {
  width: 19.666667%;
}
.observe .pattern-areas .heading h6, .observe .boundaries .heading h6, .observe .five-step-section .heading h6 {
  white-space: nowrap;
  margin: 0;
}
.observe .pattern-areas .side-border, .observe .boundaries .side-border, .observe .five-step-section .side-border {
  height: 2px;
  width: 100%;
  background: #999;
  flex: 1;
}
.observe .pattern-areas .cardlist, .observe .boundaries .cardlist, .observe .five-step-section .cardlist {
  padding: 0px;
}
.observe .pattern-areas .danger, .observe .boundaries .danger, .observe .five-step-section .danger {
  padding: 17px;
  background: rgba(255, 0, 0, 0.0509803922);
}
.observe .pattern-areas .success, .observe .boundaries .success, .observe .five-step-section .success {
  padding: 17px;
  background: rgba(197, 253, 206, 0.4588235294);
}
.observe .pattern-areas ul, .observe .boundaries ul, .observe .five-step-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.observe .pattern-areas ul li, .observe .boundaries ul li, .observe .five-step-section ul li {
  list-style: none;
}

.observe .helperText {
  border-left: 0.5rem solid #2A5080;
  border-radius: 5px;
}

textarea.form-control::placeholder {
  color: #999;
  letter-spacing: 1.5px;
}

.summary-card {
  background: #F5FBFF;
}

.summry-badge {
  border: 1px solid #D46D3F;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-card {
  width: 350px;
  max-width: 90%;
  background: #2A5080 !important;
}

/* =========================================================
   Step Progress - Shared Reusable Component
========================================================= */
.step-progress {
  width: 100%;
}

/* ---------------------------------------------------------
   BAR MODE (used in Observe step pages)
--------------------------------------------------------- */
.step-progress--bar {
  background: #dfe3e8;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.step-progress__bars {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-progress__bar {
  display: inline-block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.step-progress__bar.is-active {
  background: #2f5e94;
}

.step-progress__bar.is-complete {
  background: #e58b67;
}

.step-progress__bar.is-upcoming {
  background: #e8cfc5;
}

/* ---------------------------------------------------------
   NAMED MODE (for step labels/circles if needed elsewhere)
--------------------------------------------------------- */
.step-progress--named {
  background: transparent;
}

.step-progress__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  flex-wrap: nowrap;
}

.step-progress__item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.step-progress__circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid #cfd6dd;
  background: #ffffff;
  color: #7b8896;
}

.step-progress__label {
  font-size: 12px;
  font-weight: 600;
  color: #6f7f90;
  white-space: nowrap;
}

.step-progress__line {
  flex: 1 1 auto;
  min-width: 20px;
  height: 2px;
  margin: 0 10px;
  border-radius: 999px;
  background: #d7dde4;
}

.step-progress__item.is-active .step-progress__circle {
  background: #2f5e94;
  border-color: #2f5e94;
  color: #ffffff;
}

.step-progress__item.is-active .step-progress__label {
  color: #24384d;
}

.step-progress__item.is-completed .step-progress__circle {
  background: #e58b67;
  border-color: #e58b67;
  color: #ffffff;
}

.step-progress__item.is-completed .step-progress__label {
  color: #24384d;
}

.step-progress__item.is-upcoming .step-progress__circle {
  background: #ffffff;
  border-color: #d7dde4;
  color: #8c99a7;
}

.step-progress__item.is-upcoming .step-progress__label {
  color: #8c99a7;
}

.step-progress__line.is-completed {
  background: #e58b67;
}

.step-progress__line.is-active {
  background: #2f5e94;
}

.step-progress__line.is-upcoming {
  background: #d7dde4;
}

/* ---------------------------------------------------------
   Observe step-page tuning
--------------------------------------------------------- */
.observe-step-page .step-progress--bar {
  margin: 0;
}

.observe-step-page .step-progress__bars {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 991px) {
  .step-progress__bars {
    padding: 10px 24px;
  }
}
@media (max-width: 767px) {
  .step-progress__bars {
    padding: 8px 18px;
    gap: 6px;
  }
  .step-progress__bar {
    width: 20px;
  }
}
/* =========================================================
   OBSERVE STEP PAGE - FINAL CLEAN PRODUCTION SCSS
   Scope: only Observe step pages
========================================================= */
/* ------------------------------
   Base shell
------------------------------ */
.observe-step-page,
.observe-step-page .app-layout {
  background: #f7f5f1;
  color: #101c2d;
}

.observe-step-page .app-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.observe-step-page .app-layout__main {
  flex: 1 1 auto;
  background: #f7f5f1;
}

.observe-step-page .app-layout__top-content {
  margin: 0;
  padding: 0;
  background: #dfe3e8;
}

.observe-step-page .app-layout__content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 42px 42px !important;
}

/* ------------------------------
   Header / hero
------------------------------ */
.observe-step-page .app-header__hero {
  min-height: 132px;
  background: radial-gradient(circle at 74% 42%, rgba(42, 72, 108, 0.9) 0%, rgba(16, 32, 49, 0.98) 42%, #0f1720 100%);
  color: #ffffff;
}

.observe-step-page .app-header__hero-inner {
  width: 100%;
  max-width: 1280px;
  min-height: 132px;
  margin: 0 auto;
  padding: 28px 42px 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.observe-step-page .app-header__phase-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 12px;
  border: 1px solid #e87745;
  border-radius: 999px;
  background: rgba(17, 24, 32, 0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.observe-step-page .app-header__title {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.observe-step-page .app-header__back-link {
  margin-top: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.observe-step-page .app-header__back-link:hover {
  color: #ffffff;
}

/* ------------------------------
   Step progress directly below header
------------------------------ */
.observe-step-page .step-progress {
  width: 100%;
}

.observe-step-page .step-progress--bar {
  margin: 0;
  background: #dfe3e8;
  border-top: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.observe-step-page .step-progress__bars {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 42px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.observe-step-page .step-progress__bar {
  display: inline-block;
  width: 34px;
  height: 4px;
  border-radius: 999px;
}

.observe-step-page .step-progress__bar.is-active {
  background: #2f5e94;
}

.observe-step-page .step-progress__bar.is-complete {
  background: #e58b67;
}

.observe-step-page .step-progress__bar.is-upcoming {
  background: #e9cfc3;
}

/* ------------------------------
   Main step content
------------------------------ */
.observe-step-page .observe-step {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.observe-step-page .observe-step__header {
  margin-bottom: 40px;
}

.observe-step-page .observe-step__groups {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.observe-step-page .observe-step__group {
  width: 100%;
}

/* ------------------------------
   Step header
------------------------------ */
.observe-step-page .step-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #e87745;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.observe-step-page .step-header__title {
  max-width: 860px;
  margin: 0 0 16px !important;
  color: #0f1d31;
  font-size: 38px !important;
  font-weight: 700 !important;
  line-height: 1.16;
  letter-spacing: 0;
}

.observe-step-page .step-header__title span,
.observe-step-page .step-header__title strong,
.observe-step-page .step-header__title em {
  color: #e87745;
  font-style: normal;
}

.observe-step-page .step-header__description {
  max-width: 980px;
  margin: 0;
  color: #5c6e83;
  font-size: 17px !important;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
}

/* ------------------------------
   Helper text block
------------------------------ */
.observe-step-page .helper-text-block {
  margin-top: 24px;
  padding: 18px 24px !important;
  border-left: 6px solid #2f5e94;
  border-radius: 5px;
  background: #dfe3e8;
  color: #334457;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.observe-step-page .helper-text-block__label {
  margin-right: 8px;
  color: #1c2e44;
  font-weight: 800;
}

.observe-step-page .helper-text-block__text {
  color: #415468;
  font-weight: 400;
}

/* ------------------------------
   Reusable section divider
------------------------------ */
.observe-step-page .section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
}

.observe-step-page .section-divider span {
  color: #66798e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.observe-step-page .section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(102, 121, 142, 0.42);
}

/* ------------------------------
   Selectable grid / option pills
------------------------------ */
.observe-step-page .selectable-grid {
  width: 100%;
  margin: 0;
}

.observe-step-page .selectable-grid__grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 18px;
  margin: 0 !important;
}

.observe-step-page .observe-option-col {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
}

.observe-step-page .observe-option-pill {
  width: 100%;
  min-height: 42px;
  padding: 0 18px !important;
  border: 1px solid #cfd6dd !important;
  border-radius: 999px !important;
  background: #f8fafb !important;
  color: #5d6f84 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em;
  text-align: center;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05) !important;
  cursor: pointer;
  user-select: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

/* Highlight selected word inside step title */
.observe-step-page .step-header__highlight {
  color: #e87745;
  font-style: normal;
}

.observe-step-page .observe-option-pill:hover {
  border-color: #d96f3f !important;
  background: #fffaf6 !important;
  color: #d96f3f !important;
  transform: translateY(-1px);
}

.observe-step-page .observe-option-pill.is-selected,
.observe-step-page .observe-option-pill[aria-pressed=true] {
  border-color: #d96f3f !important;
  background: #fff3ed !important;
  color: #d96f3f !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 10px rgba(217, 111, 63, 0.14) !important;
}

.observe-step-page .observe-option-pill:focus,
.observe-step-page .observe-option-pill:focus-visible {
  outline: none;
  border-color: #d96f3f !important;
  box-shadow: 0 0 0 3px rgba(217, 111, 63, 0.14) !important;
}

.observe-step-page .selectable-grid__title {
  display: block;
  line-height: 1.1;
}

.observe-step-page .selectable-grid__description {
  display: block;
  margin-top: 6px;
  color: #7b8794;
  font-size: 11px;
  line-height: 1.35;
}

/* ------------------------------
   Text area block
------------------------------ */
.observe-step-page .text-area-block {
  width: 100%;
}

.observe-step-page .text-area-block textarea,
.observe-step-page .text-area-block__textarea {
  width: 100%;
  min-height: 170px;
  padding: 18px 20px;
  border: 1px solid #cfd6dd;
  border-radius: 6px;
  background: #ffffff;
  color: #26384c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  resize: vertical;
}

.observe-step-page .text-area-block textarea::placeholder,
.observe-step-page .text-area-block__textarea::placeholder {
  color: #98a3af;
}

.observe-step-page .text-area-block__word-count {
  margin-top: 8px;
  color: #7d8896;
  font-size: 11px;
  text-align: right;
}

/* ------------------------------
   Footer
------------------------------ */
.observe-step-page .app-footer {
  flex: 0 0 auto;
  border-top: 1px solid #d8d8d8;
  background: #f8f8f8;
}

.observe-step-page .app-footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 42px !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.observe-step-page .app-footer__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.observe-step-page .app-footer__button {
  min-width: 90px;
  height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.observe-step-page .app-footer__button--back {
  background: #d0d1d5;
  color: #7b7d84;
}

.observe-step-page .app-footer__button--continue {
  background: #df7543;
  color: #ffffff;
}

.observe-step-page .app-footer__button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.observe-step-page .app-footer__button--back:hover:not(:disabled) {
  background: #c2c2c7;
}

.observe-step-page .app-footer__button--continue:hover:not(:disabled) {
  background: #cc6638;
}

.observe-step-page .app-footer__button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 1199px) {
  .observe-step-page .app-layout__content {
    padding: 28px 30px 36px !important;
  }
  .observe-step-page .observe-step {
    max-width: 100%;
  }
  .observe-step-page .selectable-grid__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .observe-step-page .app-layout__content {
    padding: 22px 18px 28px !important;
  }
  .observe-step-page .app-header__hero {
    min-height: auto;
  }
  .observe-step-page .app-header__hero-inner {
    min-height: auto;
    padding: 22px 18px;
    flex-direction: column;
    gap: 12px;
  }
  .observe-step-page .app-header__title {
    font-size: 28px;
  }
  .observe-step-page .app-header__back-link {
    margin-top: 0;
  }
  .observe-step-page .step-progress__bars {
    padding: 10px 18px;
  }
  .observe-step-page .step-header__title {
    font-size: 28px !important;
  }
  .observe-step-page .step-header__description {
    font-size: 14px !important;
  }
  .observe-step-page .helper-text-block {
    padding: 14px 16px !important;
    font-size: 14px !important;
  }
  .observe-step-page .selectable-grid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .observe-step-page .observe-option-pill {
    min-height: 40px;
    font-size: 13px !important;
  }
  .observe-step-page .text-area-block textarea,
  .observe-step-page .text-area-block__textarea {
    min-height: 140px;
    padding: 16px;
    font-size: 14px;
  }
  .observe-step-page .app-footer__inner {
    padding: 14px 18px !important;
  }
}
/* =========================================================
   ReconnectInputCard - Step 2 Review Figma Fix
   Replace only the reconnect-input-card section with this.
   Do not change reconnect-pattern-card / reconnect-pattern-grid.
   ========================================================= */
.reconnect-review-step__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.reconnect-review-step__items .reconnect-input-card {
  width: 100%;
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  margin-bottom: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: none;
}

.reconnect-review-step__items .reconnect-input-card__step {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #148c3d;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  margin-top: 22px;
}

.reconnect-review-step__items .reconnect-input-card__content {
  flex: 1;
  min-width: 0;
}

.reconnect-review-step__items .reconnect-input-card__title {
  margin: 0 0 5px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.reconnect-review-step__items .reconnect-input-card__helper {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.reconnect-review-step__items .reconnect-input-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: center;
  margin-top: 0;
}

.reconnect-review-step__items .reconnect-input-card__textarea {
  min-width: 0;
}

.reconnect-review-step__items .reconnect-input-card__textarea-control {
  width: 100%;
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  resize: none;
  overflow: hidden;
  padding: 11px 14px;
  background: #ffffff;
  border: 1px solid #cfd6df;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  color: #111827;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.reconnect-review-step__items .reconnect-input-card__textarea-control::placeholder {
  color: #a0a8b5;
}

.reconnect-review-step__items .reconnect-input-card__textarea-control:focus {
  border-color: #bfc8d4;
  box-shadow: none;
}

.reconnect-review-step__items .reconnect-input-card__slider {
  width: 180px;
  min-width: 180px;
}

.reconnect-review-step__items .reconnect-input-card__range {
  width: 100%;
  margin: 0 0 8px;
  accent-color: #148c3d;
  cursor: pointer;
}

.reconnect-review-step__items .reconnect-input-card__scale {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 991.98px) {
  .reconnect-review-step__items .reconnect-input-card {
    align-items: flex-start;
  }
  .reconnect-review-step__items .reconnect-input-card__body {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .reconnect-review-step__items .reconnect-input-card__slider {
    width: 100%;
    min-width: 0;
  }
}
.reconnect-synthesis-shell .app-layout__content {
  padding-top: 26px !important;
  padding-bottom: 28px !important;
  background: #f4f1ec;
}

.reconnect-synthesis-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
}

.reconnect-dark-panel {
  color: #ffffff;
  background: linear-gradient(120deg, #101418 0%, #0d1918 44%, #103c22 100%);
  border-radius: 4px;
}

.reconnect-dark-panel--hero {
  padding: 26px 30px;
  margin-bottom: 26px;
}

.reconnect-dark-panel--statement {
  min-height: 94px;
  padding: 22px 30px;
}

.reconnect-dark-panel__eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reconnect-dark-panel__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.reconnect-dark-panel__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
}

.reconnect-synthesis-stats {
  max-width: 560px;
  margin: 0 auto 28px;
}
.reconnect-synthesis-stats > [class*=col-] {
  padding: 0;
}

.reconnect-synthesis-stat-card {
  min-height: 82px;
  padding: 14px 12px 12px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d9dde2;
  border-right: 0;
}

.reconnect-synthesis-stats > [class*=col-]:last-child .reconnect-synthesis-stat-card {
  border-right: 1px solid #d9dde2;
}

.reconnect-synthesis-stat-card__number {
  margin-bottom: 7px;
  color: #e86f3c;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.reconnect-synthesis-stat-card__label {
  color: #121820;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.reconnect-synthesis-stat-card__caption {
  margin-top: 2px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.reconnect-synthesis-section {
  margin-bottom: 20px;
}

.reconnect-synthesis-section--last {
  margin-bottom: 0;
}

.reconnect-synthesis-inline-text {
  margin: 8px 0 0;
  color: #334155;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.reconnect-synthesis-pattern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.reconnect-pattern-card--summary {
  min-height: 120px;
  padding: 18px;
}
.reconnect-pattern-card--summary .reconnect-pattern-card__icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}
.reconnect-pattern-card--summary .reconnect-pattern-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}
.reconnect-pattern-card--summary .reconnect-pattern-card__observe-text {
  font-size: 11px;
  line-height: 1.45;
  padding: 9px 12px;
}

@media (max-width: 768px) {
  .reconnect-synthesis-page {
    max-width: 100%;
    padding: 0 16px;
  }
  .reconnect-dark-panel--hero {
    padding: 24px 22px;
  }
  .reconnect-dark-panel--statement {
    padding: 20px 22px;
  }
  .reconnect-synthesis-stats {
    max-width: 100%;
  }
  .reconnect-synthesis-pattern-grid {
    grid-template-columns: 1fr;
  }
  .reconnect-synthesis-stat-card {
    border-right: 1px solid #d9dde2;
  }
  .reconnect-synthesis-stats > [class*=col-]:nth-child(1) .reconnect-synthesis-stat-card,
  .reconnect-synthesis-stats > [class*=col-]:nth-child(2) .reconnect-synthesis-stat-card {
    border-bottom: 0;
  }
}
.reconnect-synthesis-shell .section-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 10px;
}
.reconnect-synthesis-shell .section-divider span {
  display: inline-block;
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.reconnect-synthesis-shell .section-divider::after {
  content: "";
  display: block;
  height: 1px;
  flex: 1 1 auto;
  background: #aeb4ba;
}

.guided-chat-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  min-height: 200px;
  padding: 32px;
  border-radius: 4px;
}

/* Header background colors */
.guided-chat-hero--fog {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 18% 34%, rgba(216, 120, 69, 0.2) 0%, rgba(216, 120, 69, 0.1) 24%, rgba(216, 120, 69, 0.035) 42%, rgba(216, 120, 69, 0) 62%), radial-gradient(circle at 74% 58%, rgba(216, 120, 69, 0.16) 0%, rgba(216, 120, 69, 0.08) 24%, rgba(216, 120, 69, 0.025) 42%, rgba(216, 120, 69, 0) 62%), linear-gradient(90deg, #141516 0%, #151718 34%, #1a1818 58%, #2b201c 78%, #56362b 100%);
}

/* FOG hero layout */
.guided-chat-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.guided-chat-hero__identity {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
}

.guided-chat-hero__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.guided-chat-hero__eyebrow {
  margin-bottom: 6px;
  color: #d87845;
  font-family: "Motiva Sans", sans-serif;
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guided-chat-hero__title {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 26px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.guided-chat-hero__subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.guided-chat-hero__summary {
  width: 100%;
  max-width: 1120px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guided-chat-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.guided-chat-hero__tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 12px;
  border: 1px solid rgba(216, 120, 69, 0.78);
  border-radius: 999px;
  background: rgba(216, 120, 69, 0.08);
  color: #d87845;
  font-family: "Motiva Sans", sans-serif;
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Header icon circle */
.guided-chat-accent {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 1rem;
  color: #ffffff;
}

.guided-chat-accent--fog {
  width: 64px;
  height: 64px;
  padding: 0;
  border-color: rgba(216, 120, 69, 0.82);
  background: rgba(216, 120, 69, 0.08);
}

.guided-chat-accent--fog span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.guided-chat-accent--fog svg {
  width: 32px;
  height: 32px;
}

.guided-chat-accent--fog svg path {
  stroke: #ffffff;
}

/* Active text */
.guided-chat-active {
  padding-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.guided-chat-active--fog {
  margin-top: 4px;
  color: #79d26b;
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* =========================================
   OBSERVE THEME ONLY
   Does not affect FOG
========================================= */
.guided-chat-hero--observe {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  padding: 32px;
  border-radius: 4px;
  background: radial-gradient(circle at 18% 34%, rgba(42, 80, 128, 0.2) 0%, rgba(42, 80, 128, 0.1) 24%, rgba(42, 80, 128, 0.035) 42%, rgba(42, 80, 128, 0) 62%), radial-gradient(circle at 74% 58%, rgba(75, 139, 190, 0.18) 0%, rgba(75, 139, 190, 0.09) 24%, rgba(75, 139, 190, 0.03) 42%, rgba(75, 139, 190, 0) 62%), linear-gradient(90deg, #111315 0%, #111820 30%, #132232 58%, #16334d 78%, #204c73 100%);
}

.guided-chat-hero--observe .guided-chat-hero__eyebrow {
  color: #7fb3e6;
}

.guided-chat-accent--observe {
  width: 64px;
  height: 64px;
  padding: 0;
  border-color: rgba(127, 179, 230, 0.78);
  background: rgba(127, 179, 230, 0.1);
}

.guided-chat-accent--observe span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.guided-chat-accent--observe svg {
  width: 32px;
  height: 32px;
}

.guided-chat-accent--observe svg path {
  stroke: #ffffff;
}

.guided-chat-active--observe {
  color: #7fb3e6;
}

.guided-chat-hero--observe .guided-chat-hero__tag {
  border: 1px solid rgba(127, 179, 230, 0.72);
  background: rgba(127, 179, 230, 0.08);
  color: #7fb3e6;
}

.guided-chat-intro-icon--reconnect {
  color: #108b38;
  border: 1px solid #108b38;
  background: rgba(16, 139, 56, 0.1);
}

/* Send button colors */
.guided-chat-send--fog {
  background: #e46f3d;
  border-color: #e46f3d;
  color: #ffffff;
}

.guided-chat-send--observe {
  background: #2a5080;
  border-color: #2a5080;
  color: #ffffff;
}

.guided-chat-send--reconnect {
  background: #108b38;
  border-color: #108b38;
  color: #ffffff;
}

.guided-chat-send--fog:hover,
.guided-chat-send--fog:focus {
  background: #d96232;
  border-color: #d96232;
  color: #ffffff;
}

.guided-chat-send--observe:hover,
.guided-chat-send--observe:focus {
  background: #24466f;
  border-color: #24466f;
  color: #ffffff;
}

.guided-chat-send--reconnect:hover,
.guided-chat-send--reconnect:focus {
  background: #0d7830;
  border-color: #0d7830;
  color: #ffffff;
}

.guided-chat-send--fog:disabled,
.guided-chat-send--observe:disabled,
.guided-chat-send--reconnect:disabled {
  opacity: 0.65;
  color: #ffffff;
}

/* Keeps the send icon button square and aligned */
.guided-chat-send--fog,
.guided-chat-send--observe,
.guided-chat-send--reconnect {
  min-width: 42px;
  min-height: 38px;
  font-weight: 700;
}

.guided-chat-send--observe {
  background: #2a5080;
  border-color: #2a5080;
  color: #ffffff;
}

.guided-chat-send--reconnect {
  background: #108b38;
  border-color: #108b38;
  color: #ffffff;
}

.guided-chat-send--fog:hover,
.guided-chat-send--fog:focus {
  background: #d96232;
  border-color: #d96232;
  color: #ffffff;
}

.guided-chat-send--observe:hover,
.guided-chat-send--observe:focus {
  background: #24466f;
  border-color: #24466f;
  color: #ffffff;
}

.guided-chat-send--reconnect:hover,
.guided-chat-send--reconnect:focus {
  background: #0d7830;
  border-color: #0d7830;
  color: #ffffff;
}

.guided-chat-send--fog:disabled,
.guided-chat-send--observe:disabled,
.guided-chat-send--reconnect:disabled {
  opacity: 0.65;
  color: #ffffff;
}

/* Optional: keeps the send icon button square and aligned */
.guided-chat-send--fog,
.guided-chat-send--observe,
.guided-chat-send--reconnect {
  min-width: 42px;
  min-height: 38px;
  font-weight: 700;
}

.reconnect-insights-shell .app-layout__content,
.reconnect-insights-shell .app-layout-content,
.reconnect-insights-shell .app-layout-body,
.reconnect-insights-shell .module-content,
.reconnect-insights-shell .reconnect-module-content {
  background: #f4f1ec;
}

.reconnect-insights-page {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 32px 0 36px;
}

.reconnect-insights-main-card {
  margin-bottom: 22px;
}

.reconnect-insights-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.reconnect-insights-title {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.reconnect-insights-title span {
  color: #e86f3c;
}

.reconnect-insights-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reconnect-insights-auto-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: #202124;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.reconnect-insights-regenerate-btn {
  border: 1px solid #2f343b;
  border-radius: 4px;
  padding: 7px 12px;
  background: #ffffff;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.phase-insights-editor {
  position: relative;
}

.phase-insights-editor__card {
  position: relative;
  padding: 20px 22px;
  border: 1px solid #dfe5df;
  border-radius: 4px;
  background: #f6fff5;
}

.phase-insights-editor__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.phase-insights-editor__eyebrow {
  margin-bottom: 10px;
  color: #293241;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase-insights-editor__title {
  max-width: 760px;
  margin: 0;
  color: #17202a;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.phase-insights-editor__title span {
  color: #e86f3c;
}

.phase-insights-editor__edit-btn {
  min-width: 64px;
  border: 1px solid #aab0b8;
  border-radius: 4px;
  padding: 7px 12px;
  background: #ffffff;
  color: #27313d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.phase-insights-editor__summary {
  max-width: 820px;
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.phase-insights-editor__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.phase-insights-editor__tags span {
  border: 1px solid #b8e0bd;
  border-radius: 999px;
  padding: 4px 10px;
  background: #e8f7e9;
  color: #157a32;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.phase-insights-editor__sparkle {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: #f4a083;
  font-size: 22px;
  line-height: 1;
}

.phase-insights-editor__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(3px);
}

.phase-insights-editor__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  width: min(420px, 92vw);
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid #e5e7eb;
  box-shadow: -18px 0 40px rgba(15, 23, 42, 0.18);
}

.phase-insights-editor__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.phase-insights-editor__drawer-title {
  color: #111827;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase-insights-editor__drawer-close {
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 22px;
  line-height: 1;
}

.phase-insights-editor__drawer-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px;
}

.phase-insights-editor__textarea {
  flex: 1;
  min-height: 260px;
  resize: none;
  color: #111827;
  font-size: 13px;
  line-height: 1.6;
}

.phase-insights-editor__word-count {
  margin-top: 8px;
  text-align: right;
  color: #6b7280;
  font-size: 10px;
}

.phase-insights-editor__drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
}

.phase-insights-editor__cancel {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #9ca3af;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.phase-insights-editor__save {
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.phase-insights-editor__save:hover {
  background: #020617;
  color: #ffffff;
}

.guided-chat-hero {
  width: 100%;
  border-radius: 4px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  min-height: 84px;
}

.guided-chat-hero--reconnect {
  background: radial-gradient(circle at 82% 45%, rgba(0, 116, 42, 0.75) 0%, rgba(0, 78, 31, 0.45) 28%, rgba(11, 19, 25, 0) 58%), linear-gradient(90deg, #101820 0%, #111a20 48%, #0d3b20 100%);
  color: #ffffff;
  box-shadow: none;
}

.guided-chat-hero--reconnect::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.guided-chat-hero__left {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.guided-chat-hero__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #138a35;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.guided-chat-hero__icon svg,
.guided-chat-hero__icon i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #ffffff;
}

.guided-chat-hero__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guided-chat-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.guided-chat-hero__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.guided-chat-hero__subtitle span,
.guided-chat-hero__subtitle strong {
  color: #40c463;
  font-weight: 700;
}

.guided-chat-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
  margin-left: auto;
}

.guided-chat-hero__link {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

.guided-chat-hero__link:hover,
.guided-chat-hero__link:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

.guided-chat-hero__link i {
  font-size: 13px;
  line-height: 1;
}

.reconnect-commitments-panel {
  padding: 28px 32px;
  border-radius: 4px;
  color: #ffffff;
  background: linear-gradient(110deg, #101820 0%, #0d1918 42%, #083f1e 100%);
}

.reconnect-commitments-content {
  width: 100%;
}

.reconnect-commitments-panel h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reconnect-commitments-subtitle {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.6;
}

.reconnect-commitments-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.reconnect-commitment-item h4 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.reconnect-commitment-item p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.6;
}

.reconnect-commitment-frequency {
  display: inline-flex;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(122, 226, 144, 0.18);
  color: #b9f7c4;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.reconnect-commitments-empty {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.reconnect-add-commitment {
  margin-top: 14px;
}
.reconnect-add-commitment .section-divider span {
  color: rgba(255, 255, 255, 0.72);
}
.reconnect-add-commitment .section-divider::after {
  background: rgba(255, 255, 255, 0.35);
}

.reconnect-add-commitment-input {
  margin-top: 14px;
  min-height: 96px;
  resize: none;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
  font-size: 12px;
}

.reconnect-add-commitment-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.reconnect-add-commitment-count {
  margin-top: 6px;
  text-align: right;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.reconnect-insights-shell .app-footer,
.reconnect-insights-shell .app-layout-footer {
  background: #ffffff;
  border-top: 1px solid #e4e1dc;
}
.reconnect-insights-shell .btn-primary,
.reconnect-insights-shell .continue-button {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.reconnect-insights-shell .btn-secondary,
.reconnect-insights-shell .back-button {
  background: #ffffff;
  border-color: #d1d5db;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .reconnect-insights-page {
    width: min(100%, 860px);
    padding: 28px 24px 36px;
  }
}
@media (max-width: 768px) {
  .reconnect-insights-page {
    width: 100%;
    padding: 24px 16px 32px;
  }
  .reconnect-insights-topbar,
  .phase-insights-editor__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .reconnect-commitments-panel {
    padding: 24px 20px;
  }
}
.journey-tool-card--disabled {
  position: relative;
  background: #f3f1ed;
  border-color: #ded8cf;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.journey-tool-card--disabled .journey-tool-card__icon,
.journey-tool-card--disabled h4,
.journey-tool-card--disabled p {
  opacity: 0.42;
  filter: grayscale(1);
}

.journey-tool-card--disabled .journey-tool-card__icon {
  background: #efede8;
  border-color: #d8d2c8;
}

.journey-tool-card--disabled h4 {
  color: #7d7a74;
}

.journey-tool-card--disabled p {
  color: #9a948c;
}

.journey-tool-card__status {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e5e0d8;
  color: #7c746b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.fog-traveller-card__audio-speed {
  min-width: 34px;
  height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(242, 119, 65, 0.65);
  border-radius: 999px;
  background: rgba(242, 119, 65, 0.08);
  color: #f07b3f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.fog-traveller-card__audio-speed:hover {
  background: rgba(242, 119, 65, 0.16);
  border-color: rgba(242, 119, 65, 0.9);
  color: #ff8a4a;
}

.fog-traveller-card__audio-speed:active {
  transform: scale(0.96);
}

.fog-traveller-card__audio-speed:focus {
  outline: none;
}

.fog-traveller-card__audio-speed:focus-visible {
  outline: 2px solid rgba(242, 119, 65, 0.55);
  outline-offset: 3px;
}

.fog-traveller-card__audio-shell {
  position: relative;
}

.fog-traveller-card__audio-play,
.fog-traveller-card__audio-speed,
.fog-traveller-card__audio-progress {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.fog-traveller-card__audio-progress {
  cursor: pointer;
}

.fog-traveller-card__audio-progress-fill,
.fog-traveller-card__audio-label,
.fog-traveller-card__audio-wave,
.fog-traveller-card__audio-wave span,
.fog-traveller-card__audio-end,
.fog-traveller-card__audio-time {
  pointer-events: none;
}

.observe {
  background: #f7f5f1;
}

/* Section scale */
.observe .observe-process-section,
.observe .observe-pattern-section {
  max-width: 1280px;
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Divider: lighter and cleaner */
.observe .section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
}

.observe .section-divider span {
  color: #6f7e8f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.observe .section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(111, 126, 143, 0.45);
}

/* Description under divider */
.observe .observe-section-description {
  max-width: 1120px;
  margin: 0 0 26px;
  color: #728091;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

/* =========================================================
   Five Step Process Cards
========================================================= */
.observe .observe-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

/* THIS is the important fix:
   padding-top: 32px gives visible top breathing space above 01 */
.observe .observe-process-card {
  min-height: 150px;
  padding: 32px 16px 18px !important;
  border: 1px solid #ece8e3;
  border-radius: 8px;
  background: #faf9f7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.observe .observe-process-card:hover {
  transform: translateY(-1px);
  border-color: #e5ddd4;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}

.observe .observe-process-card__number {
  display: block;
  margin: 0 0 14px !important;
  color: #a6aab1;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.observe .observe-process-card__title {
  margin: 0 0 7px !important;
  color: #26384c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.observe .observe-process-card__text {
  margin: 0 !important;
  color: #6f7f90;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

/* =========================================================
   Four Pattern Area Cards
========================================================= */
.observe .observe-pattern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

/* Top space above icon also fixed here */
.observe .observe-pattern-card {
  min-height: 160px;
  padding: 28px 16px 18px !important;
  border: 1px solid #dcecf3;
  border-radius: 8px;
  background: #f4fbff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.observe .observe-pattern-card:hover {
  transform: translateY(-1px);
  border-color: #cfe4ee;
  background: #f7fcff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}

.observe .observe-pattern-card__icon {
  display: block;
  margin: 0 0 14px !important;
  font-size: 28px;
  line-height: 1;
}

.observe .observe-pattern-card__title {
  margin: 0 0 7px !important;
  color: #26384c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.observe .observe-pattern-card__text {
  min-height: 48px;
  margin: 0 0 12px !important;
  color: #6f7f90;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.observe .observe-pattern-card__action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #e17843;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.observe .observe-pattern-card__action::after {
  content: "›";
  font-size: 14px;
  line-height: 1;
}

/* States */
.observe .observe-pattern-card.is-completed {
  border-color: #cfe3d4;
  background: #f3fbf5;
}

.observe .observe-pattern-card.is-progress {
  border-color: #f0ddb3;
  background: #fff9eb;
}

.observe .observe-pattern-card__action.is-completed-text {
  color: #23834f;
  font-weight: 600;
}

.observe .observe-pattern-card__action.is-completed-text::after {
  content: "";
}

.observe .observe-pattern-card__action.is-progress-text {
  color: #b57a23;
  font-weight: 600;
}

.observe .observe-pattern-card__action.is-progress-text::after {
  content: "";
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1199px) {
  .observe .observe-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .observe .observe-pattern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .observe .observe-process-section,
  .observe .observe-pattern-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .observe .observe-process-grid,
  .observe .observe-pattern-grid {
    grid-template-columns: 1fr;
  }
  .observe .section-divider {
    gap: 10px;
    margin-bottom: 14px;
  }
  .observe .section-divider span {
    font-size: 10px;
  }
  .observe .observe-section-description {
    font-size: 12px;
    line-height: 1.5;
  }
}
/* =========================================================
   Observe Boundaries Section
========================================================= */
.observe .observe-boundaries-section {
  max-width: 1280px;
  padding-top: 22px;
  padding-bottom: 18px;
}

.observe .observe-boundaries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.observe .observe-boundary-card {
  border: 1px solid #e8e3dc;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.observe .observe-boundary-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 10px 14px;
  border-bottom: 1px solid #efeae4;
}

.observe .observe-boundary-card__header-icon {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.observe .observe-boundary-card__header-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.observe .observe-boundary-card--negative .observe-boundary-card__header {
  background: #f9ece9;
  color: #c84b42;
}

.observe .observe-boundary-card--positive .observe-boundary-card__header {
  background: #edf7ef;
  color: #2f944b;
}

.observe .observe-boundary-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.observe .observe-boundary-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #f3f0eb;
  color: #5f6f82;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.observe .observe-boundary-card__list li:last-child {
  border-bottom: 0;
}

.observe .observe-boundary-card__bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1px;
}

.observe .observe-boundary-card--negative .observe-boundary-card__bullet {
  color: #c84b42;
}

.observe .observe-boundary-card--positive .observe-boundary-card__bullet {
  color: #2f944b;
}

@media (max-width: 991px) {
  .observe .observe-boundaries-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .observe .observe-boundaries-section {
    padding-top: 18px;
    padding-bottom: 14px;
  }
  .observe .observe-boundaries-grid {
    gap: 14px;
    margin-top: 10px;
  }
  .observe .observe-boundary-card__header {
    padding: 10px 12px;
  }
  .observe .observe-boundary-card__list li {
    padding: 12px 14px;
    font-size: 12px;
  }
}
.observe .section1 {
  min-height: 118px;
  padding: 28px 32px 26px !important;
  background: radial-gradient(circle at 72% 50%, rgba(26, 54, 88, 0.95) 0%, rgba(19, 31, 45, 0.98) 38%, #111820 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.observe.reconnect-intro .section1 {
  min-height: 118px;
  padding: 28px 32px 26px !important;
  background: radial-gradient(circle at 68% 48%, rgba(82, 173, 102, 0.42) 0%, rgba(34, 139, 74, 0.3) 16%, rgba(16, 86, 45, 0.18) 30%, rgba(0, 0, 0, 0) 48%), linear-gradient(90deg, #111820 0%, #0d171b 22%, #0f2018 48%, #0d171b 74%, #111820 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.observe .section1 > div {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  align-items: center !important;
}

.observe .section1 .top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px !important;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.observe .section1 .top::before {
  content: "O";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #d97948;
  border-radius: 50%;
  color: #d97948;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.observe .section1 .title {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.observe .section1 .title span {
  color: #e87745 !important;
}

.observe .section1 .description {
  max-width: 930px;
  margin-top: 8px !important;
  margin-bottom: 0;
  color: rgba(214, 222, 231, 0.62);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.observe .section1 .rounded-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 25px;
  padding: 0 10px !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  color: rgba(255, 255, 255, 0.82) !important;
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.observe .section1 .rounded-pill::before {
  content: "◷";
  font-size: 11px;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .observe .section1 {
    padding: 24px 20px !important;
  }
  .observe .section1 > div {
    align-items: flex-start !important;
  }
  .observe .section1 .title {
    font-size: 28px;
  }
  .observe .section1 .description {
    font-size: 12px;
  }
}
/* ================================
   RECONNECT INTRO OVERRIDES
   Only affects:
   <div class="observe reconnect-intro ...">
   ================================ */
.observe.reconnect-intro {
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
}

/* Hero section size + green background */
.observe.reconnect-intro .section1 {
  min-height: 170px;
  padding: 26px 32px 24px !important;
  background: radial-gradient(circle at 72% 50%, rgba(22, 101, 52, 0.78) 0%, rgba(8, 76, 35, 0.92) 38%, #111820 100%) !important;
}

/* Reconnect hero inner width */
.observe.reconnect-intro .section1 > div {
  max-width: 1120px;
}

/* Change hero circle from O to R */
.observe.reconnect-intro .section1 .top::before {
  content: "R";
}

/* Keep hero text compact like Figma */
.observe.reconnect-intro .section1 .title {
  font-size: 30px;
}

.observe.reconnect-intro .section1 .description {
  max-width: 900px;
  font-size: 12px;
}

/* Overview spacing */
.observe.reconnect-intro .section2 {
  padding: 28px 32px 22px !important;
}

.observe.reconnect-intro .section2 p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}

/* Video size like reference */
.observe.reconnect-intro .section2 video {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 4px;
  background: #111820;
}

/* Green insight box */
.observe.reconnect-intro .box-text {
  border: 1px solid #22c55e;
  background: #f0fdf4;
  color: #0f172a;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
}

/* Reconnect green text inside overview */
.observe.reconnect-intro .section2 .text-warning {
  color: #15803d !important;
}

/* =========================================================
   Observe Footer - Figma Match
========================================================= */
.observe .observe-footer {
  max-width: 1280px;
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  border-top: 1px solid rgba(95, 111, 130, 0.16);
}

.observe .observe-footer__button {
  min-width: 230px;
  height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 3px;
  background: #d96f3f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.observe .observe-footer__button:hover:not(:disabled) {
  background: #c96135;
  transform: translateY(-1px);
}

.observe .observe-footer__button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.observe .observe-footer__helper {
  color: #5f6f82;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .observe .observe-footer {
    padding-top: 22px;
    padding-bottom: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .observe .observe-footer__button {
    width: 100%;
    min-width: 0;
  }
}
/* =========================================================
   App Layout Shell
========================================================= */
.app-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f7f5f1;
}

.app-layout__main {
  flex: 1 1 auto;
  background: #f7f5f1;
}

.app-layout__content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 40px 42px;
}

/* =========================================================
   App Header / Hero
========================================================= */
.app-header {
  flex: 0 0 auto;
}

.app-header__hero {
  min-height: 136px;
  background: radial-gradient(circle at 72% 45%, rgba(28, 58, 92, 0.95) 0%, rgba(18, 31, 45, 0.98) 38%, #111820 100%);
  color: #ffffff;
}

.app-header__hero-inner {
  max-width: 1180px;
  min-height: 136px;
  margin: 0 auto;
  padding: 30px 40px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.app-header__copy {
  min-width: 0;
}

.app-header__phase-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 12px;
  border: 1px solid #e87745;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 32, 0.25);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-header__title {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.app-header__back-link {
  margin-top: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.app-header__back-link:hover {
  color: #ffffff;
}

/* =========================================================
   App Footer
========================================================= */
.app-footer {
  flex: 0 0 auto;
  border-top: 1px solid #d8d8d8;
  background: #f8f8f8;
}

.app-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.app-footer__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.app-footer__button {
  min-width: 96px;
  height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.app-footer__button--back {
  background: #c9c9cc;
  color: #273242;
}

.app-footer__button--continue {
  background: #df7543;
  color: #ffffff;
}

.app-footer__button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.app-footer__button--back:hover:not(:disabled) {
  background: #bdbdc1;
}

.app-footer__button--continue:hover:not(:disabled) {
  background: #cc6638;
}

.app-footer__button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 991px) {
  .app-layout__content {
    padding: 28px 24px 36px;
  }
  .app-header__hero-inner {
    padding: 28px 24px;
  }
  .app-footer__inner {
    padding: 16px 24px;
  }
}
@media (max-width: 767px) {
  .app-layout__content {
    padding: 24px 18px 32px;
  }
  .app-header__hero-inner {
    min-height: 128px;
    padding: 24px 18px;
    flex-direction: column;
    gap: 16px;
  }
  .app-header__title {
    font-size: 28px;
  }
  .app-header__back-link {
    margin-top: 0;
  }
  .app-footer__inner {
    padding: 14px 18px;
  }
  .app-footer__actions {
    width: 100%;
    justify-content: flex-end;
    gap: 12px;
  }
  .app-footer__button {
    min-width: 88px;
    height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }
}
/* =========================================================
   Observe Overview Section - Figma Match
   This fixes the text + video block below the hero
========================================================= */
.observe .section2 {
  max-width: 1280px;
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.observe .section2 .row {
  align-items: center;
}

.observe .section2 p {
  margin: 0 0 18px;
  color: #1f2d3d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

.observe .section2 p strong {
  font-weight: 700;
}

.observe .section2 .text-warning {
  color: #e87745 !important;
  font-weight: 500;
}

.observe .box-text {
  max-width: 600px;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid #ef7f45;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.38);
  color: #26384c;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0;
}

.observe .box-text > div:first-child {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1.3;
}

.observe .section2 video {
  display: block;
  width: 100%;
  max-height: 270px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  background: linear-gradient(90deg, #1b334f 0%, #151a1f 100%);
  box-shadow: none;
}

/* Prevent native video controls from making the layout feel oversized */
.observe .section2 .col-md-6:last-child {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .observe .section2 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .observe .section2 p {
    font-size: 13px;
    line-height: 1.6;
  }
  .observe .box-text {
    font-size: 12px;
  }
  .observe .section2 video {
    max-height: 240px;
  }
}
@media (max-width: 767px) {
  .observe .section2 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .observe .section2 video {
    margin-top: 10px;
  }
}
/* ================================
   Reusable Section Divider
================================ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}

.section-divider span {
  color: #647386;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #9f9f9f;
}

/* =========================================================
   Fellow Traveller Preview Card - Final Figma Match
========================================================= */
.ft-preview-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid #eee9e2;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
}

.ft-preview-card__inner {
  height: 100%;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
}

/* ===============================
   Header
================================ */
.ft-preview-card__header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 12px;
  row-gap: 6px;
  margin-bottom: 8px;
}

.ft-preview-card__avatar-wrap,
.ft-preview-card__avatar,
.ft-preview-card__avatar-fallback {
  width: 48px;
  height: 48px;
}

.ft-preview-card__avatar {
  display: block;
  object-fit: cover;
  border-radius: 2px;
}

.ft-preview-card__avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: #647386;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.ft-preview-card__identity {
  min-width: 0;
  padding-top: 1px;
}

.ft-preview-card__name {
  margin: 0 0 4px;
  color: #102236;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.04em;
}

.ft-preview-card__meta {
  max-width: 260px;
  color: #667589;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

.ft-preview-card__status {
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 10px;
  border: 1px solid #70c879;
  border-radius: 999px;
  background: #f3fbf4;
  color: #119d35;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===============================
   Orange Badge
================================ */
.ft-preview-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin: 2px 0 10px 60px;
  padding: 5px 10px;
  border: 1px solid #ef7f45;
  border-radius: 999px;
  background: #fff8f4;
  color: #ef6f38;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.ft-preview-card__badge-icon,
.ft-preview-card__badge span:first-child {
  font-size: 10px;
  line-height: 1;
}

/* ===============================
   Quote
================================ */
.ft-preview-card__quote {
  margin: 0 0 10px;
  padding: 11px 12px 11px 13px;
  border-left: 4px solid #ef7f45;
  background: #faebe5;
  color: #657486;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

/* ===============================
   Tags
================================ */
.ft-preview-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.ft-preview-card__tags span {
  padding: 3px 8px;
  border: 1px solid #d8dce0;
  border-radius: 999px;
  background: #f0f1f2;
  color: #8a9097;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}

/* ===============================
   Audio
================================ */
.ft-preview-audio {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 3px;
  background: linear-gradient(90deg, #3d211d 0%, #101823 100%);
  overflow: hidden;
}

.ft-preview-audio__native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ft-preview-audio__play {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 2px solid #ef7f45;
  border-radius: 50%;
  background: transparent;
  color: #ef7f45;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ft-preview-audio__main {
  flex: 1;
  min-width: 0;
}

.ft-preview-audio__row {
  display: grid;
  grid-template-columns: 32px minmax(70px, 1fr) 40px 34px 34px;
  align-items: center;
  gap: 8px;
}

.ft-preview-audio__time,
.ft-preview-audio__duration {
  color: #ef7f45;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.ft-preview-audio__duration {
  color: #dfe6ef;
  text-align: right;
}

.ft-preview-audio__range {
  width: 100%;
  height: 14px;
  cursor: pointer;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.ft-preview-audio__range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(239, 127, 69, 0.35);
}

.ft-preview-audio__range::-webkit-slider-thumb {
  width: 10px;
  height: 10px;
  margin-top: -3px;
  border: 0;
  border-radius: 50%;
  background: #ef7f45;
  appearance: none;
  -webkit-appearance: none;
}

.ft-preview-audio__speed {
  height: 28px;
  min-width: 40px;
  border: 1px solid #ef7f45;
  border-radius: 999px;
  background: transparent;
  color: #ef7f45;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.ft-preview-audio__wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.ft-preview-audio__wave span {
  width: 3px;
  height: 9px;
  border-radius: 999px;
  background: #ef7f45;
  opacity: 0.45;
}

.ft-preview-audio__wave span:nth-child(2),
.ft-preview-audio__wave span:nth-child(6) {
  height: 13px;
}

.ft-preview-audio__wave span:nth-child(3),
.ft-preview-audio__wave span:nth-child(5) {
  height: 16px;
}

.ft-preview-audio__label {
  margin-top: 4px;
  color: rgba(223, 230, 239, 0.88);
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
}

/* ===============================
   Reflection Link
================================ */
.ft-preview-card__link {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ef7f45;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 1199px) {
  .ft-preview-card__inner {
    padding: 16px;
  }
  .ft-preview-card__header {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    column-gap: 10px;
  }
  .ft-preview-card__avatar-wrap,
  .ft-preview-card__avatar,
  .ft-preview-card__avatar-fallback {
    width: 44px;
    height: 44px;
  }
  .ft-preview-card__name {
    font-size: 14px;
  }
  .ft-preview-card__meta {
    font-size: 10px;
  }
  .ft-preview-card__status {
    min-height: 20px;
    padding: 0 8px;
    font-size: 7px;
  }
  .ft-preview-card__badge {
    margin-left: 54px;
  }
  .ft-preview-audio__row {
    grid-template-columns: 30px minmax(60px, 1fr) 38px 30px;
  }
  .ft-preview-audio__wave {
    display: none;
  }
}
@media (max-width: 767px) {
  .ft-preview-card__header {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 10px;
  }
  .ft-preview-card__status {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }
  .ft-preview-card__badge {
    margin-left: 54px;
  }
  .ft-preview-audio__row {
    grid-template-columns: 30px minmax(70px, 1fr) 38px;
  }
  .ft-preview-audio__duration,
  .ft-preview-audio__wave {
    display: none;
  }
}
/* =========================================================
   OBSERVE SELECTABLE GRID - FINAL PRODUCTION SYSTEM
   Used by Notice / Trace / Embody / Connect
========================================================= */
.observe-step-page .selectable-grid {
  width: 100%;
  margin: 0 !important;
}

.observe-step-page .selectable-grid__grid {
  display: grid !important;
  margin: 0 !important;
}

.observe-step-page .observe-option-col {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
}

/* =========================================================
   Common option base
========================================================= */
.observe-step-page .observe-option-card {
  width: 100%;
  border: 1px solid #d5dde5 !important;
  background: #fbfcfd !important;
  color: #5d6f84 !important;
  text-align: center;
  cursor: pointer;
  user-select: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.observe-step-page .observe-option-card:hover {
  border-color: #d96f3f !important;
  background: #fffaf6 !important;
  color: #d96f3f !important;
  transform: translateY(-1px);
}

.observe-step-page .observe-option-card.is-selected,
.observe-step-page .observe-option-card[aria-pressed=true] {
  border-color: #d96f3f !important;
  background: #fff3ed !important;
  color: #d96f3f !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 10px rgba(217, 111, 63, 0.14) !important;
}

.observe-step-page .observe-option-card:focus,
.observe-step-page .observe-option-card:focus-visible {
  outline: none;
  border-color: #d96f3f !important;
  box-shadow: 0 0 0 3px rgba(217, 111, 63, 0.14) !important;
}

/* =========================================================
   Text
========================================================= */
.observe-step-page .selectable-grid__title {
  display: block;
  color: inherit;
  line-height: 1.2;
}

.observe-step-page .selectable-grid__description {
  display: block;
  color: #7b8794;
  font-weight: 400;
}

/* =========================================================
   Icons / Emojis
========================================================= */
.observe-step-page .observe-option-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.observe-step-page .observe-option-icon--image {
  object-fit: contain;
}

.observe-step-page .observe-option-icon--emoji {
  line-height: 1;
}

/* =========================================================
   PILL LAYOUT
   Used by Notice + Connect
========================================================= */
.observe-step-page .selectable-grid--pill .selectable-grid__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.observe-step-page .observe-option-card--pill {
  min-height: 34px;
  padding: 0 14px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.01em;
}

.observe-step-page .observe-option-card--pill .selectable-grid__description,
.observe-step-page .observe-option-card--pill .observe-option-icon {
  display: none !important;
}

/* =========================================================
   TILE LAYOUT
   Used by Trace
========================================================= */
.observe-step-page .selectable-grid--tile .selectable-grid__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.observe-step-page .observe-option-card--tile {
  min-height: 94px;
  padding: 14px 14px !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  color: #202b37 !important;
  flex-direction: column !important;
  gap: 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.observe-step-page .observe-option-card--tile .observe-option-icon--image {
  width: 34px !important;
  height: 34px !important;
}

.observe-step-page .observe-option-card--tile .observe-option-icon--emoji {
  font-size: 34px !important;
}

.observe-step-page .observe-option-card--tile .selectable-grid__title {
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  max-width: 220px;
}

.observe-step-page .observe-option-card--tile .selectable-grid__description {
  display: none !important;
}

/* =========================================================
   BODY LAYOUT
   Used by Embody
========================================================= */
.observe-step-page .selectable-grid--body .selectable-grid__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.observe-step-page .observe-option-card--body {
  min-height: 118px;
  padding: 18px 18px !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #5d6f84 !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 7px !important;
  text-align: left !important;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.04) !important;
}

.observe-step-page .observe-option-card--body .selectable-grid__title {
  color: #111827;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2;
}

.observe-step-page .observe-option-card--body .selectable-grid__description {
  margin-top: 0;
  color: #6b7b90;
  font-size: 13px !important;
  line-height: 1.35;
}

.observe-step-page .observe-option-card--body.is-selected .selectable-grid__title,
.observe-step-page .observe-option-card--body[aria-pressed=true] .selectable-grid__title {
  color: #d96f3f !important;
}

.observe-step-page .observe-option-card--body .observe-option-icon--image {
  width: 30px !important;
  height: 30px !important;
}

.observe-step-page .observe-option-card--body .observe-option-icon--emoji {
  font-size: 30px !important;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1199px) {
  .observe-step-page .selectable-grid--pill .selectable-grid__grid,
  .observe-step-page .selectable-grid--tile .selectable-grid__grid,
  .observe-step-page .selectable-grid--body .selectable-grid__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 767px) {
  .observe-step-page .selectable-grid--pill .selectable-grid__grid,
  .observe-step-page .selectable-grid--tile .selectable-grid__grid,
  .observe-step-page .selectable-grid--body .selectable-grid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  .observe-step-page .observe-option-card--pill {
    min-height: 36px;
    font-size: 12px !important;
  }
  .observe-step-page .observe-option-card--tile {
    min-height: 88px;
    padding: 12px !important;
  }
  .observe-step-page .observe-option-card--body {
    min-height: 108px;
    padding: 16px !important;
  }
  .observe-step-page .observe-option-card--body .selectable-grid__title {
    font-size: 15px !important;
  }
  .observe-step-page .observe-option-card--body .selectable-grid__description {
    font-size: 12px !important;
  }
}
/* Active/current phase only */
.journey-sidebar__phase.is-active,
.journey-sidebar__phase.is-open {
  background: #df7543;
  color: #ffffff;
}

/* Active phase circle */
.journey-sidebar__phase.is-active .journey-sidebar__phase-icon,
.journey-sidebar__phase.is-open .journey-sidebar__phase-icon {
  background: #ffffff;
  color: #df7543;
}

/* Active phase text */
.journey-sidebar__phase.is-active .journey-sidebar__phase-name,
.journey-sidebar__phase.is-open .journey-sidebar__phase-name,
.journey-sidebar__phase.is-active .journey-sidebar__phase-subtitle,
.journey-sidebar__phase.is-open .journey-sidebar__phase-subtitle {
  color: #ffffff;
}

/* Active/open badge */
.journey-sidebar__phase.is-active .journey-sidebar__phase-badge.is-open,
.journey-sidebar__phase.is-open .journey-sidebar__phase-badge.is-open {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 0;
}

/* Default active phase - keep existing behavior */
.phase-card.active,
.phase-item.active {
  background: #f97316;
  color: #ffffff;
}

/* RECONNECT active phase */
.phase-card.active.phase-reconnect,
.phase-item.active.phase-reconnect,
.phase-card.is-active.phase-reconnect,
.phase-item.is-active.phase-reconnect {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

/* RECONNECT icon circle */
.phase-card.active.phase-reconnect .phase-icon,
.phase-item.active.phase-reconnect .phase-icon,
.phase-card.is-active.phase-reconnect .phase-icon,
.phase-item.is-active.phase-reconnect .phase-icon {
  background: #ffffff;
  color: #16a34a;
}

/* RECONNECT status badge */
.phase-card.active.phase-reconnect .phase-status,
.phase-item.active.phase-reconnect .phase-status,
.phase-card.is-active.phase-reconnect .phase-status,
.phase-item.is-active.phase-reconnect .phase-status {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.observe.reconnect-intro .section1 {
  background: radial-gradient(circle at 72% 50%, rgba(22, 101, 52, 0.75) 0%, rgba(13, 72, 38, 0.95) 38%, #111820 100%) !important;
}

.observe.reconnect-intro .observe-footer__button {
  background: #16a34a;
  border: 1px solid #16a34a;
  color: #ffffff;
}

.observe.reconnect-intro .observe-footer__button:hover {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
}

.observe.reconnect-intro .observe-footer__button:focus {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.18);
}

.observe.reconnect-intro .observe-footer__button:disabled {
  background: #86d19b;
  border-color: #86d19b;
  color: #ffffff;
  opacity: 1;
}

/* ================================
   FOG INTRO FOOTER
   ================================ */
.fog-intro-page__footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 32px 34px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.fog-intro-page__begin-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 36px;
  border: 0;
  border-radius: 4px;
  background: #081321;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  transition: transform 0.08s ease, box-shadow 0.14s ease;
}

.fog-intro-page__begin-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #e87745 0%, #f28d5b 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.14s ease-out;
}

.fog-intro-page__begin-btn:hover::before,
.fog-intro-page__begin-btn:focus-visible::before {
  transform: scaleX(1);
}

.fog-intro-page__begin-btn:hover {
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(232, 119, 69, 0.18);
}

.fog-intro-page__begin-btn:focus-visible {
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(232, 119, 69, 0.24);
}

.fog-intro-page__begin-btn:active {
  transform: translateY(1px);
}

.fog-intro-page__begin-btn:disabled,
.fog-intro-page__begin-btn:disabled:hover,
.fog-intro-page__begin-btn:disabled:focus-visible {
  background: #9ca3af;
  color: #ffffff;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 1;
}

.fog-intro-page__begin-btn:disabled::before {
  display: none;
}

.fog-intro-page__footer-copy {
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .fog-intro-page__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px 20px 30px;
  }
  .fog-intro-page__begin-btn {
    width: 100%;
    min-height: 44px;
    padding: 0 20px;
  }
  .fog-intro-page__footer-copy {
    font-size: 12px;
  }
}
/* ================================
   OBSERVE TRACE STEP CARDS
   Exact fix for Trace only
   ================================ */
.observe-step-page .selectable-grid__grid {
  width: 100%;
}

/* Trace grid: 3 cards per row like Figma */
.observe-step-page .selectable-grid__grid:has(.observe-trace-col) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* Trace column wrapper */
.observe-step-page .observe-trace-col {
  width: 100%;
  min-width: 0;
}

/* Actual Trace card button */
.observe-step-page .observe-trace-card {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 112px;
  padding: 20px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 3px;
  background: #ffffff;
  color: #111827;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  transition: border-color 0.14s ease, background-color 0.14s ease, box-shadow 0.14s ease, transform 0.1s ease;
}

.observe-step-page .observe-trace-card:hover {
  border-color: rgba(232, 119, 69, 0.45);
  background: #fffaf7;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.observe-step-page .observe-trace-card.is-selected,
.observe-step-page .observe-trace-card[aria-pressed=true] {
  border-color: #e87745;
  background: #fff3ec;
  box-shadow: inset 0 0 0 1px rgba(232, 119, 69, 0.35);
}

/* Trace image icons */
.observe-step-page .observe-trace-card .observe-option-icon--image {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

/* Trace emoji icons */
.observe-step-page .observe-trace-card .observe-option-icon--emoji {
  width: auto;
  height: auto;
  font-size: 42px;
  line-height: 1;
}

/* Trace title */
.observe-step-page .observe-trace-card .selectable-grid__title {
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

/* Trace description, if any */
.observe-step-page .observe-trace-card .selectable-grid__description {
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

/* Tablet */
@media (max-width: 991px) {
  .observe-step-page .selectable-grid__grid:has(.observe-trace-col) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Mobile */
@media (max-width: 575px) {
  .observe-step-page .selectable-grid__grid:has(.observe-trace-col) {
    grid-template-columns: 1fr;
  }
  .observe-step-page .observe-trace-card {
    min-height: 96px;
    padding: 16px 12px;
  }
}
/* ================================
   OBSERVE EMBODY STEP
   Uses existing class:
   observe-option-card--body
   No C# change needed
   ================================ */
.observe-step-page .selectable-grid__grid:has(.observe-option-card--body) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.observe-step-page .selectable-grid__grid:has(.observe-option-card--body) .observe-option-col {
  width: 100%;
  min-width: 0;
}

.observe-step-page .observe-option-card--body {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 86px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 6px;
  background: #ffffff;
  color: #111827;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 0.14s ease, background-color 0.14s ease, box-shadow 0.14s ease, transform 0.1s ease;
}

.observe-step-page .observe-option-card--body:hover {
  border-color: rgba(232, 119, 69, 0.45);
  background: #fffaf7;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.observe-step-page .observe-option-card--body.is-selected,
.observe-step-page .observe-option-card--body[aria-pressed=true] {
  border-color: #e87745;
  background: #fff3ec;
  box-shadow: inset 0 0 0 1px rgba(232, 119, 69, 0.35);
}

.observe-step-page .observe-option-card--body .selectable-grid__title {
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.observe-step-page .observe-option-card--body .selectable-grid__description {
  color: #64748b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .observe-step-page .selectable-grid__grid:has(.observe-option-card--body) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .observe-step-page .selectable-grid__grid:has(.observe-option-card--body) {
    grid-template-columns: 1fr;
  }
  .observe-step-page .observe-option-card--body {
    min-height: 78px;
  }
}
/* =========================================
   OBSERVE - COMMON PILL OPTION CARDS
   For Notice / Connect style options
   Uses existing class:
   observe-option-card observe-option-card--pill
   ========================================= */
/* Layout for groups that contain pill cards */
.observe-step-page .selectable-grid__grid:has(.observe-option-card--pill) {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 18px;
  width: 100%;
}

/* Keep wrapper clean */
.observe-step-page .selectable-grid__grid:has(.observe-option-card--pill) > .observe-option-col {
  width: 100%;
  min-width: 0;
}

/* Pill card */
.observe-step-page .observe-option-card--pill {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6dee8;
  border-radius: 999px;
  background: #ffffff;
  color: #5f7592;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.1s ease;
}

/* Hover */
.observe-step-page .observe-option-card--pill:hover {
  border-color: rgba(232, 119, 69, 0.45);
  background: #fffaf7;
  color: #365678;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
  transform: translateY(-1px);
}

/* Selected */
.observe-step-page .observe-option-card--pill.is-selected,
.observe-step-page .observe-option-card--pill[aria-pressed=true] {
  border-color: #e87745;
  background: #fff4ee;
  color: #e87745;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(232, 119, 69, 0.1);
}

/* If title span exists inside */
.observe-step-page .observe-option-card--pill .selectable-grid__title {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* Hide extra description in pill look unless needed */
.observe-step-page .observe-option-card--pill .selectable-grid__description {
  display: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .observe-step-page .selectable-grid__grid:has(.observe-option-card--pill) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 992px) {
  .observe-step-page .selectable-grid__grid:has(.observe-option-card--pill) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .observe-step-page .selectable-grid__grid:has(.observe-option-card--pill) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .observe-step-page .observe-option-card--pill {
    min-height: 48px;
    padding: 10px 14px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .observe-step-page .selectable-grid__grid:has(.observe-option-card--pill) {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   Reconnect Module 1 Grounding Feeling Grid
   Classes are passed from RecalibrationReconnect:
   ColumnClass = reconnect-feeling-col
   CardClass   = reconnect-feeling-card
   ========================================================= */
.selectable-grid__grid:has(.reconnect-feeling-col) {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  max-width: 860px;
  margin-top: 16px;
}

.reconnect-feeling-col {
  width: auto !important;
  max-width: none !important;
  flex: unset !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

.reconnect-feeling-card {
  width: 100% !important;
  height: 78px !important;
  min-height: 78px !important;
  padding: 14px 12px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #ffffff !important;
  border: 1px solid rgba(17, 24, 39, 0.06) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #111827 !important;
  text-align: center !important;
  cursor: pointer !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.reconnect-feeling-card:hover {
  border-color: rgba(214, 105, 55, 0.45) !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05) !important;
}

.reconnect-feeling-card.selected,
.reconnect-feeling-card.active,
.reconnect-feeling-card.is-selected,
.reconnect-feeling-card[aria-pressed=true] {
  background: #fff7f2 !important;
  border-color: #d66937 !important;
  box-shadow: 0 0 0 1px rgba(214, 105, 55, 0.18) !important;
}

.reconnect-feeling-card img,
.reconnect-feeling-card svg {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.reconnect-feeling-card .selectable-grid__icon,
.reconnect-feeling-card .option-icon,
.reconnect-feeling-card .card-icon {
  width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  font-size: 30px !important;
  line-height: 1 !important;
}

.reconnect-feeling-card .selectable-grid__title,
.reconnect-feeling-card .selectable-grid__label,
.reconnect-feeling-card .option-title,
.reconnect-feeling-card .option-label,
.reconnect-feeling-card span,
.reconnect-feeling-card p {
  margin: 0 !important;
  color: #111827 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.reconnect-feeling-card .selectable-grid__description,
.reconnect-feeling-card .option-description {
  display: none !important;
}

@media (max-width: 991px) {
  .selectable-grid__grid:has(.reconnect-feeling-col) {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px) {
  .selectable-grid__grid:has(.reconnect-feeling-col) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* =========================================================
   RECONNECT MODULE 1 - FINAL BALANCED FIGMA FIX
   Scope: content area only
   Does NOT change:
   - top app header
   - footer
   - dark hero/banner
   - shared stepper visuals
   ========================================================= */
/* =========================================================
   0. Remove big gap between hero and stepper
   ========================================================= */
.reconnect-module-shell .app-layout__main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.reconnect-module-shell .app-layout__content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.reconnect-module-shell .step-progress {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
  padding-top: 12px !important;
  padding-bottom: 10px !important;
}

/* =========================================================
   RECONNECT MODULE 1 - VALUES RECALIBRATION FINAL CSS
   Scope:
   - Does NOT touch top header
   - Does NOT touch footer
   - Does NOT touch hero content
   - Only fixes Reconnect Module 1 content after hero/stepper
   ========================================================= */
/* =========================================================
   0. Remove gap between hero and stepper only for this module
   ========================================================= */
.reconnect-module-shell .app-layout__main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.reconnect-module-shell .app-layout__content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.reconnect-module-shell .step-progress {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
  padding: 14px 0 !important;
}

/* =========================================================
   1. Shared compact StepHeader for Module 1 steps
   Applies to Step 1 and Step 2
   ========================================================= */
.reconnect-grounding-step,
.reconnect-review-step,
.reconnect-dynamic-step {
  padding: 0 0 18px !important;
}

.reconnect-grounding-step .step-header,
.reconnect-review-step .step-header,
.reconnect-dynamic-step .step-header {
  margin: 0 0 16px !important;
  padding: 0 !important;
}

.reconnect-grounding-step .step-header__phase-title,
.reconnect-grounding-step .step-header__eyebrow,
.reconnect-review-step .step-header__phase-title,
.reconnect-review-step .step-header__eyebrow,
.reconnect-dynamic-step .step-header__phase-title,
.reconnect-dynamic-step .step-header__eyebrow {
  margin: 0 0 8px !important;
  color: #d66d43 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.reconnect-grounding-step .step-header__main-title,
.reconnect-grounding-step .step-header__title,
.reconnect-review-step .step-header__main-title,
.reconnect-review-step .step-header__title,
.reconnect-dynamic-step .step-header__main-title,
.reconnect-dynamic-step .step-header__title {
  margin: 0 0 10px !important;
  color: #111827 !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

.reconnect-grounding-step .step-header__main-title .text-orange-600,
.reconnect-grounding-step .step-header__title .text-orange-600,
.reconnect-review-step .step-header__main-title .text-orange-600,
.reconnect-review-step .step-header__title .text-orange-600,
.reconnect-dynamic-step .step-header__main-title .text-orange-600,
.reconnect-dynamic-step .step-header__title .text-orange-600 {
  color: #d66d43 !important;
}

.reconnect-grounding-step .step-header__description,
.reconnect-review-step .step-header__description,
.reconnect-dynamic-step .step-header__description {
  max-width: 980px !important;
  margin: 0 !important;
  color: #667085 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0 !important;
}

/* =========================================================
   2. Step 1 - Breathing card
   ========================================================= */
.reconnect-grounding-step__breathing {
  margin: 16px 0 16px !important;
}

.reconnect-grounding-step__breathing .fog-nyc-exercise__breathing-card {
  width: 100% !important;
  min-height: 152px !important;
  margin: 0 !important;
  padding: 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  background: #fcfcfc !important;
  border: 1px solid #e7dfd9 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  overflow: hidden !important;
  text-align: left !important;
}

.reconnect-grounding-step__breathing .fog-nyc-exercise__breathing-orb-wrap {
  width: 140px !important;
  min-width: 140px !important;
  height: 112px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.reconnect-grounding-step__breathing .fog-nyc-exercise__breathing-orb {
  width: 108px !important;
  height: 108px !important;
  position: relative !important;
}

.reconnect-grounding-step__breathing .fog-nyc-exercise__orb-ring {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 50% !important;
  background: transparent !important;
}

.reconnect-grounding-step__breathing .fog-nyc-exercise__orb-ring--outer {
  width: 108px !important;
  height: 108px !important;
  border: 1.5px solid #df7445 !important;
}

.reconnect-grounding-step__breathing .fog-nyc-exercise__orb-ring--inner {
  width: 82px !important;
  height: 82px !important;
  border: 1.5px solid #e2bfa8 !important;
}

.reconnect-grounding-step__breathing .fog-nyc-exercise__orb-core {
  width: 18px !important;
  height: 18px !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: #dfc8ba !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

.reconnect-grounding-step__breathing .fog-nyc-exercise__breathing-copy {
  flex: 1 !important;
  max-width: 760px !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: left !important;
}

.reconnect-grounding-step__breathing .fog-nyc-exercise__breathing-phase {
  margin: 0 0 8px !important;
  color: #d66d43 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.reconnect-grounding-step__breathing .fog-nyc-exercise__breathing-text {
  margin: 0 !important;
  color: #667085 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

/* =========================================================
   3. Green helper callout for Step 1 and Step 2
   ========================================================= */
.reconnect-grounding-step__helper,
.reconnect-review-step__helper {
  margin: 0 0 16px !important;
}

.reconnect-grounding-step__helper .helper-text-block,
.reconnect-review-step__helper .helper-text-block {
  width: 100% !important;
  margin: 0 !important;
  padding: 16px 18px !important;
  display: block !important;
  background: #e7f2e8 !important;
  border-left: 5px solid #22a447 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #17251d !important;
}

.reconnect-grounding-step__helper .helper-text-block__label,
.reconnect-review-step__helper .helper-text-block__label {
  display: none !important;
}

.reconnect-grounding-step__helper .helper-text-block__text,
.reconnect-review-step__helper .helper-text-block__text {
  display: block !important;
  margin: 0 !important;
  color: #17251d !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
}

/* =========================================================
   4. Step 1 - Feeling question heading
   ========================================================= */
.reconnect-grounding-step__feeling-grid {
  margin: 14px 0 18px !important;
}

.reconnect-grounding-step__feeling-grid .selectable-grid {
  width: 100% !important;
}

.reconnect-grounding-step__feeling-grid .section-divider,
.reconnect-grounding-step__feeling-grid .selectable-grid__section-header {
  margin: 0 0 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.reconnect-grounding-step__feeling-grid .section-divider__title,
.reconnect-grounding-step__feeling-grid .section-divider h3,
.reconnect-grounding-step__feeling-grid .selectable-grid__section-header h3 {
  margin: 0 !important;
  color: #233044 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.reconnect-grounding-step__feeling-grid .section-divider__line,
.reconnect-grounding-step__feeling-grid .section-divider hr,
.reconnect-grounding-step__feeling-grid .selectable-grid__section-header span {
  flex: 1 !important;
  height: 1px !important;
  border: 0 !important;
  background: #b7bec6 !important;
}

/* =========================================================
   5. Step 1 - Feeling cards
   ========================================================= */
.reconnect-grounding-step__feeling-grid .selectable-grid__grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 1042px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: stretch !important;
}

.reconnect-grounding-step__feeling-grid .reconnect-feeling-col {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: none !important;
  flex-basis: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

.reconnect-grounding-step__feeling-grid .reconnect-feeling-card {
  width: 100% !important;
  min-width: 0 !important;
  height: 96px !important;
  min-height: 96px !important;
  padding: 14px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: #ffffff !important;
  border: 1px solid #eceef0 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #111827 !important;
  text-align: center !important;
  cursor: pointer !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
}

.reconnect-grounding-step__feeling-grid .reconnect-feeling-card:hover {
  border-color: rgba(214, 109, 67, 0.55) !important;
}

.reconnect-grounding-step__feeling-grid .reconnect-feeling-card.selected,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card.active,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card.is-selected,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card[aria-pressed=true] {
  background: #fff7f2 !important;
  border-color: #d66d43 !important;
  box-shadow: 0 0 0 1px rgba(214, 109, 67, 0.18) !important;
}

.reconnect-grounding-step__feeling-grid .reconnect-feeling-card img,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card svg {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.reconnect-grounding-step__feeling-grid .reconnect-feeling-card span,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card p,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card .selectable-grid__title,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card .selectable-grid__label,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card .option-title,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card .option-label {
  margin: 0 !important;
  padding: 0 !important;
  color: #111827 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

.reconnect-grounding-step__feeling-grid .reconnect-feeling-card .selectable-grid__description,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card .option-description,
.reconnect-grounding-step__feeling-grid .reconnect-feeling-card small {
  display: none !important;
}

/* =========================================================
   7. Responsive
   ========================================================= */
@media (max-width: 640px) {
  .reconnect-grounding-step .step-header__main-title,
  .reconnect-grounding-step .step-header__title,
  .reconnect-review-step .step-header__main-title,
  .reconnect-review-step .step-header__title,
  .reconnect-dynamic-step .step-header__main-title,
  .reconnect-dynamic-step .step-header__title {
    font-size: 21px !important;
  }
  .reconnect-grounding-step__breathing .fog-nyc-exercise__breathing-card {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .reconnect-grounding-step__feeling-grid .selectable-grid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* =========================================================
   Reconnect Module 1 - Step 3 Recalibrate Value Pills
   Only styles the selectable value options.
   No green helper box.
   ========================================================= */
/* Keep Step 3 helper text normal/plain, not green */
.reconnect-dynamic-step .helper-text-block {
  margin: 0 0 20px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block !important;
}

.reconnect-dynamic-step .helper-text-block__label {
  display: none !important;
}

.reconnect-dynamic-step .helper-text-block__text {
  display: block !important;
  color: #667085 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* Step 3 selectable grid */
.reconnect-dynamic-step .selectable-grid {
  width: 100% !important;
  margin-top: 22px !important;
}

/* 5-column Figma-style value grid */
.reconnect-dynamic-step .selectable-grid__grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  column-gap: 28px !important;
  row-gap: 14px !important;
  width: 100% !important;
  max-width: 1042px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Column wrapper */
.reconnect-dynamic-step .reconnect-value-col {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: none !important;
  flex-basis: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

/* Pill button */
.reconnect-dynamic-step .reconnect-value-pill {
  width: 100% !important;
  min-height: 34px !important;
  height: 34px !important;
  padding: 8px 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid #d8dce2 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  color: #6b7280 !important;
  text-align: center !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.reconnect-dynamic-step .reconnect-value-pill:hover {
  background: #fafafa !important;
  border-color: #c5cbd3 !important;
  color: #374151 !important;
}

/* Selected state */
.reconnect-dynamic-step .reconnect-value-pill.selected,
.reconnect-dynamic-step .reconnect-value-pill.active,
.reconnect-dynamic-step .reconnect-value-pill.is-selected,
.reconnect-dynamic-step .reconnect-value-pill[aria-pressed=true] {
  background: #fff7f2 !important;
  border-color: #d66d43 !important;
  color: #d66d43 !important;
  box-shadow: 0 0 0 1px rgba(214, 109, 67, 0.16) !important;
}

/* Remove any unwanted description/subtext inside pills */
.reconnect-dynamic-step .reconnect-value-pill small,
.reconnect-dynamic-step .reconnect-value-pill .selectable-grid__description,
.reconnect-dynamic-step .reconnect-value-pill .option-description {
  display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .reconnect-dynamic-step .selectable-grid__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 991.98px) {
  .reconnect-dynamic-step .selectable-grid__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 16px !important;
  }
}
@media (max-width: 640px) {
  .reconnect-dynamic-step .selectable-grid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* =========================================================
   Reconnect-only StepProgress theme
   Matches Reconnect green Figma strip.
   Does not affect Fog / Observe.
   ========================================================= */
/* Full StepProgress background strip */
.reconnect-module-shell .step-progress--named {
  background: #eef8ef !important;
  border-bottom: 1px solid #dcefe0 !important;
}

/* Completed circle */
.reconnect-module-shell .step-progress--named .step-progress__item--completed .step-progress__circle {
  background: #071120 !important;
  border-color: #071120 !important;
  color: #ffffff !important;
}

/* Completed label */
.reconnect-module-shell .step-progress--named .step-progress__item--completed .step-progress__label {
  color: #071120 !important;
  font-weight: 700 !important;
}

/* Completed line */
.reconnect-module-shell .step-progress--named .step-progress__line--completed {
  background: #8fa99a !important;
}

/* Active circle */
.reconnect-module-shell .step-progress--named .step-progress__item--active .step-progress__circle {
  background: #071120 !important;
  border-color: #071120 !important;
  color: #ffffff !important;
}

/* Active label */
.reconnect-module-shell .step-progress--named .step-progress__item--active .step-progress__label {
  color: #071120 !important;
  font-weight: 700 !important;
}

/* Upcoming circle */
.reconnect-module-shell .step-progress--named .step-progress__item--upcoming .step-progress__circle {
  background: #eef8ef !important;
  border-color: #cbd8cf !important;
  color: #9aa7a0 !important;
}

/* Upcoming label */
.reconnect-module-shell .step-progress--named .step-progress__item--upcoming .step-progress__label {
  color: #98a49d !important;
  font-weight: 600 !important;
}

/* Upcoming line */
.reconnect-module-shell .step-progress--named .step-progress__line--upcoming {
  background: #b8c7bf !important;
}

/* =========================================================
   Reconnect Module 1 - Step 4 Reflection
   Scoped only to Reconnect.
   Does not affect Fog / Observe.
   ========================================================= */
.reconnect-module-shell .reconnect-reflection-step {
  padding-bottom: 24px;
}

/* Step 4 intro / description spacing */
.reconnect-module-shell .reconnect-reflection-step .step-header,
.reconnect-module-shell .reconnect-reflection-step .dynamic-step__header {
  margin-bottom: 18px;
}

/* GREEN HELPER BLOCK */
.reconnect-module-shell .reconnect-reflection-step .helper-text-block {
  margin: 0 0 18px;
  padding: 18px 20px;
  background: #e5efe8;
  border-left: 5px solid #17963f;
  border-radius: 4px;
  box-shadow: none;
}

.reconnect-module-shell .reconnect-reflection-step .helper-text-block__label {
  display: none;
}

.reconnect-module-shell .reconnect-reflection-step .helper-text-block__text {
  display: block;
  margin: 0;
  color: #17251d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

/* REFLECTION TEXTAREA BLOCK */
.reconnect-module-shell .reconnect-reflection-step .text-area-block,
.reconnect-module-shell .reconnect-reflection-step .textarea-block {
  margin-top: 0;
  margin-bottom: 22px;
}

.reconnect-module-shell .reconnect-reflection-step .text-area-block__title,
.reconnect-module-shell .reconnect-reflection-step .textarea-block__title {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* actual textarea */
.reconnect-module-shell .reconnect-reflection-step textarea,
.reconnect-module-shell .reconnect-reflection-step .text-area-block__control,
.reconnect-module-shell .reconnect-reflection-step .textarea-block__control {
  width: 100%;
  min-height: 128px;
  padding: 16px 18px;
  border: 1px solid #d7dce3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  color: #111827;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  resize: vertical;
  outline: none;
}

.reconnect-module-shell .reconnect-reflection-step textarea::placeholder,
.reconnect-module-shell .reconnect-reflection-step .text-area-block__control::placeholder,
.reconnect-module-shell .reconnect-reflection-step .textarea-block__control::placeholder {
  color: #a4acb8;
}

.reconnect-module-shell .reconnect-reflection-step textarea:focus,
.reconnect-module-shell .reconnect-reflection-step .text-area-block__control:focus,
.reconnect-module-shell .reconnect-reflection-step .textarea-block__control:focus {
  border-color: #c4ccd7;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

/* Optional word count if present */
.reconnect-module-shell .reconnect-reflection-step .text-area-block__count,
.reconnect-module-shell .reconnect-reflection-step .textarea-block__count {
  margin-top: 6px;
  text-align: right;
  color: #98a2b3;
  font-size: 11px;
  line-height: 1.2;
}

/* TAG SECTION */
.reconnect-module-shell .reconnect-reflection-step .selectable-grid {
  margin-top: 20px;
}

.reconnect-module-shell .reconnect-reflection-step .selectable-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 14px;
  max-width: 760px;
}

/* If your group title is "TAG THIS ENTRY" */
.reconnect-module-shell .reconnect-reflection-step .selectable-grid .section-divider,
.reconnect-module-shell .reconnect-reflection-step .selectable-grid__section-title,
.reconnect-module-shell .reconnect-reflection-step .section-divider {
  margin-bottom: 14px;
}

.reconnect-module-shell .reconnect-reflection-step .section-divider__title,
.reconnect-module-shell .reconnect-reflection-step .selectable-grid__section-title-text,
.reconnect-module-shell .reconnect-reflection-step .section-divider {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Tag column wrapper */
.reconnect-module-shell .reconnect-reflection-step .reconnect-tag-col {
  min-width: 0;
}

/* Tag pill */
.reconnect-module-shell .reconnect-reflection-step .reconnect-tag-pill {
  width: 100%;
  min-height: 38px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #d8dde3;
  border-radius: 999px;
  box-shadow: none;
  color: #7a808b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  transition: all 0.18s ease;
  cursor: pointer;
}

.reconnect-module-shell .reconnect-reflection-step .reconnect-tag-pill:hover {
  background: #fafafa;
  border-color: #c9d0d8;
  color: #4b5563;
}

/* selected tag */
.reconnect-module-shell .reconnect-reflection-step .reconnect-tag-pill.selected,
.reconnect-module-shell .reconnect-reflection-step .reconnect-tag-pill.active,
.reconnect-module-shell .reconnect-reflection-step .reconnect-tag-pill.is-selected,
.reconnect-module-shell .reconnect-reflection-step .reconnect-tag-pill[aria-pressed=true] {
  background: #fff7f2;
  border-color: #d66d43;
  color: #d66d43;
  box-shadow: 0 0 0 1px rgba(214, 109, 67, 0.12);
}

/* Responsive */
@media (max-width: 991.98px) {
  .reconnect-module-shell .reconnect-reflection-step .selectable-grid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .reconnect-module-shell .reconnect-reflection-step .selectable-grid__grid {
    grid-template-columns: 1fr;
  }
  .reconnect-module-shell .reconnect-reflection-step textarea,
  .reconnect-module-shell .reconnect-reflection-step .text-area-block__control,
  .reconnect-module-shell .reconnect-reflection-step .textarea-block__control {
    min-height: 112px;
  }
}
/* =========================================================
   Reconnect Module 1 - Step 4 Reflection Helper Callout
   Only affects Step 4.
   ========================================================= */
.reconnect-module-shell .reconnect-reflection-step .helper-text-block {
  width: 100% !important;
  margin: 22px 0 20px !important;
  padding: 18px 22px !important;
  display: block !important;
  background: #e5efe8 !important;
  border-left: 5px solid #17963f !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

.reconnect-module-shell .reconnect-reflection-step .helper-text-block__label {
  display: none !important;
}

.reconnect-module-shell .reconnect-reflection-step .helper-text-block__text {
  display: block !important;
  margin: 0 !important;
  color: #17251d !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
  letter-spacing: 0.01em !important;
}

.observe-process-card.is-completed {
  background: #e7f6eb;
  border-color: #148c3d;
}

.observe-process-card.is-completed .observe-process-card__number {
  background: #148c3d;
  color: #ffffff;
}

/* ================================
   RECONNECT INTRO MODULE CARDS
   Completed card should match Figma:
   - soft green background
   - grey number
   - small green tick
   - no green number bar
   ================================ */
.observe.reconnect-intro .observe-process-section {
  padding: 28px 32px 24px;
}

.observe.reconnect-intro .observe-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.observe.reconnect-intro .observe-process-card {
  position: relative;
  min-height: 166px;
  padding: 18px 14px;
  border: 1px solid #eaecf0;
  border-radius: 8px;
  background: #f8f8f8;
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.06);
}

/* completed green card */
.observe.reconnect-intro .observe-process-card.is-completed {
  background: #f3fff6;
  border-color: #d7f2de;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.08);
}

/* IMPORTANT: removes old big green 01 bar */
.observe.reconnect-intro .observe-process-card.is-completed .observe-process-card__number {
  background: transparent !important;
  color: #9ca3af !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  display: block !important;
}

/* number style */
.observe.reconnect-intro .observe-process-card__number {
  margin-bottom: 14px;
  background: transparent;
  color: #9ca3af;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

/* title */
.observe.reconnect-intro .observe-process-card__title {
  margin: 0 0 8px;
  color: #101828;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

/* description */
.observe.reconnect-intro .observe-process-card__text {
  margin: 0;
  color: #667085;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

/* completed tick */
.observe.reconnect-intro .reconnect-process-card__tick {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid #16a34a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  background: #ffffff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

/* locked/current cards */
.observe.reconnect-intro .observe-process-card.is-locked {
  background: #f8f8f8;
  opacity: 1;
}

.observe.reconnect-intro .observe-process-card.is-progress {
  background: #ffffff;
  border-color: #e5e7eb;
}

/* mobile */
@media (max-width: 991px) {
  .observe.reconnect-intro .observe-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .observe.reconnect-intro .observe-process-section {
    padding: 24px 20px;
  }
  .observe.reconnect-intro .observe-process-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   RECONNECT MODULE SHARED LAYOUT
   Applies only inside AppLayout ShellClass="reconnect-module-shell"
   ================================ */
.reconnect-module-shell .app-layout__content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 32px;
}

.reconnect-module-page {
  width: 100%;
}

.reconnect-module-step {
  padding-top: 34px;
}

.reconnect-module-shell .step-header {
  margin-bottom: 26px;
}

.reconnect-module-shell .step-header__eyebrow {
  color: #d96f43;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reconnect-module-shell .step-header__title {
  margin-top: 8px;
  margin-bottom: 14px;
  color: #111827;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
}

.reconnect-module-shell .step-header__title .text-orange-600 {
  color: #d96f43;
}

.reconnect-module-shell .step-header__description {
  max-width: 980px;
  color: #111827;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

/* ================================
   RECONNECT BREATHING CARD
   Compact Figma-style modifier for reusable BreathingCard
   ================================ */
.reconnect-module-shell .reconnect-breathing-card {
  min-height: 128px;
  margin: 0;
  padding: 22px 30px;
  border: 1px solid #e2d8d1;
  border-radius: 4px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  box-shadow: none;
}

.reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__breathing-orb-wrap {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__breathing-orb {
  position: relative;
  width: 100px;
  height: 100px;
}

.reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__orb-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  pointer-events: none;
}

.reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__orb-ring--outer {
  inset: 0;
  border-width: 1.5px;
  border-color: #df7649;
}

.reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__orb-ring--inner {
  inset: 18px;
  border-width: 1.5px;
  border-color: #e9c2ab;
}

.reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #e7cfc2;
}

.reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__breathing-copy {
  min-width: 0;
}

.reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__breathing-phase {
  margin: 0 0 8px;
  color: #dc7042;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__breathing-text {
  max-width: 780px;
  margin: 0;
  color: #667085;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Helper text under breathing card - only for places where HelperTextBlock is rendered */
.reconnect-module-shell .helper-text-block {
  margin-top: 12px;
  color: #111827;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 991px) {
  .reconnect-module-shell .app-layout__content {
    padding: 0 22px 28px;
  }
  .reconnect-module-shell .reconnect-breathing-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
    padding: 22px 24px;
  }
  .reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__breathing-orb-wrap {
    width: 96px;
    height: 96px;
  }
  .reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__breathing-orb {
    width: 88px;
    height: 88px;
  }
  .reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__breathing-phase {
    font-size: 18px;
  }
  .reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__breathing-text {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .reconnect-module-shell .app-layout__content {
    padding: 0 16px 24px;
  }
  .reconnect-module-shell .reconnect-breathing-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px;
    text-align: left;
  }
  .reconnect-module-shell .reconnect-breathing-card .fog-nyc-exercise__breathing-orb-wrap {
    justify-content: flex-start;
  }
  .reconnect-module-shell .step-header__title {
    font-size: 28px;
  }
}
/* ================================
   RECONNECT MODULE HEADER THEME
   Applies to all pages using:
   ShellClass="reconnect-module-shell"
   ================================ */
.reconnect-module-shell .app-layout__header-region {
  background: radial-gradient(circle at 72% 50%, rgba(22, 101, 52, 0.72) 0%, rgba(12, 84, 43, 0.46) 24%, rgba(0, 0, 0, 0) 48%), linear-gradient(90deg, #111820 0%, #101820 26%, #102319 54%, #101820 78%, #111820 100%) !important;
}

/* In case AppHeader has its own inner background */
.reconnect-module-shell .app-header,
.reconnect-module-shell .app-header__hero,
.reconnect-module-shell .app-header__section,
.reconnect-module-shell .app-header__content {
  background: transparent !important;
}

/* Header title */
.reconnect-module-shell .app-header__title,
.reconnect-module-shell .app-header h1 {
  color: #ffffff !important;
}

/* Orange word inside title */
.reconnect-module-shell .app-header__title span,
.reconnect-module-shell .app-header h1 span,
.reconnect-module-shell .text-orange-600 {
  color: #e0703d !important;
}

/* Phase pill */
.reconnect-module-shell .app-header__phase-pill,
.reconnect-module-shell .phase-pill {
  border-color: #e0703d !important;
  color: #ffffff !important;
  background: transparent !important;
}

/* Right/back link */
.reconnect-module-shell .app-header__back,
.reconnect-module-shell .app-header a {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* =========================================================
   Reconnect-only StepProgress theme
   Figma:
   - completed = green
   - active = dark/navy
   - upcoming = muted
   ========================================================= */
.reconnect-module-shell .step-progress--named {
  background: #eef8ef !important;
  border-bottom: 1px solid #dcefe0 !important;
}

/* COMPLETED STEP */
.reconnect-module-shell .step-progress--named .step-progress__item--completed .step-progress__circle {
  background: #16a34a !important;
  border-color: #16a34a !important;
  color: #ffffff !important;
}

.reconnect-module-shell .step-progress--named .step-progress__item--completed .step-progress__label {
  color: #16a34a !important;
  font-weight: 700 !important;
}

.reconnect-module-shell .step-progress--named .step-progress__line--completed {
  background: #16a34a !important;
}

/* ACTIVE STEP */
.reconnect-module-shell .step-progress--named .step-progress__item--active .step-progress__circle {
  background: #071120 !important;
  border-color: #071120 !important;
  color: #ffffff !important;
}

.reconnect-module-shell .step-progress--named .step-progress__item--active .step-progress__label {
  color: #071120 !important;
  font-weight: 700 !important;
}

/* UPCOMING STEP */
.reconnect-module-shell .step-progress--named .step-progress__item--upcoming .step-progress__circle {
  background: #eef8ef !important;
  border-color: #cbd8cf !important;
  color: #9aa7a0 !important;
}

.reconnect-module-shell .step-progress--named .step-progress__item--upcoming .step-progress__label {
  color: #98a49d !important;
  font-weight: 600 !important;
}

.reconnect-module-shell .step-progress--named .step-progress__line--upcoming {
  background: #b8c7bf !important;
}

/* =========================================================
   FINAL FIX - MODULE 2 STEP 2 ASSESS CARD
   Match Figma card spacing exactly
   Only affects Step 2 Assess cards
   ========================================================= */
.reconnect-module-shell .reconnect-module-step--assess .reconnect-pattern-card {
  padding: 24px 24px 18px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06) !important;
}

/* Icon should start with proper left/top breathing space */
.reconnect-module-shell .reconnect-module-step--assess .reconnect-pattern-card__icon {
  display: block !important;
  margin: 0 0 18px !important;
  font-size: 38px !important;
  line-height: 1 !important;
}

/* Title spacing like Figma */
.reconnect-module-shell .reconnect-module-step--assess .reconnect-pattern-card__title {
  margin: 0 0 10px !important;
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
}

/* Green observed text box */
.reconnect-module-shell .reconnect-module-step--assess .reconnect-pattern-card__observe-text {
  margin: 0 0 14px !important;
  padding: 12px 14px !important;
  border-left: 4px solid #16a34a !important;
  border-radius: 5px !important;
  background: #e8f5ea !important;
  color: #111827 !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

/* Button row */
.reconnect-module-shell .reconnect-module-step--assess .reconnect-pattern-card__actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 14px !important;
}

/* Pills */
.reconnect-module-shell .reconnect-module-step--assess .reconnect-choice-pill {
  min-height: 28px !important;
  padding: 5px 15px !important;
  border: 1px solid #d6dce2 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.reconnect-module-shell .reconnect-module-step--assess .reconnect-choice-pill--selected {
  border-color: #16a34a !important;
  background: #f0fdf4 !important;
  color: #15803d !important;
  font-weight: 600 !important;
}

/* Textarea */
.reconnect-module-shell .reconnect-module-step--assess .reconnect-pattern-card__textarea {
  width: 100% !important;
  min-height: 90px !important;
  padding: 13px 14px !important;
  border: 1px solid #cfd6df !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  box-shadow: none !important;
  resize: vertical !important;
}

.reconnect-module-shell .reconnect-module-step--assess .reconnect-pattern-card__textarea::placeholder {
  color: #a7afbc !important;
  font-weight: 400 !important;
}

.reconnect-module-shell .reconnect-module-step--assess .reconnect-pattern-card__textarea:focus {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1) !important;
  outline: none !important;
}

/* =========================================================
   FINAL FIX - MODULE 2 STEP 2 + STEP 3 TWO CARD GRID
   Only fixes card layout, not card design
   ========================================================= */
.reconnect-module-shell .reconnect-module-step--assess,
.reconnect-module-shell .reconnect-module-step--decide {
  max-width: 940px !important;
  margin: 0 auto !important;
}

/* Step 2 Assess grid */
.reconnect-module-shell .reconnect-module-step--assess > .reconnect-pattern-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px 28px !important;
  width: 100% !important;
  margin-top: 28px !important;
}

/* Step 3 Decide grid */
.reconnect-module-shell .reconnect-module-step--decide > .reconnect-pattern-grid--compact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px 28px !important;
  width: 100% !important;
  margin-top: 28px !important;
}

/* Make sure each card stays inside its grid column */
.reconnect-module-shell .reconnect-module-step--assess .reconnect-pattern-card,
.reconnect-module-shell .reconnect-module-step--decide .reconnect-pattern-card {
  width: 100% !important;
  max-width: none !important;
}

/* Mobile only: one card per row */
@media (max-width: 991px) {
  .reconnect-module-shell .reconnect-module-step--assess > .reconnect-pattern-grid,
  .reconnect-module-shell .reconnect-module-step--decide > .reconnect-pattern-grid--compact {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}
.reconnect-pattern-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px 24px 20px;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06);
}

.reconnect-pattern-card__icon {
  display: block;
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1;
}

.reconnect-pattern-card--decide .reconnect-pattern-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.reconnect-pattern-card--decide .reconnect-pattern-card__icon--inline {
  margin: 0;
  font-size: 22px;
  line-height: 1;
}

.reconnect-pattern-card__title {
  margin: 0 0 10px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.reconnect-pattern-card__title--inline {
  margin: 0;
}

.reconnect-pattern-card__observe-text {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-left: 4px solid #16a34a;
  border-radius: 5px;
  background: #e8f5ea;
  color: #111827;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.reconnect-pattern-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}

.reconnect-choice-pill {
  min-height: 28px;
  padding: 5px 14px;
  border: 1px solid #d6dce2;
  border-radius: 999px;
  background: #ffffff;
  color: #6b7280;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
}

.reconnect-choice-pill--selected {
  border-color: #16a34a !important;
  background: #f0fdf4 !important;
  color: #15803d !important;
  font-weight: 600;
}

.reconnect-pattern-card__textarea {
  width: 100%;
  min-height: 90px;
  padding: 13px 14px;
  resize: vertical;
  border: 1px solid #cfd6df;
  border-radius: 4px;
  background: #ffffff;
  color: #111827;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  box-shadow: none;
}

.reconnect-pattern-card__textarea::placeholder {
  color: #a7afbc;
  font-weight: 400;
}

.reconnect-pattern-card__textarea:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
  outline: none;
}

/* =========================================================
   FINAL - MODULE 2 STEP 3 DECIDE FIGMA MATCH
   Only affects Step 3 Decide screen
   ========================================================= */
.reconnect-module-shell .reconnect-module-step--decide {
  max-width: 820px !important;
  margin: 0 auto !important;
  padding-top: 24px !important;
}

/* Header should be compact like Figma */
.reconnect-module-shell .reconnect-module-step--decide .step-header {
  margin-bottom: 28px !important;
}

.reconnect-module-shell .reconnect-module-step--decide .step-header__eyebrow,
.reconnect-module-shell .reconnect-module-step--decide .step-header__phase {
  margin-bottom: 12px !important;
  color: #e0703d !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-step--decide .step-header__title {
  margin: 0 0 14px !important;
  color: #111827 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.reconnect-module-shell .reconnect-module-step--decide .step-header__title .text-orange-600 {
  color: #e0703d !important;
}

.reconnect-module-shell .reconnect-module-step--decide .step-header__description {
  max-width: 760px !important;
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
}

/* Two cards like Figma */
.reconnect-module-shell .reconnect-module-step--decide .reconnect-pattern-grid--compact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px 24px !important;
  width: 100% !important;
  margin-top: 0 !important;
}

/* Card size like Figma */
.reconnect-module-shell .reconnect-module-step--decide .reconnect-pattern-card {
  padding: 16px 16px 14px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  box-shadow: 0 3px 10px rgba(16, 24, 40, 0.05) !important;
}

/* Icon + title row */
.reconnect-module-shell .reconnect-module-step--decide .reconnect-pattern-card__header {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
}

.reconnect-module-shell .reconnect-module-step--decide .reconnect-pattern-card__icon--inline {
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

.reconnect-module-shell .reconnect-module-step--decide .reconnect-pattern-card__title--inline {
  margin: 0 !important;
  color: #111827 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

/* Textarea like Figma */
.reconnect-module-shell .reconnect-module-step--decide .reconnect-pattern-card__textarea {
  width: 100% !important;
  min-height: 74px !important;
  padding: 10px 12px !important;
  border: 1px solid #cfd6df !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 10.5px !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
  resize: vertical !important;
}

.reconnect-module-shell .reconnect-module-step--decide .reconnect-pattern-card__textarea::placeholder {
  color: #a7afbc !important;
}

.reconnect-module-shell .reconnect-module-step--decide .reconnect-pattern-card__textarea:focus {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1) !important;
  outline: none !important;
}

/* If screen becomes narrow, go single column */
@media (max-width: 991px) {
  .reconnect-module-shell .reconnect-module-step--decide {
    max-width: 100% !important;
  }
  .reconnect-module-shell .reconnect-module-step--decide .reconnect-pattern-grid--compact {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}
/* =========================================================
   RECONNECT MODULE 2 - STEP 4 REFLECTION
   Final Figma-style layout
   Only affects Module 2 Reflection step
   ========================================================= */
.reconnect-module-shell .reconnect-module-step--reflection {
  max-width: 940px !important;
  margin: 0 auto !important;
  padding-top: 28px !important;
}

/* Header spacing */
.reconnect-module-shell .reconnect-module-step--reflection .step-header {
  margin-bottom: 24px !important;
}

/* Step label: STEP 4 OF 4 */
.reconnect-module-shell .reconnect-module-step--reflection .step-header__eyebrow,
.reconnect-module-shell .reconnect-module-step--reflection .step-header__phase {
  margin-bottom: 12px !important;
  color: #e0703d !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* Main title */
.reconnect-module-shell .reconnect-module-step--reflection .step-header__title {
  margin: 0 0 14px !important;
  color: #111827 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.reconnect-module-shell .reconnect-module-step--reflection .step-header__title .text-orange-600 {
  color: #e0703d !important;
}

/* Description */
.reconnect-module-shell .reconnect-module-step--reflection .step-header__description {
  max-width: 900px !important;
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* Green reflection prompt */
.reconnect-module-shell .reconnect-reflection-prompt {
  margin: 0 0 22px !important;
  padding: 18px 22px !important;
  border-left: 5px solid #16a34a !important;
  border-radius: 5px !important;
  background: #e8f5ea !important;
  color: #111827 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

/* Textarea wrapper */
.reconnect-module-shell .reconnect-reflection-textarea-wrap {
  margin: 0 !important;
}

/* Textarea inside TextAreaBlock */
.reconnect-module-shell .reconnect-module-step--reflection textarea {
  width: 100% !important;
  min-height: 150px !important;
  padding: 16px 18px !important;
  resize: vertical !important;
  border: 1px solid #cfd6df !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08) !important;
}

.reconnect-module-shell .reconnect-module-step--reflection textarea::placeholder {
  color: #a7afbc !important;
  font-weight: 400 !important;
}

.reconnect-module-shell .reconnect-module-step--reflection textarea:focus {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1) !important;
  outline: none !important;
}

/* Word count */
.reconnect-module-shell .reconnect-reflection-word-count {
  margin-top: 8px !important;
  text-align: right !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
}

/* Mobile */
@media (max-width: 991px) {
  .reconnect-module-shell .reconnect-module-step--reflection {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
/* =========================================================
   RECONNECT SHARED GROUNDING STEP
   Used by Module 2 Step 1, Module 3 Step 1, etc.
   Matches Figma compact grounding layout.
   ========================================================= */
.reconnect-module-shell .reconnect-module-step--grounding {
  max-width: 940px !important;
  margin: 0 auto !important;
  padding-top: 28px !important;
}

/* Step header compact like Figma */
.reconnect-module-shell .reconnect-module-step--grounding .step-header {
  margin-bottom: 26px !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .step-header__eyebrow,
.reconnect-module-shell .reconnect-module-step--grounding .step-header__phase {
  margin-bottom: 10px !important;
  color: #e0703d !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .step-header__title {
  margin: 0 0 16px !important;
  color: #071120 !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .step-header__title .text-orange-600 {
  color: #e0703d !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .step-header__description {
  max-width: 920px !important;
  margin: 0 !important;
  color: #111827 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* Breathing card compact Figma style */
.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card {
  min-height: 210px !important;
  margin: 0 !important;
  padding: 34px 42px !important;
  border: 1px solid #e2d8d1 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  display: grid !important;
  grid-template-columns: 210px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 44px !important;
  box-shadow: none !important;
}

/* Orb area */
.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-orb-wrap {
  width: 190px !important;
  height: 190px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-orb {
  position: relative !important;
  width: 170px !important;
  height: 170px !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__orb-ring {
  position: absolute !important;
  border-radius: 50% !important;
  border-style: solid !important;
  pointer-events: none !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__orb-ring--outer {
  inset: 0 !important;
  border-width: 1.5px !important;
  border-color: #df7649 !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__orb-ring--inner {
  inset: 32px !important;
  border-width: 1.5px !important;
  border-color: #e9c2ab !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__orb-core {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: #e7cfc2 !important;
}

/* Copy area */
.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-copy {
  min-width: 0 !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-phase {
  margin: 0 0 18px !important;
  color: #dc7042 !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-text {
  max-width: 650px !important;
  margin: 0 !important;
  color: #667085 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  letter-spacing: 0.02em !important;
}

/* Responsive */
@media (max-width: 991px) {
  .reconnect-module-shell .reconnect-module-step--grounding {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card {
    grid-template-columns: 150px minmax(0, 1fr) !important;
    gap: 28px !important;
    padding: 28px !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-orb-wrap {
    width: 140px !important;
    height: 140px !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-orb {
    width: 130px !important;
    height: 130px !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__orb-ring--inner {
    inset: 24px !important;
  }
}
@media (max-width: 575px) {
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 24px 20px !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-orb-wrap {
    justify-content: flex-start !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .step-header__title {
    font-size: 26px !important;
  }
}
/* =========================================================
   RECONNECT SHARED GROUNDING STEP
   Used by Module 2 Step 1, Module 3 Step 1, etc.
   Figma compact grounding layout
   ========================================================= */
.reconnect-module-shell .reconnect-module-step--grounding {
  max-width: 940px !important;
  margin: 0 auto !important;
  padding-top: 28px !important;
}

/* StepHeader spacing */
.reconnect-module-shell .reconnect-module-step--grounding .step-header {
  margin-bottom: 22px !important;
}

/* Eyebrow: STEP 1 OF 4 */
.reconnect-module-shell .reconnect-module-step--grounding .step-header__eyebrow,
.reconnect-module-shell .reconnect-module-step--grounding .step-header__phase {
  margin-bottom: 10px !important;
  color: #e0703d !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* Main title */
.reconnect-module-shell .reconnect-module-step--grounding .step-header__title {
  margin: 0 0 14px !important;
  color: #071120 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .step-header__title .text-orange-600 {
  color: #e0703d !important;
}

/* Description */
.reconnect-module-shell .reconnect-module-step--grounding .step-header__description {
  max-width: 900px !important;
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* Breathing card */
.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card {
  min-height: 150px !important;
  margin: 20px 0 0 !important;
  padding: 24px 28px !important;
  border: 1px solid #eee5df !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  display: grid !important;
  grid-template-columns: 140px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 28px !important;
  box-shadow: none !important;
}

/* Orb wrapper */
.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-orb-wrap {
  width: 120px !important;
  height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Orb */
.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-orb {
  position: relative !important;
  width: 110px !important;
  height: 110px !important;
}

/* Orb rings */
.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__orb-ring {
  position: absolute !important;
  border-radius: 50% !important;
  border-style: solid !important;
  pointer-events: none !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__orb-ring--outer {
  inset: 0 !important;
  border-width: 1.5px !important;
  border-color: #df7649 !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__orb-ring--inner {
  inset: 20px !important;
  border-width: 1.5px !important;
  border-color: #e9c2ab !important;
}

/* Orb core */
.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__orb-core {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: #e7cfc2 !important;
}

/* Text area inside breathing card */
.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-copy {
  min-width: 0 !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-phase {
  margin: 0 0 10px !important;
  color: #dc7042 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-text {
  max-width: 680px !important;
  margin: 0 !important;
  color: #667085 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* Responsive */
@media (max-width: 991px) {
  .reconnect-module-shell .reconnect-module-step--grounding {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card {
    grid-template-columns: 110px minmax(0, 1fr) !important;
    gap: 22px !important;
    padding: 22px !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-orb-wrap {
    width: 100px !important;
    height: 100px !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-orb {
    width: 96px !important;
    height: 96px !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__orb-ring--inner {
    inset: 18px !important;
  }
}
@media (max-width: 575px) {
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 22px 18px !important;
  }
  .reconnect-module-shell .reconnect-module-step--grounding .reconnect-breathing-card .fog-nyc-exercise__breathing-orb-wrap {
    justify-content: flex-start !important;
  }
}
/* =========================================================
   RECONNECT MODULE 3 - STEP 2 EXPLORE
   Figma-style SelectableGrid cards
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore {
  max-width: 940px !important;
  margin: 0 auto !important;
  padding-top: 28px !important;
}

/* Step header */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .step-header {
  margin-bottom: 24px !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .step-header__eyebrow,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .step-header__phase {
  margin-bottom: 10px !important;
  color: #e0703d !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .step-header__title {
  margin: 0 0 12px !important;
  color: #071120 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .step-header__title .text-orange-600 {
  color: #e0703d !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .step-header__description {
  max-width: 880px !important;
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* SelectableGrid spacing */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .selectable-grid {
  margin-top: 0 !important;
}

/* Bootstrap row/card spacing */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .selectable-grid__grid,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -6px !important;
  margin-right: -6px !important;
  row-gap: 12px !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .selectable-grid__grid > [class*=col-],
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .row > [class*=col-] {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

/* Option card */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card {
  width: 100% !important;
  min-height: 112px !important;
  padding: 16px 12px 14px !important;
  border: 1px solid #f1f1f1 !important;
  border-radius: 2px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card:hover {
  border-color: #d9e5dc !important;
  box-shadow: 0 3px 10px rgba(16, 24, 40, 0.04) !important;
}

/* Selected state */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card.active,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card.selected,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card.is-selected,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card[aria-pressed=true] {
  border-color: #16a34a !important;
  background: #f0fdf4 !important;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.12) !important;
}

/* Icon */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card img,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card svg {
  width: 46px !important;
  height: 46px !important;
  object-fit: contain !important;
  margin: 0 !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card .icon,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card .selectable-grid__icon {
  font-size: 42px !important;
  line-height: 1 !important;
  margin: 0 !important;
}

/* Title */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card h3,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card h4,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card .title,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card .selectable-grid__title {
  margin: 0 !important;
  color: #111827 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

/* Hide description inside cards */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card p,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card .description,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore .reconnect-neglected-card .selectable-grid__description {
  display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
  .reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--explore {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
/* =========================================================
   RECONNECT MODULE 3 - STEP 3 RECLAIM
   Figma compact style
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim {
  max-width: 940px !important;
  margin: 0 auto !important;
  padding-top: 28px !important;
}

/* Header */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim .step-header {
  margin-bottom: 22px !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim .step-header__eyebrow,
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim .step-header__phase {
  margin-bottom: 10px !important;
  color: #e0703d !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim .step-header__title {
  margin: 0 0 12px !important;
  color: #071120 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim .step-header__title .text-orange-600 {
  color: #e0703d !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim .step-header__description {
  max-width: 900px !important;
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* Green helper prompt */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim .reconnect-reflection-prompt {
  margin: 0 0 24px !important;
  padding: 16px 22px !important;
  border-left: 5px solid #16a34a !important;
  border-radius: 5px !important;
  background: #e8f5ea !important;
  color: #111827 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}

/* TextAreaBlock section title line */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim .text-area-block {
  margin-bottom: 28px !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim .text-area-block__title {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 0 0 12px !important;
  color: #64748b !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim .text-area-block__title::after {
  content: "" !important;
  flex: 1 !important;
  height: 1px !important;
  background: #c7c7c7 !important;
}

/* Textareas */
.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim textarea {
  width: 100% !important;
  min-height: 110px !important;
  padding: 15px 18px !important;
  border: 1px solid #cfd6df !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06) !important;
  resize: vertical !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim textarea::placeholder {
  color: #a7afbc !important;
  font-weight: 400 !important;
}

.reconnect-module-shell .reconnect-module-page--neglected .reconnect-module-step--reclaim textarea:focus {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1) !important;
  outline: none !important;
}

/* =========================================================
   RECONNECT MODULE 4 - BRIDGE BUILDING GROUNDING
   Matches Figma compact step 1
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--grounding {
  max-width: 940px !important;
  margin: 0 auto !important;
  padding-top: 28px !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--grounding .step-header {
  margin-bottom: 22px !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--grounding .step-header__eyebrow,
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--grounding .step-header__phase {
  margin-bottom: 10px !important;
  color: #e0703d !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--grounding .step-header__title {
  margin: 0 0 14px !important;
  color: #071120 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--grounding .step-header__title .text-orange-600 {
  color: #e0703d !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--grounding .step-header__description {
  max-width: 900px !important;
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* Breathing card compact Figma size */
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--grounding .reconnect-breathing-card {
  min-height: 150px !important;
  margin: 20px 0 14px !important;
  padding: 24px 28px !important;
  border: 1px solid #eee5df !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  display: grid !important;
  grid-template-columns: 140px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 28px !important;
  box-shadow: none !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-breathing-card .fog-nyc-exercise__breathing-orb-wrap {
  width: 120px !important;
  height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-breathing-card .fog-nyc-exercise__breathing-orb {
  position: relative !important;
  width: 110px !important;
  height: 110px !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-breathing-card .fog-nyc-exercise__orb-ring {
  position: absolute !important;
  border-radius: 50% !important;
  border-style: solid !important;
  pointer-events: none !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-breathing-card .fog-nyc-exercise__orb-ring--outer {
  inset: 0 !important;
  border-width: 1.5px !important;
  border-color: #df7649 !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-breathing-card .fog-nyc-exercise__orb-ring--inner {
  inset: 20px !important;
  border-width: 1.5px !important;
  border-color: #e9c2ab !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-breathing-card .fog-nyc-exercise__orb-core {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: #e7cfc2 !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-breathing-card .fog-nyc-exercise__breathing-phase {
  margin: 0 0 10px !important;
  color: #dc7042 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-breathing-card .fog-nyc-exercise__breathing-text {
  max-width: 680px !important;
  margin: 0 !important;
  color: #667085 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* Green grounding note */
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-bridge-grounding-prompt {
  margin: 0 !important;
  padding: 16px 20px !important;
  border-left: 5px solid #16a34a !important;
  border-radius: 3px !important;
  background: #e8f5ea !important;
  color: #111827 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

/* =========================================================
   RECONNECT MODULE 4 - STEP 2 WRITE
   Bridge statement dark panel - Figma style
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-write {
  max-width: 940px !important;
  margin: 0 auto !important;
  padding-top: 28px !important;
}

/* Step header compact */
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-write .step-header {
  margin-bottom: 24px !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-write .step-header__eyebrow,
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-write .step-header__phase {
  margin-bottom: 10px !important;
  color: #e0703d !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-write .step-header__title {
  margin: 0 0 12px !important;
  color: #071120 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-write .step-header__title .text-orange-600 {
  color: #e0703d !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-write .step-header__description {
  max-width: 900px !important;
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* Dark bridge panel */
.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel {
  margin-top: 26px !important;
  padding: 28px 32px !important;
  border-radius: 2px !important;
  background: radial-gradient(circle at 78% 38%, rgba(31, 120, 67, 0.48) 0%, rgba(12, 64, 38, 0.42) 34%, rgba(0, 0, 0, 0) 62%), linear-gradient(90deg, #101820 0%, #0d171b 38%, #0b351f 100%) !important;
  color: #ffffff !important;
}

/* Panel title */
.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__eyebrow {
  margin: 0 0 22px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* Field spacing */
.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__field {
  margin-bottom: 26px !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__field:last-child {
  margin-bottom: 0 !important;
}

/* Labels */
.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__label {
  display: block !important;
  margin: 0 0 8px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

/* Dark textarea */
.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__textarea {
  width: 100% !important;
  min-height: 96px !important;
  padding: 14px 16px !important;
  resize: vertical !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  border-radius: 3px !important;
  background: rgba(5, 22, 17, 0.34) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  box-shadow: none !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__textarea::placeholder {
  color: rgba(255, 255, 255, 0.58) !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__textarea:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12) !important;
  outline: none !important;
}

/* Word count */
.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__count {
  margin-top: 6px !important;
  text-align: right !important;
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 10px !important;
  font-weight: 400 !important;
}

/* Responsive */
@media (max-width: 991px) {
  .reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-write {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel {
    padding: 24px 22px !important;
  }
}
/* =========================================================
   BRIDGE BUILDING - MODULE 4
   Step 2 / Step 3 / Step 4 Figma styling
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-grounding,
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-write,
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-refine,
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-reflection {
  max-width: 940px;
  margin: 0 auto;
}

/* -----------------------------
   STEP HEADER spacing
   ----------------------------- */
.reconnect-module-shell .reconnect-module-page--bridge .step-header {
  margin-bottom: 22px;
}

.reconnect-module-shell .reconnect-module-page--bridge .step-header__phase,
.reconnect-module-shell .reconnect-module-page--bridge .step-header__eyebrow {
  margin-bottom: 10px;
  color: #e0713e;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reconnect-module-shell .reconnect-module-page--bridge .step-header__title {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}

.reconnect-module-shell .reconnect-module-page--bridge .step-header__title .text-orange-600 {
  color: #e0713e !important;
}

.reconnect-module-shell .reconnect-module-page--bridge .step-header__description {
  max-width: 900px;
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

/* =========================================================
   STEP 2 + STEP 3 DARK PANEL
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel {
  margin-top: 26px;
  padding: 30px 34px;
  border-radius: 4px;
  background: radial-gradient(circle at 78% 42%, rgba(24, 117, 58, 0.55) 0%, rgba(17, 80, 43, 0.42) 26%, rgba(0, 0, 0, 0) 58%), linear-gradient(90deg, #0a1624 0%, #07131d 34%, #0a381f 100%);
  box-shadow: none;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__eyebrow {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__field {
  margin-bottom: 24px;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__field:last-child {
  margin-bottom: 0;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__label {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__textarea {
  width: 100%;
  min-height: 110px;
  padding: 14px 16px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: rgba(6, 23, 18, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  box-shadow: none;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__textarea:focus {
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
  outline: none;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel__count {
  margin-top: 6px;
  text-align: right;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
}

/* =========================================================
   STEP 3 PREVIEW PANEL
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-preview {
  margin-top: 14px;
  padding: 22px 28px;
  border-radius: 4px;
  background: radial-gradient(circle at 80% 50%, rgba(24, 117, 58, 0.42) 0%, rgba(14, 70, 38, 0.34) 28%, rgba(0, 0, 0, 0) 60%), linear-gradient(90deg, #101820 0%, #0c161f 40%, #123a22 100%);
  box-shadow: none;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-preview__eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-preview__placeholder,
.reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-preview__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

/* =========================================================
   STEP 4 REFLECTION
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-reflection .helper-text-block,
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-reflection .reconnect-helper-text {
  margin: 22px 0 18px;
  padding: 20px 22px;
  border-left: 5px solid #16a34a;
  border-radius: 4px;
  background: #e6f2e7;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-reflection .text-area-block {
  margin-top: 0;
}

.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-reflection .text-area-block textarea,
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-reflection .text-area-block__textarea {
  min-height: 118px;
  border: 1px solid #d7dde5;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.05);
}

/* =========================================================
   STEP 1 BREATHING CARD
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--bridge .reconnect-breathing-card {
  margin-top: 18px;
  border: 1px solid #e5ddd6;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-grounding,
  .reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-write,
  .reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-refine,
  .reconnect-module-shell .reconnect-module-page--bridge .reconnect-module-step--bridge-reflection {
    max-width: 100%;
  }
  .reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-panel,
  .reconnect-module-shell .reconnect-module-page--bridge .bridge-statement-preview {
    padding: 22px 20px;
  }
  .reconnect-module-shell .reconnect-module-page--bridge .step-header__title {
    font-size: 22px;
  }
}
/* =========================================================
   RECONNECT MODULE 5 - STEP 4 REFLECTION FIX
   Works with Blazor child components using ::deep
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commitments-reflection {
  max-width: 860px !important;
  margin: 0 auto !important;
  padding-top: 18px !important;
}

/* Green prompt */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commitments-reflection .reconnect-reflection-prompt {
  margin-top: 18px !important;
  padding: 18px 24px !important;
  border-left: 4px solid #159447 !important;
  border-radius: 4px !important;
  background: #e8f5ec !important;
  color: #071426 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
  letter-spacing: 0.02em !important;
}

/* Textarea wrapper */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-reflection-textarea-wrap {
  margin-top: 16px !important;
}

/* IMPORTANT: TextAreaBlock is child component, so use ::deep */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-reflection-textarea-wrap ::deep textarea,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-reflection-textarea-wrap ::deep .text-area-block__field,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-reflection-textarea-wrap ::deep .textarea-block__field {
  width: 100% !important;
  min-height: 96px !important;
  height: 96px !important;
  padding: 16px 18px !important;
  border: 1px solid #d8dde3 !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08) !important;
  color: #122033 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  resize: vertical !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .reconnect-reflection-textarea-wrap ::deep textarea::placeholder,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-reflection-textarea-wrap ::deep .text-area-block__field::placeholder,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-reflection-textarea-wrap ::deep .textarea-block__field::placeholder {
  color: #9aa3ad !important;
  font-size: 12px !important;
}

/* Word count */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-reflection-word-count {
  margin-top: 6px !important;
  text-align: right !important;
  color: #6f7b8a !important;
  font-size: 11px !important;
  line-height: 16px !important;
}

/* Tags section */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags {
  margin-top: 22px !important;
}

/* IMPORTANT: SelectableGrid is child component, so use ::deep */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .selectable-grid {
  width: 100% !important;
}

/* TAG THIS ENTRY heading */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .section-divider,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .selectable-grid__section-title {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: center !important;
  column-gap: 16px !important;
  margin: 0 0 14px !important;
  color: #60728d !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 16px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .section-divider::after,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .selectable-grid__section-title::after {
  content: "" !important;
  display: block !important;
  height: 1px !important;
  background: #aeb5bd !important;
}

/* Make tags horizontal */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .selectable-grid__grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(110px, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
}

/* Remove column/default stacked behavior */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .reconnect-final-tag-col {
  width: 100% !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Pill button */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .reconnect-tag-pill {
  width: 100% !important;
  min-height: 30px !important;
  padding: 6px 16px !important;
  border: 1px solid #dde2e7 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #667281 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 16px !important;
  text-align: center !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

/* Selected pill */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .reconnect-tag-pill[aria-pressed=true],
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .reconnect-tag-pill.selected,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .reconnect-tag-pill.is-selected,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-final-tags ::deep .reconnect-tag-pill--selected {
  border-color: #159447 !important;
  background: #e8f5ec !important;
  color: #087a34 !important;
  font-weight: 700 !important;
}

/* =========================================================
   STEP 2 - COMMIT
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-block {
  padding: 22px 24px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.05) !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-block .text-area-block {
  margin-bottom: 16px !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-block textarea {
  min-height: 92px !important;
  padding: 14px 16px !important;
  border: 1px solid #cfd6df !important;
  border-radius: 5px !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  box-shadow: none !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__label {
  color: #64748b !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__options {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__options button {
  min-height: 28px !important;
  padding: 5px 14px !important;
  border: 1px solid #d6dce2 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__options button.active,
.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__options button.selected,
.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__options button.is-selected {
  border-color: #16a34a !important;
  background: #f0fdf4 !important;
  color: #15803d !important;
  font-weight: 700 !important;
}

/* =========================================================
   STEP 3 - EMBODY
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-bridge-panel {
  margin: 0 0 24px !important;
  padding: 24px 28px !important;
  border-radius: 4px !important;
  background: radial-gradient(circle at 80% 50%, rgba(24, 117, 58, 0.42) 0%, rgba(14, 70, 38, 0.34) 28%, rgba(0, 0, 0, 0) 60%), linear-gradient(90deg, #101820 0%, #0c161f 40%, #123a22 100%) !important;
  color: #ffffff !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-bridge-panel__eyebrow {
  margin: 0 0 14px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-bridge-panel__label {
  margin: 0 0 10px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-bridge-panel__text {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-embody-fields .text-area-block {
  margin-bottom: 24px !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-embody-fields textarea {
  min-height: 110px !important;
  padding: 15px 18px !important;
  border: 1px solid #cfd6df !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06) !important;
}

/* =========================================================
   STEP 4 - REFLECTION
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commitments-reflection .reconnect-reflection-prompt {
  margin: 0 0 22px !important;
  padding: 18px 22px !important;
  border-left: 5px solid #16a34a !important;
  border-radius: 5px !important;
  background: #e8f5ea !important;
  color: #111827 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commitments-reflection textarea {
  min-height: 140px !important;
  padding: 16px 18px !important;
  border: 1px solid #cfd6df !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08) !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .reconnect-tag-pill {
  border-color: #d6dce2 !important;
  color: #6b7280 !important;
  background: #ffffff !important;
  font-size: 11px !important;
  font-weight: 600 !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .reconnect-tag-pill.active,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-tag-pill.selected,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-tag-pill.is-selected,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-tag-pill[aria-pressed=true] {
  border-color: #16a34a !important;
  background: #f0fdf4 !important;
  color: #15803d !important;
}

/* Responsive */
@media (max-width: 991px) {
  .reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commitments-grounding,
  .reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commit,
  .reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--embody,
  .reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commitments-reflection {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .reconnect-module-shell .reconnect-module-page--commitments .reconnect-breathing-card {
    grid-template-columns: 1fr !important;
  }
  .reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}
/* =========================================================
   RECONNECT MODULE 5 - STEP 2 COMMIT
   Figma compact style + working frequency selection
   ========================================================= */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commit {
  max-width: 940px !important;
  margin: 0 auto !important;
  padding-top: 28px !important;
}

/* Step header */
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commit .step-header {
  margin-bottom: 28px !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commit .step-header__eyebrow,
.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commit .step-header__phase {
  margin-bottom: 10px !important;
  color: #e0703d !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commit .step-header__title {
  margin: 0 0 12px !important;
  color: #071120 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commit .step-header__title .text-orange-600 {
  color: #e0703d !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commit .step-header__description {
  max-width: 900px !important;
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* List spacing */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
}

/* No big white wrapper card */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-block {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* TextAreaBlock spacing */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-block .text-area-block {
  margin: 0 0 12px !important;
}

/* Section title + horizontal line */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-block .text-area-block__title {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 0 0 10px !important;
  color: #64748b !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-block .text-area-block__title::after {
  content: "" !important;
  flex: 1 !important;
  height: 1px !important;
  background: #c7c7c7 !important;
}

/* Textarea */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-block textarea,
.reconnect-module-shell .reconnect-module-page--commitments .commitment-block .text-area-block__textarea {
  width: 100% !important;
  min-height: 92px !important;
  padding: 14px 16px !important;
  border: 1px solid #cfd6df !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06) !important;
  resize: vertical !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-block textarea::placeholder {
  color: #a7afbc !important;
  font-weight: 400 !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-block textarea:focus {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1) !important;
  outline: none !important;
}

/* Frequency row */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-top: 10px !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__label {
  color: #64748b !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__options {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

/* Base frequency pill */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__options .commitment-frequency__button {
  min-height: 28px !important;
  padding: 5px 16px !important;
  border: 1px solid #d6dce2 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #6b7280 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

/* Hover frequency pill */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__options .commitment-frequency__button:hover:not(:disabled) {
  border-color: #16a34a !important;
  background: #f0fdf4 !important;
  color: #15803d !important;
}

/* Selected frequency pill */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__options .commitment-frequency__button.commitment-frequency__button--selected {
  border-color: #16a34a !important;
  background: #f0fdf4 !important;
  color: #15803d !important;
  font-weight: 700 !important;
}

/* Disabled frequency pill */
.reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency__options .commitment-frequency__button:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

/* Mobile */
@media (max-width: 991px) {
  .reconnect-module-shell .reconnect-module-page--commitments .reconnect-module-step--commit {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .reconnect-module-shell .reconnect-module-page--commitments .commitment-frequency {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
}
.fog-intro-page__travellers-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 980px;
  margin: 14px 0 30px;
  padding: 9px 14px;
  border-left: 3px solid #d87845;
  border-radius: 8px;
  background: rgba(216, 120, 69, 0.07);
}

.fog-intro-page__travellers-disclaimer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #d87845;
  border-radius: 50%;
  color: #d87845;
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.fog-intro-page__travellers-disclaimer-text {
  color: #6f665f;
  font-family: "Motiva Sans", sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.fog-prioritization__item {
  cursor: grab;
}

.fog-prioritization__item:active {
  cursor: grabbing;
}

.fog-prioritization__item.is-dragging {
  opacity: 0.72;
  transform: scale(0.995);
}

.fog-prioritization__item-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d87845;
}

.fog-prioritization__drag-label {
  font-family: "Motiva Sans", sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d87845;
}

.fog-prioritization__handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(216, 120, 69, 0.35);
  border-radius: 50%;
  color: #d87845;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.guide-settings__selection-note {
  margin: 0;
  padding: 12px 16px;
  border-left: 3px solid #d87845;
  border-radius: 10px;
  background: rgba(216, 120, 69, 0.07);
  color: #6f665f;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.03em;
}

.guide-settings__section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.guide-settings__section-title span {
  color: #5f6874;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-settings__section-title small {
  color: #d87845;
  font-family: "Motiva Sans", sans-serif;
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-settings__footer-note {
  color: #6f665f;
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.03em;
}

.fog-tier-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: "Motiva Sans", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.fog-tier-pill--complete {
  border: 1px solid #d87845;
  background: #d87845;
  color: #ffffff;
}

.fog-tier-pill--pending {
  border: 1px solid rgba(216, 120, 69, 0.85);
  background: transparent;
  color: #d87845;
}

.fog-tier-arrow {
  align-self: center;
  flex: 0 0 auto;
}

.observe-insights-page {
  width: 100%;
  padding: 0;
}

.observe-insights-page__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ============================
   TOP OBSERVE COMPLETE HERO
============================ */
.observe-insights-hero {
  padding: 32px;
  border-radius: 4px;
  color: #ffffff;
  background: radial-gradient(circle at 76% 52%, rgba(42, 80, 128, 0.24) 0%, rgba(42, 80, 128, 0.1) 32%, rgba(42, 80, 128, 0) 58%), linear-gradient(90deg, #111315 0%, #101821 34%, #13263a 62%, #1b4666 100%);
}

.observe-insights-hero__eyebrow {
  margin-bottom: 8px;
  color: #7fb3e6;
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.observe-insights-hero__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.observe-insights-hero__title span {
  color: #d87845;
}

.observe-insights-hero__description {
  max-width: 980px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.01em;
}

.observe-phase-path {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.observe-phase-path__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.observe-phase-path__pill--completed,
.observe-phase-path__pill--current {
  border: 1px solid #7fb3e6;
  background: rgba(127, 179, 230, 0.16);
  color: #7fb3e6;
}

.observe-phase-path__pill--pending {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
}

.observe-phase-path__arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 18px;
  line-height: 1;
}

/* ============================
   SUMMARY INSIGHTS PANEL
   Figma compact version
============================ */
.observe-summary-panel {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.observe-summary-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.observe-summary-panel__title {
  margin: 0;
  color: #101827;
  font-family: "Motiva Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.observe-summary-panel__title span {
  color: #d87845;
}

.observe-summary-panel__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.observe-summary-panel__auto-btn {
  min-height: 28px;
  padding: 6px 12px;
  border: 0;
  border-radius: 6px;
  background: #23262b;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
  cursor: default;
}

.observe-summary-panel__regen-btn {
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid #9ea7b3;
  border-radius: 4px;
  background: #ffffff;
  color: #202936;
  font-family: "Motiva Sans", sans-serif;
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
}

.observe-summary-card {
  position: relative;
  padding: 16px 48px 14px 16px;
  border: 1px solid #d8dde3;
  border-radius: 4px;
  background: #ffffff;
}

.observe-summary-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.observe-summary-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #42516a;
  font-family: "Motiva Sans", sans-serif;
  font-size: 9px;
  line-height: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.observe-summary-card__eyebrow::before {
  content: "✧";
  color: #101827;
  font-size: 11px;
  line-height: 1;
}

.observe-summary-card__edit-btn {
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #909baa;
  border-radius: 4px;
  background: #ffffff;
  color: #3d4a5d;
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
}

.observe-summary-card__headline {
  max-width: 980px;
  margin: 0 0 8px;
  color: #101827;
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.observe-summary-card__headline span,
.observe-summary-card__headline .subtext {
  color: #d87845;
}

.observe-summary-card__body {
  max-width: 1100px;
  margin: 0 0 10px;
  color: #435269;
  font-family: "Motiva Sans", sans-serif;
  font-size: 10px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.observe-summary-card__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.observe-summary-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 3px 9px;
  border: 1px solid #8fb4da;
  border-radius: 999px;
  background: #f5faff;
  color: #376895;
  font-family: "Motiva Sans", sans-serif;
  font-size: 8px;
  line-height: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.observe-summary-card::after {
  content: "✧";
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: rgba(216, 120, 69, 0.35);
  font-size: 26px;
  line-height: 1;
}

/* ============================
   COMMITMENT PANEL
============================ */
.observe-commitment-panel {
  padding: 32px;
  border-radius: 4px;
  color: #ffffff;
  background: radial-gradient(circle at 76% 52%, rgba(42, 80, 128, 0.24) 0%, rgba(42, 80, 128, 0.1) 32%, rgba(42, 80, 128, 0) 58%), linear-gradient(90deg, #111315 0%, #101821 34%, #13263a 62%, #1b4666 100%);
}

.observe-commitment-panel__eyebrow,
.observe-commitment-panel__label,
.observe-commitment-panel__input-label {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.observe-commitment-panel__eyebrow {
  margin-bottom: 18px;
}

.observe-commitment-panel__title {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.observe-commitment-panel__description,
.observe-commitment-panel__body {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
}

.observe-commitment-panel__description {
  margin: 0 0 24px;
}

.observe-commitment-panel__label {
  margin-bottom: 8px;
}

.observe-commitment-panel__body {
  margin: 0 0 26px;
}

.observe-commitment-panel__input-label {
  margin-bottom: 10px;
}

.observe-commitment-panel__textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  resize: vertical;
}

.observe-commitment-panel__textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.observe-commitment-panel__word-count {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
}

/* ============================
   FOOTER
============================ */
.observe-insights-page__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 24px;
}

.observe-insights-page__back-btn,
.observe-insights-page__continue-btn {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 4px;
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.observe-insights-page__back-btn {
  border: 1px solid #aeb7c2;
  background: #ffffff;
  color: #5f6d83;
}

.observe-insights-page__continue-btn {
  border: 1px solid #2a5080;
  background: #2a5080;
  color: #ffffff;
}

/* ============================
   EDIT DRAWER
============================ */
.observe-edit-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  z-index: 1040;
}

.observe-edit-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  width: min(420px, 92vw);
  height: 100%;
  border-left: 1px solid #d8dde3;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.24);
}

.observe-edit-drawer__header,
.observe-edit-drawer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.observe-edit-drawer__header {
  border-bottom: 1px solid #d8dde3;
}

.observe-edit-drawer__footer {
  border-top: 1px solid #d8dde3;
}

.observe-edit-drawer__title {
  color: #68778d;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.observe-edit-drawer__close {
  border: 0;
  background: transparent;
  color: #0f1b2f;
  font-size: 24px;
  line-height: 1;
}

.observe-edit-drawer__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.observe-edit-drawer__textarea {
  flex: 1;
  width: 100%;
  padding: 14px;
  border: 1px solid #d8dde3;
  border-radius: 6px;
  color: #0f1b2f;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  resize: none;
}

.observe-edit-drawer__word-count {
  margin-top: 8px;
  color: #68778d;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
}

.observe-edit-drawer__cancel,
.observe-edit-drawer__save {
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.observe-edit-drawer__cancel {
  border: 1px solid #aeb7c2;
  background: #ffffff;
  color: #5f6d83;
}

.observe-edit-drawer__save {
  border: 1px solid #0f1b2f;
  background: #0f1b2f;
  color: #ffffff;
}

@media (max-width: 768px) {
  .observe-summary-panel {
    padding: 28px 22px;
  }
  .observe-insights-hero,
  .observe-commitment-panel {
    padding: 24px;
  }
  .observe-summary-card__headline {
    font-size: 19px;
    line-height: 28px;
  }
  .observe-summary-card__body {
    font-size: 14px;
    line-height: 24px;
  }
  .observe-insights-page__footer {
    flex-direction: column;
    align-items: stretch;
  }
}
/* =========================================================
   DAILY REFLECTION CARD - DASHBOARD / FIGMA COMPACT STYLE
   ========================================================= */
.journey-card--reflection {
  align-self: start;
}

.journey-card--reflection .daily-reflection-card {
  width: 100%;
  min-height: 0;
}

.daily-reflection-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d8d5cf;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(42, 41, 44, 0.08);
  overflow: hidden;
}

/* Header */
.daily-reflection-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid #d8d5cf;
}

.daily-reflection-card__title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.daily-reflection-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #e0603a;
  flex: 0 0 auto;
}

.daily-reflection-card__icon svg {
  width: 16px;
  height: 16px;
}

.daily-reflection-card__title {
  margin: 0;
  color: #101820;
  font-family: "Motiva Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.daily-reflection-card__date {
  color: #6b7280;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

/* Prompt */
.daily-reflection-card__prompt {
  padding: 14px 20px;
  border-bottom: 1px solid #d8d5cf;
}

.daily-reflection-card__eyebrow {
  margin-bottom: 8px;
  color: #e0603a;
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.daily-reflection-card__question {
  color: #101820;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

/* Textarea */
.daily-reflection-card__textarea-wrap {
  border-bottom: 1px solid #d8d5cf;
}

.daily-reflection-card__textarea {
  display: block;
  width: 100%;
  min-height: 110px;
  max-height: 150px;
  padding: 16px 20px;
  border: 0;
  outline: none;
  resize: none;
  background: #ffffff;
  color: #101820;
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
}

.daily-reflection-card__textarea::placeholder {
  color: #b5b5b5;
}

/* Footer */
.daily-reflection-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 12px;
}

.daily-reflection-card__button {
  min-width: 128px;
  height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  background: #101820;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.daily-reflection-card__button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.daily-reflection-card__message {
  margin-right: auto;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  line-height: 18px;
}

.daily-reflection-card__message--error {
  color: #d94b41;
}

.daily-reflection-card__message--success {
  color: #2f7d51;
}

/* Responsive */
@media (max-width: 768px) {
  .daily-reflection-card__header {
    align-items: flex-start;
    padding: 14px 16px;
  }
  .daily-reflection-card__prompt {
    padding: 14px 16px;
  }
  .daily-reflection-card__textarea {
    min-height: 100px;
    padding: 14px 16px;
  }
  .daily-reflection-card__footer {
    padding: 12px 10px;
  }
}
/* =========================================================
   AUTH / LOGIN / REGISTER - FINAL FIGMA STYLE FIXES
   ========================================================= */
/* -----------------------------
   Common input field structure
------------------------------ */
.auth-form .form-input,
.login-form .form-input,
.register-form .form-input {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  width: 100%;
  min-width: 0;
}

.auth-form .form-input__label,
.login-form .form-input__label,
.register-form .form-input__label {
  margin: 0 !important;
  color: #2a292c !important;
  font-family: "Motiva Sans", sans-serif !important;
  font-size: 14px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.auth-form .form-input__required,
.login-form .form-input__required,
.register-form .form-input__required {
  margin-left: 4px !important;
  color: #e0603a !important;
  font-family: "Motiva Sans", sans-serif !important;
  font-size: 14px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
}

.auth-form .form-input__control-wrap,
.login-form .form-input__control-wrap,
.register-form .form-input__control-wrap {
  margin-top: 0 !important;
}

.auth-form .form-input__field,
.login-form .form-input__field,
.register-form .form-input__field {
  width: 100%;
  min-width: 0;
  height: 42px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #9b9b9b;
  border-radius: 2px;
  background: #ffffff;
  color: #2a292c;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 42px;
  font-weight: 400;
  outline: none;
  box-shadow: none;
}

.auth-form .form-input__field::placeholder,
.login-form .form-input__field::placeholder,
.register-form .form-input__field::placeholder {
  color: #6f7680;
  opacity: 1;
}

.auth-form .form-input__field:focus,
.login-form .form-input__field:focus,
.register-form .form-input__field:focus {
  border-color: #2a292c;
  box-shadow: none;
}

/* =========================================================
   LOGIN PAGE LABEL FIX
   ========================================================= */
.login-card .form-input,
.login-form .form-input {
  gap: 6px !important;
}

.login-card .form-input__label,
.login-form .form-input__label {
  margin: 0 !important;
  color: #2a292c !important;
  font-family: "Motiva Sans", sans-serif !important;
  font-size: 14px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.login-card .form-input__required,
.login-form .form-input__required {
  margin-left: 4px !important;
  color: #e0603a !important;
  font-weight: 400 !important;
}

.login-card .form-input__control-wrap,
.login-form .form-input__control-wrap {
  margin-top: 0 !important;
}

/* =========================================================
   REGISTER STEP 1 / STEP 2 LABEL + INPUT FIX
   ========================================================= */
.register-form .form-input {
  gap: 6px !important;
}

.register-form .form-input__label {
  margin: 0 !important;
  color: #2a292c !important;
  font-family: "Motiva Sans", sans-serif !important;
  font-size: 14px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.register-form .form-input__required {
  margin-left: 4px !important;
  color: #e0603a !important;
  font-family: "Motiva Sans", sans-serif !important;
  font-size: 14px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
}

.register-form .form-input__control-wrap {
  margin-top: 0 !important;
}

/* =========================================================
   REGISTER STEP 3 - SELECT FIELD FIGMA SPACING
   Primary Goal / How did you hear about us
   ========================================================= */
.register-form .register-select-field .app-select {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.register-form .register-select-field .app-select__label {
  margin: 0 !important;
  color: #2a292c !important;
  font-family: "Motiva Sans", sans-serif !important;
  font-size: 14px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.register-form .register-select-field .app-select__required {
  margin-left: 4px !important;
  color: #e0603a !important;
  font-family: "Motiva Sans", sans-serif !important;
  font-size: 14px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
}

.register-form .register-select-field .app-select__wrap {
  margin-top: 0 !important;
}

.register-form .register-select-field {
  margin-bottom: 28px !important;
}

.register-form .register-select-field .app-select__control,
.register-form .register-select-field .app-select__button,
.register-form .register-select-field select {
  height: 60px;
  min-height: 60px;
  padding: 0 24px;
  border: 1px solid #9b9b9b;
  border-radius: 2px;
  background: #ffffff;
  color: #6f7680;
  font-family: "Motiva Sans", sans-serif;
  font-size: 16px;
  line-height: 60px;
  font-weight: 400;
}

/* =========================================================
   REGISTER AGREEMENT / TERMS CHECKBOX ROWS
   ========================================================= */
.register-form .register-consent,
.register-form .register-consent-list,
.register-form .auth-consent-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 6px 0 30px;
}

.register-form .register-consent__row,
.register-form .auth-consent,
.register-form .auth-checkbox,
.register-form .terms-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  color: #4b5563;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.register-form .register-consent__row input[type=checkbox],
.register-form .auth-consent input[type=checkbox],
.register-form .auth-checkbox input[type=checkbox],
.register-form .terms-checkbox-row input[type=checkbox] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin: 1px 0 0;
  border: 1px solid #8d8d8d;
  border-radius: 2px;
  accent-color: #101820;
  cursor: pointer;
}

.register-form .register-consent__text,
.register-form .auth-consent__text,
.register-form .auth-checkbox__text,
.register-form .terms-checkbox-row label {
  margin: 0;
  color: #4b5563;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.register-form .register-consent__text a,
.register-form .auth-consent__text a,
.register-form .auth-checkbox__text a,
.register-form .terms-checkbox-row a {
  color: #e0603a;
  text-decoration: none;
}

.register-form .register-consent__text a:hover,
.register-form .auth-consent__text a:hover,
.register-form .auth-checkbox__text a:hover,
.register-form .terms-checkbox-row a:hover {
  text-decoration: underline;
}

/* =========================================================
   LOGIN KEEP ME SIGNED IN / FORGOT PASSWORD
   ========================================================= */
.login-form .login-options,
.auth-form .login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0 30px;
}

.login-form .remember-me,
.auth-form .remember-me {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #4b5563;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.login-form .remember-me input[type=checkbox],
.auth-form .remember-me input[type=checkbox] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin: 0;
  border: 1px solid #8d8d8d;
  border-radius: 2px;
  accent-color: #101820;
}

.login-form .forgot-password,
.auth-form .forgot-password {
  color: #e0603a;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.login-form .forgot-password:hover,
.auth-form .forgot-password:hover {
  text-decoration: underline;
}

/* =========================================================
   AUTH BUTTONS
   ========================================================= */
.auth-form .auth-button,
.login-form .auth-button,
.register-form .auth-button,
.auth-form button[type=submit],
.login-form button[type=submit],
.register-form button[type=submit] {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 4px;
  background: #101820;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.auth-form .auth-button:disabled,
.login-form .auth-button:disabled,
.register-form .auth-button:disabled,
.auth-form button[type=submit]:disabled,
.login-form button[type=submit]:disabled,
.register-form button[type=submit]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* =========================================================
   REGISTER STEP 3 BACK + CREATE ACCOUNT BUTTON ROW
   ========================================================= */
.register-form .register-actions,
.register-form .auth-actions {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.register-form .register-actions .btn-back,
.register-form .auth-actions .btn-back,
.register-form .register-back-button {
  height: 58px;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  background: #ffffff;
  color: #9b9b9b;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.register-form .register-actions .btn-primary,
.register-form .auth-actions .btn-primary,
.register-form .register-create-button {
  height: 58px;
  border: 0;
  border-radius: 4px;
  background: #5a6168;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================
   SIGN IN / SIGN UP BOTTOM TEXT
   ========================================================= */
.auth-form .signin-link-row,
.login-form .signin-link-row,
.register-form .signin-link-row,
.auth-form .auth-switch,
.login-form .auth-switch,
.register-form .auth-switch {
  margin-top: 30px;
  text-align: center;
  color: #6f7680;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.auth-form .signin-link-row a,
.login-form .signin-link-row a,
.register-form .signin-link-row a,
.auth-form .auth-switch a,
.login-form .auth-switch a,
.register-form .auth-switch a {
  color: #e0603a;
  text-decoration: none;
}

.auth-form .signin-link-row a:hover,
.login-form .signin-link-row a:hover,
.register-form .signin-link-row a:hover,
.auth-form .auth-switch a:hover,
.login-form .auth-switch a:hover,
.register-form .auth-switch a:hover {
  text-decoration: underline;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .register-form .register-actions,
  .register-form .auth-actions {
    grid-template-columns: 1fr;
  }
  .login-form .login-options,
  .auth-form .login-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .register-form .register-select-field .app-select__control,
  .register-form .register-select-field .app-select__button,
  .register-form .register-select-field select {
    height: 52px;
    min-height: 52px;
    line-height: 52px;
    padding: 0 16px;
  }
}
/* =========================================================
   FOG MODULE 3 - ROLE SELECTION GUIDANCE
========================================================= */
.roles-guidance {
  border: 1px solid rgba(212, 109, 63, 0.34);
  border-left: 5px solid #d46d3f;
  background: rgba(212, 109, 63, 0.08);
}

.roles-guidance__icon {
  width: 32px;
  min-width: 32px;
  padding-top: 2px;
  font-size: 22px;
  line-height: 1;
}

.roles-guidance__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.roles-guidance__text {
  margin: 0;
  color: #1a2230;
  font-family: "Motiva Sans", sans-serif;
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.roles-guidance__limit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 14px;
  border: 1px solid rgba(212, 109, 63, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #2a292c;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.roles-guidance__limit-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d46d3f;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  flex: 0 0 auto;
}

.roles-guidance__limit strong {
  color: #d46d3f;
  font-weight: 800;
}

.roles-guidance__error {
  color: #d94b41;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.fog-role-group-title {
  color: #6f7780 !important;
  font-family: "Motiva Sans", sans-serif;
  font-size: 18px !important;
  line-height: 24px;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
}

.fog-role-chip {
  min-height: 50px;
  padding: 0 36px !important;
  border: 1px solid #6f7780 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #6f7780 !important;
  font-family: "Motiva Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  box-shadow: none !important;
}

.fog-role-chip:hover {
  border-color: #101820 !important;
  color: #101820 !important;
  background: rgba(16, 24, 32, 0.04) !important;
}

.fog-role-chip.is-selected {
  border-color: #101820 !important;
  background: #101820 !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .roles-guidance__text {
    font-size: 16px;
    line-height: 28px;
  }
  .roles-guidance__limit {
    align-items: flex-start;
    border-radius: 14px;
  }
  .fog-role-chip {
    min-height: 44px;
    padding: 0 24px !important;
    font-size: 16px;
  }
}
.auth-reset-page {
  min-height: 100vh;
  padding: 32px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 18% 16%, rgba(224, 112, 61, 0.18), transparent 34%), radial-gradient(circle at 82% 24%, rgba(59, 130, 246, 0.12), transparent 30%), radial-gradient(circle at 50% 90%, rgba(59, 107, 82, 0.14), transparent 34%), linear-gradient(135deg, #fbf6ef 0%, #fffaf6 48%, #eff7f1 100%);
}

.auth-reset-card {
  width: 100%;
  max-width: 480px;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(38, 34, 30, 0.08);
  box-shadow: 0 30px 80px rgba(32, 28, 24, 0.16);
  backdrop-filter: blur(18px);
}

.auth-reset-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.auth-reset-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #26392f;
  box-shadow: 0 16px 32px rgba(38, 57, 47, 0.24);
}

.auth-reset-logo span {
  color: #fffaf3;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.auth-reset-eyebrow {
  margin: 0 0 5px;
  color: #df7042;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-reset-card h1 {
  margin: 0;
  color: #252220;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.auth-reset-description {
  margin: 0 0 24px;
  color: #706963;
  font-size: 15px;
  line-height: 1.65;
}

.auth-reset-field {
  margin-bottom: 18px;
}

.auth-reset-field label {
  display: block;
  margin-bottom: 8px;
  color: #332f2b;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.auth-reset-input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 16px;
  border: 1px solid rgba(51, 47, 43, 0.16);
  background: rgba(255, 255, 255, 0.95);
  color: #252220;
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.auth-reset-input::placeholder {
  color: #aaa29a;
}

.auth-reset-input:focus {
  border-color: #df7042;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(223, 112, 66, 0.14);
}

.auth-reset-button {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 17px;
  background: #26392f;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 18px 38px rgba(38, 57, 47, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.auth-reset-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(38, 57, 47, 0.3);
}

.auth-reset-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.auth-reset-back {
  width: 100%;
  margin-top: 18px;
  border: none;
  background: transparent;
  color: #df7042;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.auth-reset-back:hover {
  text-decoration: underline;
}

.auth-reset-helper {
  margin: 16px 0 0;
  color: #7b746e;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.auth-reset-alert {
  margin-bottom: 18px;
  padding: 13px 14px;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.auth-reset-alert__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.auth-reset-alert--success {
  background: rgba(67, 139, 104, 0.11);
  border: 1px solid rgba(67, 139, 104, 0.24);
  color: #2f6e52;
}

.auth-reset-alert--success .auth-reset-alert__icon {
  background: rgba(67, 139, 104, 0.16);
}

.auth-reset-alert--error {
  background: rgba(204, 70, 55, 0.1);
  border: 1px solid rgba(204, 70, 55, 0.22);
  color: #9d342a;
}

.auth-reset-alert--error .auth-reset-alert__icon {
  background: rgba(204, 70, 55, 0.16);
}

.auth-reset-rules {
  margin: 4px 0 20px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(38, 57, 47, 0.06);
  border: 1px solid rgba(38, 57, 47, 0.08);
}

.auth-reset-rules p {
  margin: 0 0 10px;
  color: #332f2b;
  font-size: 13px;
  font-weight: 800;
}

.auth-reset-rules ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-reset-rules__item {
  position: relative;
  margin-bottom: 7px;
  padding-left: 24px;
  color: #746c65;
  font-size: 13px;
  line-height: 1.4;
}

.auth-reset-rules__item::before {
  content: "○";
  position: absolute;
  left: 0;
  top: 0;
  color: #a59d95;
  font-weight: 800;
}

.auth-reset-rules__item--valid {
  color: #2f6e52;
}

.auth-reset-rules__item--valid::before {
  content: "✓";
  color: #2f6e52;
}

.auth-reset-spinner {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #ffffff;
  animation: auth-reset-spin 0.8s linear infinite;
}

@keyframes auth-reset-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 576px) {
  .auth-reset-page {
    padding: 24px 14px;
  }
  .auth-reset-card {
    padding: 26px 20px;
    border-radius: 24px;
  }
  .auth-reset-brand {
    align-items: flex-start;
  }
  .auth-reset-logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 16px;
  }
  .auth-reset-card h1 {
    font-size: 25px;
  }
  .auth-reset-description {
    font-size: 14px;
  }
}
.login-link--button {
  appearance: none;
  -webkit-appearance: none;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0;
  font-family: inherit;
  color: #df7042;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
}

.login-link--button:hover {
  color: #c95f35;
  text-decoration: underline;
}

.login-link--button:focus,
.login-link--button:active,
.login-link--button:focus-visible {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.move-phase {
  width: 100%;
  min-width: 0;
}

.move-phase__loading,
.move-phase__error {
  width: 100%;
  padding: 24px;
  border-radius: 12px;
  background: #ffffff;
  color: #242a31;
  font-size: 14px;
  line-height: 1.5;
}

.move-phase__error {
  border: 1px solid rgba(220, 53, 69, 0.24);
  background: #fff7f7;
  color: #9f1d2b;
}

.move-phase__footer-actions {
  width: 100%;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.move-phase__primary-btn,
.move-phase__secondary-btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.move-phase__primary-btn {
  background: #101820;
  color: #ffffff;
}

.move-phase__secondary-btn {
  background: #ffffff;
  color: #30363d;
  border-color: #d5d8dc;
}

@media (max-width: 767.98px) {
  .move-phase__footer-actions {
    align-items: stretch;
  }
  .move-phase__primary-btn,
  .move-phase__secondary-btn {
    width: 100%;
  }
}
/* =========================================================
   MOVE INTRO — FIGMA MATCH
   Uses shared Observe/Reconnect cards + MOVE-only modifiers
========================================================= */
.move-intro-page {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 0 28px;
  background: #ffffff;
  color: #1f2630;
  font-family: inherit;
}

/* =========================================================
   HERO
========================================================= */
.move-intro-page__hero {
  min-height: 132px;
  padding: 24px 28px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: radial-gradient(520px 190px at 86% 38%, rgba(104, 61, 174, 0.72) 0%, rgba(81, 47, 139, 0.44) 34%, rgba(43, 31, 67, 0.2) 58%, rgba(18, 24, 31, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 46%, #171b25 66%, #211934 100%);
  color: #ffffff;
}

.move-intro-page__hero-copy {
  min-width: 0;
  max-width: 640px;
}

.move-intro-page__hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.move-intro-page__hero-phase-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 109, 63, 0.2);
  border: 1px solid rgba(212, 109, 63, 0.55);
  color: #f28a53;
  font-size: 11px;
  font-weight: 900;
}

.move-intro-page__hero-title {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.move-intro-page__hero-title span {
  color: #e97845;
}

.move-intro-page__hero-subtitle {
  max-width: 590px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

.move-intro-page__hero-chip {
  flex: 0 0 auto;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

/* =========================================================
   OVERVIEW
========================================================= */
.move-intro-page__overview {
  padding: 24px 28px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  border-bottom: 1px solid #e5dfd8;
}

.move-intro-page__overview-copy {
  min-width: 0;
}

.move-intro-page__overview-copy p {
  margin: 0 0 14px;
  color: #3d4651;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.move-intro-page__overview-copy strong {
  color: #202631;
  font-weight: 900;
}

.move-intro-page__accent {
  color: #de7040;
  font-weight: 800;
}

.move-intro-page__note {
  margin-top: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid rgba(242, 175, 55, 0.34);
  background: #fff8e9;
}

.move-intro-page__note-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 175, 55, 0.18);
  color: #d97820;
  font-size: 13px;
  flex: 0 0 auto;
}

.move-intro-page__note-text {
  color: #5f5140;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

/* =========================================================
   VIDEO CARD
========================================================= */
.move-intro-page__video-card {
  min-height: 190px;
  border-radius: 4px;
  overflow: hidden;
  background: radial-gradient(260px 140px at 26% 42%, rgba(120, 70, 210, 0.58), transparent 70%), linear-gradient(135deg, #2c115c 0%, #151b24 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.move-intro-page__video-coming-soon {
  flex: 1;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  text-align: center;
}

.move-intro-page__video-coming-soon-badge {
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.move-intro-page__video-coming-soon-title {
  font-size: 14px;
  font-weight: 800;
}

.move-intro-page__video-coming-soon-text {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  line-height: 1.45;
}

.move-intro-page__video-meta {
  min-height: 36px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 12, 18, 0.72);
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
}

/* =========================================================
   SHARED SECTION SPACING
========================================================= */
.move-intro-page .observe-process-section,
.move-intro-page .observe-boundaries-section,
.move-intro-page__section {
  padding: 22px 28px 0;
}

.move-intro-page .container {
  max-width: 100%;
}

/* =========================================================
   MOVE INTRO — SHARED SECTION SPACING
   Scoped only to MoveIntro
========================================================= */
.move-intro-page .observe-process-section,
.move-intro-page .observe-boundaries-section,
.move-intro-page__section {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 22px 28px 0 !important;
  background: #ffffff !important;
}

.move-intro-page .container {
  width: 100% !important;
  max-width: 100% !important;
}

/* =========================================================
   MODULE CARDS — MOVE INTRO FINAL FIGMA STYLE
   Behavior:
   - Default/current/future cards = soft grey
   - Completed cards = soft green + tick
   - No inherited green bars
   - Cards grow naturally based on text
========================================================= */
.move-intro-page .observe-process-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: stretch !important;
}

/* Base card */
.move-intro-page .observe-process-card.move-process-card {
  position: relative !important;
  min-width: 0 !important;
  min-height: 158px !important;
  height: auto !important;
  max-height: none !important;
  padding: 18px 16px 18px !important;
  border: 1px solid #e7e7e7 !important;
  border-radius: 8px !important;
  background: #f7f7f7 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05) !important;
  overflow: visible !important;
}

/* Remove inherited Observe/Reconnect decoration bars */
.move-intro-page .observe-process-card.move-process-card::before,
.move-intro-page .observe-process-card.move-process-card::after,
.move-intro-page .observe-process-card.move-process-card .observe-process-card__number::before,
.move-intro-page .observe-process-card.move-process-card .observe-process-card__number::after,
.move-intro-page .observe-process-card.move-process-card .observe-process-card__title::before,
.move-intro-page .observe-process-card.move-process-card .observe-process-card__title::after {
  display: none !important;
  content: none !important;
}

/* Number */
.move-intro-page .observe-process-card.move-process-card .observe-process-card__number {
  display: block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #8f8f95 !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  text-align: left !important;
}

/* Title */
.move-intro-page .observe-process-card.move-process-card .observe-process-card__title {
  display: block !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  background: transparent !important;
  color: #161616 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}

/* Description */
.move-intro-page .observe-process-card.move-process-card .observe-process-card__text {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  white-space: normal !important;
  color: #5f6368 !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* Current module — keep grey, no orange/green highlight */
.move-intro-page .observe-process-card.move-process-card.is-progress {
  border-color: #e7e7e7 !important;
  background: #f7f7f7 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05) !important;
}

.move-intro-page .observe-process-card.move-process-card.is-progress .observe-process-card__number,
.move-intro-page .observe-process-card.move-process-card.is-progress .observe-process-card__title {
  color: inherit !important;
}

.move-intro-page .observe-process-card.move-process-card.is-progress .observe-process-card__number {
  color: #8f8f95 !important;
}

.move-intro-page .observe-process-card.move-process-card.is-progress .observe-process-card__title {
  color: #161616 !important;
}

/* Future / locked module — same grey */
.move-intro-page .observe-process-card.move-process-card.is-locked {
  border-color: #e7e7e7 !important;
  background: #f7f7f7 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05) !important;
  opacity: 1 !important;
}

.move-intro-page .observe-process-card.move-process-card.is-locked .observe-process-card__number {
  color: #8f8f95 !important;
}

.move-intro-page .observe-process-card.move-process-card.is-locked .observe-process-card__title {
  color: #161616 !important;
}

.move-intro-page .observe-process-card.move-process-card.is-locked .observe-process-card__text {
  color: #5f6368 !important;
}

/* Completed module — green card only when completed */
.move-intro-page .observe-process-card.move-process-card.is-completed {
  border-color: #bfe4c9 !important;
  background: #f3fff6 !important;
  box-shadow: 0 2px 10px rgba(34, 169, 90, 0.08) !important;
}

.move-intro-page .observe-process-card.move-process-card.is-completed .observe-process-card__number {
  color: #8f8f95 !important;
  font-size: 22px !important;
  margin-bottom: 14px !important;
  background: transparent !important;
}

.move-intro-page .observe-process-card.move-process-card.is-completed .observe-process-card__title {
  color: #161616 !important;
  font-size: 13px !important;
}

.move-intro-page .observe-process-card.move-process-card.is-completed .observe-process-card__text {
  color: #5f6368 !important;
}

/* Completed tick */
.move-intro-page .move-process-card__tick {
  position: absolute !important;
  top: 18px !important;
  right: 16px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  color: #159447 !important;
  border: 1.5px solid #159447 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

/* Responsive safety */
@media (max-width: 1100px) {
  .move-intro-page .observe-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 768px) {
  .move-intro-page .observe-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 520px) {
  .move-intro-page .observe-process-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================================
   BOUNDARIES — MOVE FIGMA MATCH
   Uses shared observe-boundary-card safely
========================================================= */
.move-intro-page .observe-boundaries-section {
  padding-top: 24px !important;
}

.move-intro-page .observe-boundaries-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.move-intro-page .observe-boundary-card {
  border-radius: 6px !important;
  overflow: hidden !important;
  border: 1px solid #e4ddd6 !important;
  background: #ffffff !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.055) !important;
}

.move-intro-page .observe-boundary-card--negative {
  border-color: #f0d5d5 !important;
  background: #fffafa !important;
}

.move-intro-page .observe-boundary-card--positive {
  border-color: #cdeed8 !important;
  background: #fbfffc !important;
}

.move-intro-page .observe-boundary-card__header {
  min-height: 42px !important;
  padding: 0 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-intro-page .observe-boundary-card--negative .observe-boundary-card__header {
  color: #d34b4b !important;
  background: #fff1f1 !important;
}

.move-intro-page .observe-boundary-card--positive .observe-boundary-card__header {
  color: #23864b !important;
  background: #f0fff4 !important;
}

.move-intro-page .observe-boundary-card__header-icon {
  width: 16px !important;
  height: 16px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.move-intro-page .observe-boundary-card__list {
  margin: 0 !important;
  padding: 14px 16px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  list-style: none !important;
}

.move-intro-page .observe-boundary-card__list li {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  color: #555d66 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
}

.move-intro-page .observe-boundary-card__bullet {
  flex: 0 0 auto !important;
  font-size: 10px !important;
  line-height: 1.45 !important;
  font-weight: 900 !important;
}

.move-intro-page .observe-boundary-card--negative .observe-boundary-card__bullet {
  color: #d34b4b !important;
}

.move-intro-page .observe-boundary-card--positive .observe-boundary-card__bullet {
  color: #23864b !important;
}

/* =========================================================
   RESPONSIVE — MOVE ONLY
========================================================= */
@media (max-width: 1199.98px) {
  .move-intro-page .observe-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 991.98px) {
  .move-intro-page .observe-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .move-intro-page .observe-boundaries-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 575.98px) {
  .move-intro-page .observe-process-section,
  .move-intro-page .observe-boundaries-section,
  .move-intro-page__section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .move-intro-page .observe-process-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================================
   FELLOW TRAVELERS
========================================================= */
.move-intro-page__travellers-text {
  max-width: 800px;
  margin: 0 0 14px;
  color: #6a6460;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 500;
}

.move-intro-page__travellers-topbar {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.move-intro-page__travellers-count {
  color: #7b756e;
  font-size: 11px;
  font-weight: 700;
}

.move-intro-page__travellers-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.move-intro-page__travellers-arrow {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid #efb08b;
  background: #ffffff;
  color: #d46d3f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.move-intro-page__travellers-arrow:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.move-intro-page__travellers-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.move-intro-page__travellers-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #d8d2cb;
}

.move-intro-page__travellers-dots span.is-active {
  width: 14px;
  background: #d46d3f;
}

.move-intro-page__travellers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.move-intro-page__travellers-empty {
  padding: 18px;
  border-radius: 8px;
  border: 1px dashed #d8d2cb;
  background: #fbfaf8;
  color: #7b756e;
  font-size: 13px;
}

/* =========================================================
   FOOTER
========================================================= */
.move-intro-page__footer {
  padding: 24px 28px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.move-intro-page__begin-btn {
  height: 38px;
  padding: 0 18px;
  border-radius: 4px;
  border: 0;
  background: #10913f;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.move-intro-page__begin-btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.move-intro-page__footer-copy {
  color: #7b756e;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199.98px) {
  .move-intro-page {
    max-width: 100%;
  }
  .move-intro-page .observe-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  .move-intro-page__overview {
    grid-template-columns: 1fr;
  }
  .move-intro-page .observe-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .move-intro-page__travellers-grid,
  .move-intro-page .observe-boundaries-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .move-intro-page__hero,
  .move-intro-page__overview,
  .move-intro-page .observe-process-section,
  .move-intro-page .observe-boundaries-section,
  .move-intro-page__section,
  .move-intro-page__footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .move-intro-page__hero {
    flex-direction: column;
  }
  .move-intro-page__hero-title {
    font-size: 26px;
  }
  .move-intro-page .observe-process-grid {
    grid-template-columns: 1fr;
  }
  .move-intro-page__travellers-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .move-intro-page__begin-btn {
    width: 100%;
  }
}
/* =========================================================
   JOURNEY HEADER — MOVE ACTIVE BADGE
   Makes MOVE pill purple only for Move phase
========================================================= */
.move-phase-shell-page ~ *,
.move-phase-shell-page {
  --move-phase-purple: #8b5cf6;
  --move-phase-purple-bg: #f3e8ff;
}

/* Use this selector if your shell badge class is app-header__phase-badge */
.move-phase-shell-page .app-header__phase-badge,
.move-phase-shell-page .journey-header__phase-badge,
.move-phase-shell-page .journey-shell__phase-badge {
  border-color: #8b5cf6 !important;
  background: #f3e8ff !important;
  color: #7c3aed !important;
}

/* If the text inside badge is a span */
.move-phase-shell-page .app-header__phase-badge span,
.move-phase-shell-page .journey-header__phase-badge span,
.move-phase-shell-page .journey-shell__phase-badge span {
  color: #7c3aed !important;
}

/* =========================================================
   FELLOW TRAVELERS DISCLAIMER — MOVE ONLY
========================================================= */
.move-intro-page__travellers-disclaimer {
  max-width: 840px;
  margin: -4px 0 16px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  border-radius: 8px;
  border: 1px solid rgba(212, 109, 63, 0.18);
  background: rgba(212, 109, 63, 0.045);
  color: #6f6258;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}

.move-intro-page__travellers-disclaimer-icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex: 0 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 109, 63, 0.12);
  color: #d46d3f;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
}

/* =========================================================
   MOVE MODULE 1 — STEP 2 / 3 / 4 TEXT SCREENS
   Figma compact match. Scoped only to Move Module 1.
========================================================= */
.move-module-shell--module1 .move-module1-step--identity,
.move-module-shell--module1 .move-module1-step--specify,
.move-module-shell--module1 .move-module1-step--reflection {
  padding: 24px 26px 86px !important;
  background: #f6f6f5 !important;
}

/* Step header */
.move-module-shell--module1 .move-module1-step--identity .step-header,
.move-module-shell--module1 .move-module1-step--specify .step-header,
.move-module-shell--module1 .move-module1-step--reflection .step-header {
  margin: 0 0 22px !important;
  padding: 0 !important;
}

/* Eyebrow */
.move-module-shell--module1 .move-module1-step--identity .step-header__eyebrow,
.move-module-shell--module1 .move-module1-step--identity .step-header__phase,
.move-module-shell--module1 .move-module1-step--specify .step-header__eyebrow,
.move-module-shell--module1 .move-module1-step--specify .step-header__phase,
.move-module-shell--module1 .move-module1-step--reflection .step-header__eyebrow,
.move-module-shell--module1 .move-module1-step--reflection .step-header__phase {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 18px !important;
  color: #e0703d !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module-shell--module1 .move-module1-step--identity .step-header__eyebrow::before,
.move-module-shell--module1 .move-module1-step--identity .step-header__phase::before,
.move-module-shell--module1 .move-module1-step--specify .step-header__eyebrow::before,
.move-module-shell--module1 .move-module1-step--specify .step-header__phase::before,
.move-module-shell--module1 .move-module1-step--reflection .step-header__eyebrow::before,
.move-module-shell--module1 .move-module1-step--reflection .step-header__phase::before {
  content: "";
  width: 45px !important;
  height: 1px !important;
  background: #e0703d !important;
  opacity: 0.72 !important;
}

/* Main title */
.move-module-shell--module1 .move-module1-step--identity .step-header__main-title,
.move-module-shell--module1 .move-module1-step--identity .step-header__title,
.move-module-shell--module1 .move-module1-step--specify .step-header__main-title,
.move-module-shell--module1 .move-module1-step--specify .step-header__title,
.move-module-shell--module1 .move-module1-step--reflection .step-header__main-title,
.move-module-shell--module1 .move-module1-step--reflection .step-header__title {
  margin: 0 0 13px !important;
  color: #202631 !important;
  font-size: 20px !important;
  line-height: 1.22 !important;
  font-weight: 800 !important;
  letter-spacing: -0.018em !important;
}

/* Description */
.move-module-shell--module1 .move-module1-step--identity .step-header__description,
.move-module-shell--module1 .move-module1-step--identity .step-header__text,
.move-module-shell--module1 .move-module1-step--specify .step-header__description,
.move-module-shell--module1 .move-module1-step--specify .step-header__text,
.move-module-shell--module1 .move-module1-step--reflection .step-header__description,
.move-module-shell--module1 .move-module1-step--reflection .step-header__text {
  max-width: 1120px !important;
  margin: 0 !important;
  color: #71767d !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* Step 2 helper: plain text, not yellow block */
.move-module-shell--module1 .move-module1-step--identity .helper-text-block {
  margin: 16px 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #6f737a !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

/* Step 3 helper: plain text/note style like Figma */
.move-module-shell--module1 .move-module1-step--specify .helper-text-block {
  margin: 16px 0 22px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #6f737a !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;
}

/* Step 4 helper: yellow quote block */
.move-module-shell--module1 .move-module1-step--reflection .helper-text-block {
  margin: 18px 0 20px !important;
  padding: 16px 18px !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-left: 4px solid #e6a721 !important;
  background: #fff8e9 !important;
  color: #3f3f3f !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

/* TextAreaBlock */
.move-module-shell--module1 .move-module1-step .text-area-block {
  margin: 0 !important;
}

.move-module-shell--module1 .move-module1-step--specify .text-area-block + .text-area-block {
  margin-top: 28px !important;
}

/* Label with line */
.move-module-shell--module1 .move-module1-step .text-area-block__title,
.move-module-shell--module1 .move-module1-step .text-area-block__label {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 10px !important;
  color: #707985 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.move-module-shell--module1 .move-module1-step .text-area-block__title::after,
.move-module-shell--module1 .move-module1-step .text-area-block__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #9ca1a7;
  opacity: 0.78;
}

/* Textarea */
.move-module-shell--module1 .move-module1-step textarea,
.move-module-shell--module1 .move-module1-step .text-area-block__control {
  width: 100% !important;
  min-height: 104px !important;
  padding: 14px 14px !important;
  border-radius: 5px !important;
  border: 1px solid #cfd3d8 !important;
  background: #ffffff !important;
  color: #222832 !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.075) !important;
  resize: vertical !important;
}

.move-module-shell--module1 .move-module1-step--identity textarea,
.move-module-shell--module1 .move-module1-step--identity .text-area-block__control {
  min-height: 102px !important;
}

.move-module-shell--module1 .move-module1-step--specify textarea,
.move-module-shell--module1 .move-module1-step--specify .text-area-block__control {
  min-height: 98px !important;
}

.move-module-shell--module1 .move-module1-step--reflection textarea,
.move-module-shell--module1 .move-module1-step--reflection .text-area-block__control {
  min-height: 112px !important;
}

.move-module-shell--module1 .move-module1-step textarea::placeholder,
.move-module-shell--module1 .move-module1-step .text-area-block__control::placeholder {
  color: #b7bcc3 !important;
  font-size: 11px !important;
}

.move-module-shell--module1 .move-module1-step textarea:focus,
.move-module-shell--module1 .move-module1-step .text-area-block__control:focus {
  border-color: rgba(223, 116, 68, 0.65) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.075), 0 0 0 3px rgba(223, 116, 68, 0.12) !important;
  outline: none !important;
}

/* Word count */
.move-module-shell--module1 .move-module1-step .text-area-block__count,
.move-module-shell--module1 .move-module1-step .text-area-block__word-count {
  margin-top: 6px !important;
  color: #8a9098 !important;
  font-size: 9px !important;
  line-height: 1 !important;
  text-align: right !important;
}

/* =========================================================
   FOOTER BUTTONS
========================================================= */
.move-module-shell--module1 .app-layout__footer,
.move-module-shell--module1 .exercise-shell__footer {
  min-height: 70px !important;
  padding: 14px 28px !important;
  background: #ffffff !important;
  border-top: 1px solid #e5e1dc !important;
}

.move-module-shell--module1 .app-layout__footer-step,
.move-module-shell--module1 .exercise-shell__footer-step {
  color: #555d66 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.move-module-shell--module1 .app-layout__button--primary,
.move-module-shell--module1 .exercise-shell__button--primary {
  min-width: 134px !important;
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 4px !important;
  border: 1px solid #0e1720 !important;
  background: #0e1720 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.move-module-shell--module1 .app-layout__button--primary:hover,
.move-module-shell--module1 .exercise-shell__button--primary:hover {
  background: #17212c !important;
  border-color: #17212c !important;
}

.move-module-shell--module1 .app-layout__button--secondary,
.move-module-shell--module1 .exercise-shell__button--secondary {
  min-width: 96px !important;
  height: 40px !important;
  padding: 0 16px !important;
  border-radius: 4px !important;
  border: 1px solid #d2d5da !important;
  background: #ffffff !important;
  color: #8b9199 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {
  .move-module-shell--module1 .app-layout__hero,
  .move-module-shell--module1 .app-layout-hero,
  .move-module-shell--module1 .exercise-shell__hero {
    padding: 22px 22px 20px !important;
  }
  .move-module1-step {
    padding: 24px 18px 92px;
  }
  .move-module1-step__breathing {
    width: 100%;
  }
  .move-module1-step__breathing .breathing-card {
    grid-template-columns: 1fr !important;
    row-gap: 18px !important;
    text-align: center !important;
  }
  .move-module1-step__breathing .breathing-card__orb-wrap,
  .move-module1-step__breathing .breathing-card__visual {
    margin: 0 auto !important;
  }
  .move-grounding-option-card {
    min-height: 118px !important;
  }
}
@media (max-width: 575.98px) {
  .move-module1-step {
    padding: 20px 14px 92px;
  }
  .move-module-shell--module1 .app-layout__title,
  .move-module-shell--module1 .exercise-shell__hero-title {
    font-size: 25px !important;
  }
  .move-module1-step .step-header__main-title,
  .move-module1-step .step-header__title {
    font-size: 21px !important;
  }
  .move-module1-step .text-area-block__title,
  .move-module1-step .text-area-block__label {
    white-space: normal !important;
    align-items: flex-start !important;
  }
  .move-grounding-option-card {
    min-height: 104px !important;
  }
  .move-module-shell--module1 .app-layout__footer,
  .move-module-shell--module1 .exercise-shell__footer {
    padding: 12px 14px !important;
  }
  .move-module-shell--module1 .app-layout__button--primary,
  .move-module-shell--module1 .exercise-shell__button--primary,
  .move-module-shell--module1 .app-layout__button--secondary,
  .move-module-shell--module1 .exercise-shell__button--secondary {
    width: 100% !important;
  }
}
/* =========================================================
   MOVE MODULE 1 — FINAL FIGMA MATCH PATCH
   Scoped only to Move Module 1.
   Does NOT affect Fog / Observe / Reconnect.
========================================================= */
.move-module-shell--module1 {
  background: #f6f6f5 !important;
}

/* =========================================================
   IMPORTANT: remove shared AppLayout extra padding
   This fixes content starting too far from the left.
========================================================= */
.move-module-shell--module1 .app-layout__content,
.move-module-shell--module1 .app-layout__main,
.move-module-shell--module1 .app-layout__body,
.move-module-shell--module1 .exercise-shell__content,
.move-module-shell--module1 .exercise-shell__body,
.move-module-shell--module1 .exercise-shell__main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* =========================================================
   HERO — dark left + purple right, same MOVE intro feeling
========================================================= */
.move-module-shell--module1 .app-layout__hero,
.move-module-shell--module1 .app-layout-hero,
.move-module-shell--module1 .exercise-shell__hero {
  min-height: 112px !important;
  padding: 22px 26px 20px !important;
  background: radial-gradient(540px 210px at 84% 42%, rgba(111, 65, 186, 0.72) 0%, rgba(83, 49, 143, 0.46) 34%, rgba(43, 31, 67, 0.22) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 50%, #171922 68%, #241a38 100%) !important;
  color: #ffffff !important;
  border-bottom: 0 !important;
}

.move-module-shell--module1 .app-layout__phase-pill,
.move-module-shell--module1 .exercise-shell__phase-pill,
.move-module-shell--module1 .phase-pill {
  height: 22px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(223, 116, 68, 0.58) !important;
  background: rgba(223, 116, 68, 0.1) !important;
  color: #e97845 !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module-shell--module1 .app-layout__title,
.move-module-shell--module1 .exercise-shell__hero-title {
  margin-top: 8px !important;
  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1.08 !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
}

.move-module-shell--module1 .app-layout__title span,
.move-module-shell--module1 .exercise-shell__hero-title span {
  color: #e97845 !important;
}

.move-module-shell--module1 .app-layout__back-link,
.move-module-shell--module1 .exercise-shell__hero-back,
.move-module-shell--module1 .app-layout__hero-back {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

/* =========================================================
   STEPPER — Figma 4 tiny bars only
========================================================= */
.move-module-shell--module1 .step-progress {
  min-height: 34px !important;
  padding: 0 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: #fff8e9 !important;
  border-bottom: 1px solid #efe2cf !important;
}

.move-module-shell--module1 .step-progress__number,
.move-module-shell--module1 .step-progress__label,
.move-module-shell--module1 .step-progress__name,
.move-module-shell--module1 .step-progress__step-name,
.move-module-shell--module1 .step-progress__circle,
.move-module-shell--module1 .step-progress__dot,
.move-module-shell--module1 .step-progress__connector,
.move-module-shell--module1 .step-progress__line {
  display: none !important;
}

.move-module-shell--module1 .step-progress__track,
.move-module-shell--module1 .step-progress__segments,
.move-module-shell--module1 .step-progress__items,
.move-module-shell--module1 .step-progress__list {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.move-module-shell--module1 .step-progress__item,
.move-module-shell--module1 .step-progress__step,
.move-module-shell--module1 .step-progress__segment,
.move-module-shell--module1 .step-progress__bar {
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 3px !important;
  min-height: 3px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(223, 116, 68, 0.18) !important;
  box-shadow: none !important;
}

.move-module-shell--module1 .step-progress__item.is-active,
.move-module-shell--module1 .step-progress__item.is-completed,
.move-module-shell--module1 .step-progress__step.is-active,
.move-module-shell--module1 .step-progress__step.is-completed,
.move-module-shell--module1 .step-progress__segment.is-active,
.move-module-shell--module1 .step-progress__segment.is-completed,
.move-module-shell--module1 .step-progress__bar.is-active,
.move-module-shell--module1 .step-progress__bar.is-completed {
  background: #e6a721 !important;
}

/* =========================================================
   BODY — reduce left spacing to Figma alignment
========================================================= */
.move-module1-step {
  width: 100% !important;
  min-height: calc(100vh - 286px) !important;
  padding: 24px 26px 86px !important;
  margin: 0 !important;
  background: #f6f6f5 !important;
  color: #202631 !important;
}

/* =========================================================
   STEP HEADER
========================================================= */
.move-module1-step .step-header {
  margin: 0 0 20px !important;
  padding: 0 !important;
}

.move-module1-step .step-header__eyebrow,
.move-module1-step .step-header__phase {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 16px !important;
  color: #e0703d !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module1-step .step-header__eyebrow::before,
.move-module1-step .step-header__phase::before {
  content: "";
  width: 45px !important;
  height: 1px !important;
  background: #e0703d !important;
  opacity: 0.72 !important;
}

.move-module1-step .step-header__main-title,
.move-module1-step .step-header__title {
  margin: 0 0 12px !important;
  color: #202631 !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.move-module1-step .step-header__description,
.move-module1-step .step-header__text {
  max-width: 1180px !important;
  margin: 0 !important;
  color: #71767d !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* =========================================================
   BREATHING CARD — full width, compact Figma version
========================================================= */
.move-module1-step__breathing {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 154px !important;
  margin: 8px 0 24px !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.move-module1-step__breathing .breathing-card,
.move-module1-step__breathing .fog-nyc-exercise__breathing-card {
  width: 100% !important;
  min-height: 154px !important;
  padding: 22px 26px !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: 170px minmax(0, 1fr) !important;
  column-gap: 28px !important;
  align-items: center !important;
}

.move-module1-step__breathing .breathing-card__orb-wrap,
.move-module1-step__breathing .breathing-card__visual,
.move-module1-step__breathing .fog-nyc-exercise__breathing-orb-wrap {
  width: 150px !important;
  height: 150px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.move-module1-step__breathing .breathing-card__orb,
.move-module1-step__breathing .fog-nyc-exercise__breathing-orb {
  width: 136px !important;
  height: 136px !important;
  border-radius: 999px !important;
  border: 1px solid #ef8b58 !important;
  background: radial-gradient(circle, rgba(239, 139, 88, 0.26) 0 10px, transparent 11px) !important;
  box-shadow: 0 0 0 14px rgba(239, 139, 88, 0.06) !important;
}

.move-module1-step__breathing .breathing-card__content {
  min-width: 0 !important;
}

.move-module1-step__breathing .breathing-card__title,
.move-module1-step__breathing .breathing-card__phase,
.move-module1-step__breathing .fog-nyc-exercise__breathing-title {
  margin: 0 0 10px !important;
  color: #df7444 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.move-module1-step__breathing .breathing-card__text,
.move-module1-step__breathing .breathing-card__description,
.move-module1-step__breathing .fog-nyc-exercise__breathing-text {
  max-width: 780px !important;
  margin: 0 !important;
  color: #70757d !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* =========================================================
   SELECTABLE GRID — 4 + 2 layout, starts from left
========================================================= */
.move-module1-step__feeling-grid {
  margin-top: 0 !important;
  padding: 0 !important;
}

.move-module1-step__feeling-grid .selectable-grid,
.move-module1-step__feeling-grid .selectable-grid__wrap,
.move-module1-step__feeling-grid .selectable-grid__container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.move-module1-step__feeling-grid .selectable-grid__title,
.move-module1-step__feeling-grid .selectable-grid__section-title {
  margin: 0 0 18px !important;
  color: #30343b !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

.move-module1-step__feeling-grid .selectable-grid__items,
.move-module1-step__feeling-grid .selectable-grid__grid,
.move-module1-step__feeling-grid .selectable-grid__row,
.move-module1-step__feeling-grid .row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px 12px !important;
  margin: 0 !important;
  width: 100% !important;
}

.move-module1-step__feeling-grid [class*=col-] {
  width: auto !important;
  max-width: none !important;
  flex: initial !important;
  padding: 0 !important;
}

.move-module1-step__feeling-grid .move-grounding-option-card {
  width: 100% !important;
  min-height: 112px !important;
  padding: 20px 18px !important;
  border: 1px solid #ecebea !important;
  border-radius: 2px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: #2d333b !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-align: center !important;
}

.move-module1-step__feeling-grid .move-grounding-option-card.active,
.move-module1-step__feeling-grid .move-grounding-option-card.selected,
.move-module1-step__feeling-grid .move-grounding-option-card.is-selected,
.move-module1-step__feeling-grid .move-grounding-option-card[aria-pressed=true] {
  border-color: #df7444 !important;
  background: #fff8f3 !important;
  box-shadow: 0 12px 28px rgba(223, 116, 68, 0.12) !important;
}

.move-module1-step__feeling-grid .move-grounding-option-card img,
.move-module1-step__feeling-grid .move-grounding-option-card .selectable-grid__icon-img,
.move-module1-step__feeling-grid .move-grounding-option-card .selectable-card__icon-img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display: block !important;
}

.move-module1-step__feeling-grid .move-grounding-option-card .selectable-grid__icon,
.move-module1-step__feeling-grid .move-grounding-option-card .selectable-card__icon {
  font-size: 38px !important;
  line-height: 1 !important;
}

.move-module1-step__feeling-grid .move-grounding-option-card .selectable-grid__title,
.move-module1-step__feeling-grid .move-grounding-option-card .selectable-card__title,
.move-module1-step__feeling-grid .move-grounding-option-card .selectable-grid__label,
.move-module1-step__feeling-grid .move-grounding-option-card .selectable-card__label {
  color: #2d333b !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  text-transform: none !important;
}

/* =========================================================
   FOOTER
========================================================= */
.move-module-shell--module1 .app-layout__footer,
.move-module-shell--module1 .exercise-shell__footer {
  min-height: 70px !important;
  padding: 14px 26px !important;
  background: #ffffff !important;
  border-top: 1px solid #e5e1dc !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {
  .move-module1-step__feeling-grid .selectable-grid__items,
  .move-module1-step__feeling-grid .selectable-grid__grid,
  .move-module1-step__feeling-grid .selectable-grid__row,
  .move-module1-step__feeling-grid .row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .move-module1-step__breathing .breathing-card,
  .move-module1-step__breathing .fog-nyc-exercise__breathing-card {
    grid-template-columns: 1fr !important;
    row-gap: 18px !important;
    text-align: center !important;
  }
  .move-module1-step__breathing .breathing-card__orb-wrap,
  .move-module1-step__breathing .breathing-card__visual,
  .move-module1-step__breathing .fog-nyc-exercise__breathing-orb-wrap {
    margin: 0 auto !important;
  }
}
@media (max-width: 575.98px) {
  .move-module1-step {
    padding: 20px 14px 86px !important;
  }
  .move-module1-step__feeling-grid .selectable-grid__items,
  .move-module1-step__feeling-grid .selectable-grid__grid,
  .move-module1-step__feeling-grid .selectable-grid__row,
  .move-module1-step__feeling-grid .row {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================================
   MOVE MODULE 1 — STEP PROGRESS ACTIVE COLOR FIX
   First/current step should be dark gold, remaining should be light
========================================================= */
.move-module-shell--module1 .step-progress__item,
.move-module-shell--module1 .step-progress__step,
.move-module-shell--module1 .step-progress__segment,
.move-module-shell--module1 .step-progress__bar {
  background: rgba(223, 116, 68, 0.2) !important;
}

/* Current/completed step line */
.move-module-shell--module1 .step-progress__item.is-active,
.move-module-shell--module1 .step-progress__item.is-completed,
.move-module-shell--module1 .step-progress__step.is-active,
.move-module-shell--module1 .step-progress__step.is-completed,
.move-module-shell--module1 .step-progress__segment.is-active,
.move-module-shell--module1 .step-progress__segment.is-completed,
.move-module-shell--module1 .step-progress__bar.is-active,
.move-module-shell--module1 .step-progress__bar.is-completed {
  background: #e6a721 !important;
}

/* Fallback if StepProgress uses aria-current for active step */
.move-module-shell--module1 .step-progress__item[aria-current=step],
.move-module-shell--module1 .step-progress__step[aria-current=step] {
  background: #e6a721 !important;
}

/* =========================================================
   MOVE MODULE 1 — HERO COLOR FINAL FIX
   Fixes shared Observe blue hero leaking into MOVE.
   Scoped only to Move Module 1.
========================================================= */
.move-module-shell--module1 .app-header__hero,
.move-module-shell--module1 .app-header__hero-inner,
.move-module-shell--module1 .app-layout__hero,
.move-module-shell--module1 .app-layout__hero-inner,
.move-module-shell--module1 .app-layout-hero,
.move-module-shell--module1 .exercise-shell__hero,
.move-module-shell--module1 .exercise-shell__hero-inner {
  background: radial-gradient(520px 190px at 78% 42%, rgba(100, 55, 174, 0.78) 0%, rgba(73, 39, 132, 0.52) 34%, rgba(42, 27, 72, 0.28) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 44%, #171b25 62%, #261743 100%) !important;
  color: #ffffff !important;
  border-bottom: 0 !important;
}

/* Make the hero area height/spacing match Figma */
.move-module-shell--module1 .app-header__hero-inner,
.move-module-shell--module1 .app-layout__hero-inner,
.move-module-shell--module1 .exercise-shell__hero-inner {
  min-height: 112px !important;
  padding: 22px 26px 20px !important;
}

/* If the outer hero owns the spacing instead */
.move-module-shell--module1 .app-header__hero,
.move-module-shell--module1 .app-layout__hero,
.move-module-shell--module1 .app-layout-hero,
.move-module-shell--module1 .exercise-shell__hero {
  min-height: 112px !important;
}

/* Phase pill */
.move-module-shell--module1 .app-header__phase-pill,
.move-module-shell--module1 .app-layout__phase-pill,
.move-module-shell--module1 .exercise-shell__phase-pill,
.move-module-shell--module1 .phase-pill {
  height: 22px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(223, 116, 68, 0.58) !important;
  background: rgba(223, 116, 68, 0.1) !important;
  color: #e97845 !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

/* Hero title */
.move-module-shell--module1 .app-header__hero-title,
.move-module-shell--module1 .app-layout__title,
.move-module-shell--module1 .exercise-shell__hero-title {
  margin-top: 8px !important;
  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1.08 !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
}

.move-module-shell--module1 .app-header__hero-title span,
.move-module-shell--module1 .app-layout__title span,
.move-module-shell--module1 .exercise-shell__hero-title span {
  color: #e97845 !important;
}

/* Phase intro right link */
.move-module-shell--module1 .app-header__hero-back,
.move-module-shell--module1 .app-layout__back-link,
.move-module-shell--module1 .app-layout__hero-back,
.move-module-shell--module1 .exercise-shell__hero-back {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  background: transparent !important;
}

/* =========================================================
   MOVE MODULE 2 — CLEARING THE PATH
   Figma match | Scoped only to Module 2
========================================================= */
.move-module-shell--module2 {
  background: #f6f6f5 !important;
}

/* Remove shared AppLayout extra padding */
.move-module-shell--module2 .app-layout__content,
.move-module-shell--module2 .app-layout__main,
.move-module-shell--module2 .app-layout__body,
.move-module-shell--module2 .exercise-shell__content,
.move-module-shell--module2 .exercise-shell__body,
.move-module-shell--module2 .exercise-shell__main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* =========================================================
   HERO
========================================================= */
.move-module-shell--module2 .app-header__hero,
.move-module-shell--module2 .app-header__hero-inner,
.move-module-shell--module2 .app-layout__hero,
.move-module-shell--module2 .app-layout__hero-inner,
.move-module-shell--module2 .app-layout-hero,
.move-module-shell--module2 .exercise-shell__hero,
.move-module-shell--module2 .exercise-shell__hero-inner {
  min-height: 112px !important;
  padding: 22px 26px 20px !important;
  background: radial-gradient(520px 190px at 78% 42%, rgba(100, 55, 174, 0.78) 0%, rgba(73, 39, 132, 0.52) 34%, rgba(42, 27, 72, 0.28) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 44%, #171b25 62%, #261743 100%) !important;
  color: #ffffff !important;
  border-bottom: 0 !important;
}

.move-module-shell--module2 .app-header__phase-pill,
.move-module-shell--module2 .app-layout__phase-pill,
.move-module-shell--module2 .exercise-shell__phase-pill,
.move-module-shell--module2 .phase-pill {
  height: 22px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(223, 116, 68, 0.58) !important;
  background: rgba(223, 116, 68, 0.1) !important;
  color: #e97845 !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module-shell--module2 .app-header__hero-title,
.move-module-shell--module2 .app-layout__title,
.move-module-shell--module2 .exercise-shell__hero-title {
  margin-top: 8px !important;
  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1.08 !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
}

.move-module-shell--module2 .app-header__hero-title span,
.move-module-shell--module2 .app-layout__title span,
.move-module-shell--module2 .exercise-shell__hero-title span {
  color: #e97845 !important;
}

.move-module-shell--module2 .app-header__hero-back,
.move-module-shell--module2 .app-layout__back-link,
.move-module-shell--module2 .app-layout__hero-back,
.move-module-shell--module2 .exercise-shell__hero-back {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  background: transparent !important;
}

/* =========================================================
   STEPPER — 4 tiny bars
========================================================= */
.move-module-shell--module2 .step-progress {
  min-height: 34px !important;
  padding: 0 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: #fff8e9 !important;
  border-bottom: 1px solid #efe2cf !important;
}

.move-module-shell--module2 .step-progress__number,
.move-module-shell--module2 .step-progress__label,
.move-module-shell--module2 .step-progress__name,
.move-module-shell--module2 .step-progress__step-name,
.move-module-shell--module2 .step-progress__circle,
.move-module-shell--module2 .step-progress__dot,
.move-module-shell--module2 .step-progress__connector,
.move-module-shell--module2 .step-progress__line {
  display: none !important;
}

.move-module-shell--module2 .step-progress__track,
.move-module-shell--module2 .step-progress__segments,
.move-module-shell--module2 .step-progress__items,
.move-module-shell--module2 .step-progress__list {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.move-module-shell--module2 .step-progress__item,
.move-module-shell--module2 .step-progress__step,
.move-module-shell--module2 .step-progress__segment,
.move-module-shell--module2 .step-progress__bar {
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 3px !important;
  min-height: 3px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(223, 116, 68, 0.18) !important;
  box-shadow: none !important;
}

.move-module-shell--module2 .step-progress__item.is-active,
.move-module-shell--module2 .step-progress__item.is-completed,
.move-module-shell--module2 .step-progress__step.is-active,
.move-module-shell--module2 .step-progress__step.is-completed,
.move-module-shell--module2 .step-progress__segment.is-active,
.move-module-shell--module2 .step-progress__segment.is-completed,
.move-module-shell--module2 .step-progress__bar.is-active,
.move-module-shell--module2 .step-progress__bar.is-completed,
.move-module-shell--module2 .step-progress__item[aria-current=step],
.move-module-shell--module2 .step-progress__step[aria-current=step] {
  background: #e6a721 !important;
}

/* =========================================================
   BODY + HEADER
========================================================= */
.move-module2-step {
  width: 100% !important;
  min-height: calc(100vh - 286px) !important;
  padding: 24px 26px 86px !important;
  margin: 0 !important;
  background: #f6f6f5 !important;
  color: #202631 !important;
}

.move-module2-step .step-header {
  margin: 0 0 20px !important;
  padding: 0 !important;
}

.move-module2-step .step-header__eyebrow,
.move-module2-step .step-header__phase {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 16px !important;
  color: #e0703d !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module2-step .step-header__eyebrow::before,
.move-module2-step .step-header__phase::before {
  content: "";
  width: 45px !important;
  height: 1px !important;
  background: #e0703d !important;
  opacity: 0.72 !important;
}

.move-module2-step .step-header__main-title,
.move-module2-step .step-header__title {
  margin: 0 0 12px !important;
  color: #202631 !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.move-module2-step .step-header__main-title span,
.move-module2-step .step-header__title span {
  color: #df7444 !important;
}

.move-module2-step .step-header__description,
.move-module2-step .step-header__text {
  max-width: 1180px !important;
  margin: 0 !important;
  color: #71767d !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* =========================================================
   STEP 1 — BREATHING + GREEN NOTE
========================================================= */
.move-module2-step__breathing {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 154px !important;
  margin: 8px 0 14px !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.move-module2-step__breathing .breathing-card,
.move-module2-step__breathing .fog-nyc-exercise__breathing-card {
  width: 100% !important;
  min-height: 154px !important;
  padding: 22px 26px !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: 170px minmax(0, 1fr) !important;
  column-gap: 28px !important;
  align-items: center !important;
}

.move-module2-step__breathing .breathing-card__orb-wrap,
.move-module2-step__breathing .breathing-card__visual,
.move-module2-step__breathing .fog-nyc-exercise__breathing-orb-wrap {
  width: 150px !important;
  height: 150px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.move-module2-step__breathing .breathing-card__orb,
.move-module2-step__breathing .fog-nyc-exercise__breathing-orb {
  width: 136px !important;
  height: 136px !important;
  border-radius: 999px !important;
  border: 1px solid #ef8b58 !important;
  background: radial-gradient(circle, rgba(239, 139, 88, 0.26) 0 10px, transparent 11px) !important;
  box-shadow: 0 0 0 14px rgba(239, 139, 88, 0.06) !important;
}

.move-module2-step__breathing .breathing-card__title,
.move-module2-step__breathing .breathing-card__phase,
.move-module2-step__breathing .fog-nyc-exercise__breathing-title {
  margin: 0 0 10px !important;
  color: #df7444 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.move-module2-step__breathing .breathing-card__text,
.move-module2-step__breathing .breathing-card__description,
.move-module2-step__breathing .fog-nyc-exercise__breathing-text {
  max-width: 780px !important;
  margin: 0 !important;
  color: #70757d !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

.move-module2-step__green-note {
  margin: 0 !important;
  padding: 14px 16px !important;
  border-left: 4px solid #21a65b !important;
  background: #dff1e5 !important;
  color: #2f4a38 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

/* =========================================================
   STEP 2 — INNER OBSTACLE GRID
========================================================= */
.move-module2-step__obstacle-grid {
  margin: 18px 0 24px !important;
  padding: 0 !important;
}

.move-module2-step__obstacle-grid .selectable-grid,
.move-module2-step__obstacle-grid .selectable-grid__wrap,
.move-module2-step__obstacle-grid .selectable-grid__container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.move-module2-step__obstacle-grid .selectable-grid__title,
.move-module2-step__obstacle-grid .selectable-grid__section-title {
  display: none !important;
}

.move-module2-step__obstacle-grid .selectable-grid__items,
.move-module2-step__obstacle-grid .selectable-grid__grid,
.move-module2-step__obstacle-grid .selectable-grid__row,
.move-module2-step__obstacle-grid .row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px 12px !important;
  margin: 0 !important;
  width: 100% !important;
}

.move-module2-step__obstacle-grid [class*=col-] {
  width: auto !important;
  max-width: none !important;
  flex: initial !important;
  padding: 0 !important;
}

.move-module2-step__obstacle-grid .move-inner-obstacle-card {
  width: 100% !important;
  min-height: 112px !important;
  padding: 20px 18px !important;
  border: 1px solid #ecebea !important;
  border-radius: 2px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: #2d333b !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-align: center !important;
}

.move-module2-step__obstacle-grid .move-inner-obstacle-card.active,
.move-module2-step__obstacle-grid .move-inner-obstacle-card.selected,
.move-module2-step__obstacle-grid .move-inner-obstacle-card.is-selected,
.move-module2-step__obstacle-grid .move-inner-obstacle-card[aria-pressed=true] {
  border-color: #df7444 !important;
  background: #fff8f3 !important;
  box-shadow: 0 12px 28px rgba(223, 116, 68, 0.12) !important;
}

.move-module2-step__obstacle-grid .move-inner-obstacle-card img,
.move-module2-step__obstacle-grid .move-inner-obstacle-card .selectable-grid__icon-img,
.move-module2-step__obstacle-grid .move-inner-obstacle-card .selectable-card__icon-img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display: block !important;
}

.move-module2-step__obstacle-grid .move-inner-obstacle-card .selectable-grid__icon,
.move-module2-step__obstacle-grid .move-inner-obstacle-card .selectable-card__icon {
  font-size: 38px !important;
  line-height: 1 !important;
}

.move-module2-step__obstacle-grid .move-inner-obstacle-card .selectable-grid__title,
.move-module2-step__obstacle-grid .move-inner-obstacle-card .selectable-card__title,
.move-module2-step__obstacle-grid .move-inner-obstacle-card .selectable-grid__label,
.move-module2-step__obstacle-grid .move-inner-obstacle-card .selectable-card__label {
  color: #2d333b !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  text-transform: none !important;
}

/* =========================================================
   TEXTAREA + HELPER BLOCKS
========================================================= */
.move-module-shell--module2 .move-module2-step .helper-text-block {
  margin: 18px 0 20px !important;
  padding: 16px 18px !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-left: 4px solid #e6a721 !important;
  background: #fff8e9 !important;
  color: #3f3f3f !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

.move-module-shell--module2 .move-module2-step .text-area-block {
  margin: 0 !important;
}

.move-module-shell--module2 .move-module2-step--outer .text-area-block + .text-area-block {
  margin-top: 28px !important;
}

.move-module-shell--module2 .move-module2-step .text-area-block__title,
.move-module-shell--module2 .move-module2-step .text-area-block__label {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 10px !important;
  color: #707985 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.move-module-shell--module2 .move-module2-step .text-area-block__title::after,
.move-module-shell--module2 .move-module2-step .text-area-block__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #9ca1a7;
  opacity: 0.78;
}

.move-module-shell--module2 .move-module2-step textarea,
.move-module-shell--module2 .move-module2-step .text-area-block__control {
  width: 100% !important;
  min-height: 104px !important;
  padding: 14px 14px !important;
  border-radius: 5px !important;
  border: 1px solid #cfd3d8 !important;
  background: #ffffff !important;
  color: #222832 !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.075) !important;
  resize: vertical !important;
}

.move-module-shell--module2 .move-module2-step--inner textarea,
.move-module-shell--module2 .move-module2-step--inner .text-area-block__control,
.move-module-shell--module2 .move-module2-step--outer textarea,
.move-module-shell--module2 .move-module2-step--outer .text-area-block__control {
  min-height: 98px !important;
}

.move-module-shell--module2 .move-module2-step--response textarea,
.move-module-shell--module2 .move-module2-step--response .text-area-block__control {
  min-height: 112px !important;
}

.move-module-shell--module2 .move-module2-step textarea::placeholder,
.move-module-shell--module2 .move-module2-step .text-area-block__control::placeholder {
  color: #b7bcc3 !important;
  font-size: 11px !important;
}

/* =========================================================
   FOOTER
========================================================= */
.move-module-shell--module2 .app-layout__footer,
.move-module-shell--module2 .exercise-shell__footer {
  min-height: 70px !important;
  padding: 14px 26px !important;
  background: #ffffff !important;
  border-top: 1px solid #e5e1dc !important;
}

.move-module-shell--module2 .app-layout__button--primary,
.move-module-shell--module2 .exercise-shell__button--primary {
  min-width: 134px !important;
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 4px !important;
  border: 1px solid #0e1720 !important;
  background: #0e1720 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.move-module-shell--module2 .app-layout__button--secondary,
.move-module-shell--module2 .exercise-shell__button--secondary {
  min-width: 96px !important;
  height: 40px !important;
  padding: 0 16px !important;
  border-radius: 4px !important;
  border: 1px solid #d2d5da !important;
  background: #ffffff !important;
  color: #8b9199 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {
  .move-module2-step__obstacle-grid .selectable-grid__items,
  .move-module2-step__obstacle-grid .selectable-grid__grid,
  .move-module2-step__obstacle-grid .selectable-grid__row,
  .move-module2-step__obstacle-grid .row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .move-module2-step__breathing .breathing-card,
  .move-module2-step__breathing .fog-nyc-exercise__breathing-card {
    grid-template-columns: 1fr !important;
    row-gap: 18px !important;
    text-align: center !important;
  }
  .move-module2-step__breathing .breathing-card__orb-wrap,
  .move-module2-step__breathing .breathing-card__visual,
  .move-module2-step__breathing .fog-nyc-exercise__breathing-orb-wrap {
    margin: 0 auto !important;
  }
}
@media (max-width: 575.98px) {
  .move-module2-step {
    padding: 20px 14px 86px !important;
  }
  .move-module2-step__obstacle-grid .selectable-grid__items,
  .move-module2-step__obstacle-grid .selectable-grid__grid,
  .move-module2-step__obstacle-grid .selectable-grid__row,
  .move-module2-step__obstacle-grid .row {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================================
   MOVE MODULE 3 — WHO WALKS WITH YOU
   Figma match | Scoped only to Module 3
========================================================= */
.move-module-shell--module3 {
  background: #f6f6f5 !important;
}

/* Remove shared AppLayout padding */
.move-module-shell--module3 .app-layout__content,
.move-module-shell--module3 .app-layout__main,
.move-module-shell--module3 .app-layout__body,
.move-module-shell--module3 .exercise-shell__content,
.move-module-shell--module3 .exercise-shell__body,
.move-module-shell--module3 .exercise-shell__main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* HERO */
.move-module-shell--module3 .app-header__hero,
.move-module-shell--module3 .app-header__hero-inner,
.move-module-shell--module3 .app-layout__hero,
.move-module-shell--module3 .app-layout__hero-inner,
.move-module-shell--module3 .app-layout-hero,
.move-module-shell--module3 .exercise-shell__hero,
.move-module-shell--module3 .exercise-shell__hero-inner {
  min-height: 112px !important;
  padding: 22px 26px 20px !important;
  background: radial-gradient(520px 190px at 78% 42%, rgba(100, 55, 174, 0.78) 0%, rgba(73, 39, 132, 0.52) 34%, rgba(42, 27, 72, 0.28) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 44%, #171b25 62%, #261743 100%) !important;
  color: #ffffff !important;
  border-bottom: 0 !important;
}

.move-module-shell--module3 .app-header__phase-pill,
.move-module-shell--module3 .app-layout__phase-pill,
.move-module-shell--module3 .exercise-shell__phase-pill,
.move-module-shell--module3 .phase-pill {
  height: 22px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(223, 116, 68, 0.58) !important;
  background: rgba(223, 116, 68, 0.1) !important;
  color: #e97845 !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module-shell--module3 .app-header__hero-title,
.move-module-shell--module3 .app-layout__title,
.move-module-shell--module3 .exercise-shell__hero-title {
  margin-top: 8px !important;
  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1.08 !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
}

.move-module-shell--module3 .app-header__hero-title span,
.move-module-shell--module3 .app-layout__title span,
.move-module-shell--module3 .exercise-shell__hero-title span {
  color: #e97845 !important;
}

.move-module-shell--module3 .app-header__hero-back,
.move-module-shell--module3 .app-layout__back-link,
.move-module-shell--module3 .app-layout__hero-back,
.move-module-shell--module3 .exercise-shell__hero-back {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  background: transparent !important;
}

/* STEPPER */
.move-module-shell--module3 .step-progress {
  min-height: 34px !important;
  padding: 0 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: #fff8e9 !important;
  border-bottom: 1px solid #efe2cf !important;
}

.move-module-shell--module3 .step-progress__number,
.move-module-shell--module3 .step-progress__label,
.move-module-shell--module3 .step-progress__name,
.move-module-shell--module3 .step-progress__step-name,
.move-module-shell--module3 .step-progress__circle,
.move-module-shell--module3 .step-progress__dot,
.move-module-shell--module3 .step-progress__connector,
.move-module-shell--module3 .step-progress__line {
  display: none !important;
}

.move-module-shell--module3 .step-progress__track,
.move-module-shell--module3 .step-progress__segments,
.move-module-shell--module3 .step-progress__items,
.move-module-shell--module3 .step-progress__list {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.move-module-shell--module3 .step-progress__item,
.move-module-shell--module3 .step-progress__step,
.move-module-shell--module3 .step-progress__segment,
.move-module-shell--module3 .step-progress__bar {
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 3px !important;
  min-height: 3px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(223, 116, 68, 0.18) !important;
  box-shadow: none !important;
}

.move-module-shell--module3 .step-progress__item.is-active,
.move-module-shell--module3 .step-progress__item.is-completed,
.move-module-shell--module3 .step-progress__step.is-active,
.move-module-shell--module3 .step-progress__step.is-completed,
.move-module-shell--module3 .step-progress__segment.is-active,
.move-module-shell--module3 .step-progress__segment.is-completed,
.move-module-shell--module3 .step-progress__bar.is-active,
.move-module-shell--module3 .step-progress__bar.is-completed,
.move-module-shell--module3 .step-progress__item[aria-current=step],
.move-module-shell--module3 .step-progress__step[aria-current=step] {
  background: #e6a721 !important;
}

/* BODY */
.move-module3-step {
  width: 100% !important;
  min-height: calc(100vh - 286px) !important;
  padding: 24px 26px 86px !important;
  margin: 0 !important;
  background: #f6f6f5 !important;
  color: #202631 !important;
}

/* STEP HEADER */
.move-module3-step .step-header {
  margin: 0 0 20px !important;
  padding: 0 !important;
}

.move-module3-step .step-header__eyebrow,
.move-module3-step .step-header__phase {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 16px !important;
  color: #e0703d !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module3-step .step-header__eyebrow::before,
.move-module3-step .step-header__phase::before {
  content: "";
  width: 45px !important;
  height: 1px !important;
  background: #e0703d !important;
  opacity: 0.72 !important;
}

.move-module3-step .step-header__main-title,
.move-module3-step .step-header__title {
  margin: 0 0 12px !important;
  color: #202631 !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.move-module3-step .step-header__main-title span,
.move-module3-step .step-header__title span {
  color: #df7444 !important;
}

.move-module3-step .step-header__description,
.move-module3-step .step-header__text {
  max-width: 1180px !important;
  margin: 0 !important;
  color: #71767d !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* STEP 1 BREATHING */
.move-module3-step__breathing {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 154px !important;
  margin: 8px 0 14px !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.move-module3-step__breathing .breathing-card,
.move-module3-step__breathing .fog-nyc-exercise__breathing-card {
  width: 100% !important;
  min-height: 154px !important;
  padding: 22px 26px !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: 170px minmax(0, 1fr) !important;
  column-gap: 28px !important;
  align-items: center !important;
}

.move-module3-step__breathing .breathing-card__orb-wrap,
.move-module3-step__breathing .breathing-card__visual,
.move-module3-step__breathing .fog-nyc-exercise__breathing-orb-wrap {
  width: 150px !important;
  height: 150px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.move-module3-step__breathing .breathing-card__orb,
.move-module3-step__breathing .fog-nyc-exercise__breathing-orb {
  width: 136px !important;
  height: 136px !important;
  border-radius: 999px !important;
  border: 1px solid #ef8b58 !important;
  background: radial-gradient(circle, rgba(239, 139, 88, 0.26) 0 10px, transparent 11px) !important;
  box-shadow: 0 0 0 14px rgba(239, 139, 88, 0.06) !important;
}

.move-module3-step__breathing .breathing-card__title,
.move-module3-step__breathing .breathing-card__phase,
.move-module3-step__breathing .fog-nyc-exercise__breathing-title {
  margin: 0 0 10px !important;
  color: #df7444 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.move-module3-step__breathing .breathing-card__text,
.move-module3-step__breathing .breathing-card__description,
.move-module3-step__breathing .fog-nyc-exercise__breathing-text {
  max-width: 780px !important;
  margin: 0 !important;
  color: #70757d !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* GREEN NOTE */
.move-module3-step__green-note {
  margin: 0 !important;
  padding: 14px 16px !important;
  border-left: 4px solid #21a65b !important;
  background: #dff1e5 !important;
  color: #2f4a38 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

/* SUPPORT FIELD */
.move-module3-support-field {
  margin: 0 0 26px !important;
}

.move-module3-support-field__hint {
  margin: -6px 0 8px !important;
  color: #70757d !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

/* TEXTAREA */
.move-module-shell--module3 .move-module3-step .text-area-block {
  margin: 0 !important;
}

.move-module-shell--module3 .move-module3-step .text-area-block__title,
.move-module-shell--module3 .move-module3-step .text-area-block__label {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 10px !important;
  color: #707985 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.move-module-shell--module3 .move-module3-step .text-area-block__title::after,
.move-module-shell--module3 .move-module3-step .text-area-block__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #9ca1a7;
  opacity: 0.78;
}

.move-module-shell--module3 .move-module3-step textarea,
.move-module-shell--module3 .move-module3-step .text-area-block__control {
  width: 100% !important;
  min-height: 96px !important;
  padding: 14px 14px !important;
  border-radius: 5px !important;
  border: 1px solid #cfd3d8 !important;
  background: #ffffff !important;
  color: #222832 !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.075) !important;
  resize: vertical !important;
}

.move-module-shell--module3 .move-module3-step--ask textarea,
.move-module-shell--module3 .move-module3-step--ask .text-area-block__control,
.move-module-shell--module3 .move-module3-step--accountability textarea,
.move-module-shell--module3 .move-module3-step--accountability .text-area-block__control {
  min-height: 112px !important;
}

.move-module-shell--module3 .move-module3-step textarea::placeholder,
.move-module-shell--module3 .move-module3-step .text-area-block__control::placeholder {
  color: #b7bcc3 !important;
  font-size: 11px !important;
}

/* HELPER BLOCK STEP 4 */
.move-module-shell--module3 .move-module3-step .helper-text-block {
  margin: 18px 0 20px !important;
  padding: 16px 18px !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-left: 4px solid #e6a721 !important;
  background: #fff8e9 !important;
  color: #3f3f3f !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

/* FOOTER */
.move-module-shell--module3 .app-layout__footer,
.move-module-shell--module3 .exercise-shell__footer {
  min-height: 70px !important;
  padding: 14px 26px !important;
  background: #ffffff !important;
  border-top: 1px solid #e5e1dc !important;
}

.move-module-shell--module3 .app-layout__button--primary,
.move-module-shell--module3 .exercise-shell__button--primary {
  min-width: 134px !important;
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 4px !important;
  border: 1px solid #0e1720 !important;
  background: #0e1720 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.move-module-shell--module3 .app-layout__button--secondary,
.move-module-shell--module3 .exercise-shell__button--secondary {
  min-width: 96px !important;
  height: 40px !important;
  padding: 0 16px !important;
  border-radius: 4px !important;
  border: 1px solid #d2d5da !important;
  background: #ffffff !important;
  color: #8b9199 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

/* =========================================================
   MOVE MODULE 4 — THE 30-DAY EXPERIMENT
   Figma match | Scoped only to Module 4
========================================================= */
.move-module-shell--module4 {
  background: #f6f6f5 !important;
}

/* Remove shared AppLayout padding */
.move-module-shell--module4 .app-layout__content,
.move-module-shell--module4 .app-layout__main,
.move-module-shell--module4 .app-layout__body,
.move-module-shell--module4 .exercise-shell__content,
.move-module-shell--module4 .exercise-shell__body,
.move-module-shell--module4 .exercise-shell__main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* HERO */
.move-module-shell--module4 .app-header__hero,
.move-module-shell--module4 .app-header__hero-inner,
.move-module-shell--module4 .app-layout__hero,
.move-module-shell--module4 .app-layout__hero-inner,
.move-module-shell--module4 .app-layout-hero,
.move-module-shell--module4 .exercise-shell__hero,
.move-module-shell--module4 .exercise-shell__hero-inner {
  min-height: 112px !important;
  padding: 22px 26px 20px !important;
  background: radial-gradient(520px 190px at 78% 42%, rgba(100, 55, 174, 0.78) 0%, rgba(73, 39, 132, 0.52) 34%, rgba(42, 27, 72, 0.28) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 44%, #171b25 62%, #261743 100%) !important;
  color: #ffffff !important;
  border-bottom: 0 !important;
}

.move-module-shell--module4 .app-header__phase-pill,
.move-module-shell--module4 .app-layout__phase-pill,
.move-module-shell--module4 .exercise-shell__phase-pill,
.move-module-shell--module4 .phase-pill {
  height: 22px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(223, 116, 68, 0.58) !important;
  background: rgba(223, 116, 68, 0.1) !important;
  color: #e97845 !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module-shell--module4 .app-header__hero-title,
.move-module-shell--module4 .app-layout__title,
.move-module-shell--module4 .exercise-shell__hero-title {
  margin-top: 8px !important;
  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1.08 !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
}

.move-module-shell--module4 .app-header__hero-title span,
.move-module-shell--module4 .app-layout__title span,
.move-module-shell--module4 .exercise-shell__hero-title span {
  color: #e97845 !important;
}

.move-module-shell--module4 .app-header__hero-back,
.move-module-shell--module4 .app-layout__back-link,
.move-module-shell--module4 .app-layout__hero-back,
.move-module-shell--module4 .exercise-shell__hero-back {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  background: transparent !important;
}

/* STEPPER */
.move-module-shell--module4 .step-progress {
  min-height: 34px !important;
  padding: 0 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: #fff8e9 !important;
  border-bottom: 1px solid #efe2cf !important;
}

.move-module-shell--module4 .step-progress__number,
.move-module-shell--module4 .step-progress__label,
.move-module-shell--module4 .step-progress__name,
.move-module-shell--module4 .step-progress__step-name,
.move-module-shell--module4 .step-progress__circle,
.move-module-shell--module4 .step-progress__dot,
.move-module-shell--module4 .step-progress__connector,
.move-module-shell--module4 .step-progress__line {
  display: none !important;
}

.move-module-shell--module4 .step-progress__track,
.move-module-shell--module4 .step-progress__segments,
.move-module-shell--module4 .step-progress__items,
.move-module-shell--module4 .step-progress__list {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.move-module-shell--module4 .step-progress__item,
.move-module-shell--module4 .step-progress__step,
.move-module-shell--module4 .step-progress__segment,
.move-module-shell--module4 .step-progress__bar {
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 3px !important;
  min-height: 3px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(223, 116, 68, 0.18) !important;
  box-shadow: none !important;
}

.move-module-shell--module4 .step-progress__item.is-active,
.move-module-shell--module4 .step-progress__item.is-completed,
.move-module-shell--module4 .step-progress__step.is-active,
.move-module-shell--module4 .step-progress__step.is-completed,
.move-module-shell--module4 .step-progress__segment.is-active,
.move-module-shell--module4 .step-progress__segment.is-completed,
.move-module-shell--module4 .step-progress__bar.is-active,
.move-module-shell--module4 .step-progress__bar.is-completed,
.move-module-shell--module4 .step-progress__item[aria-current=step],
.move-module-shell--module4 .step-progress__step[aria-current=step] {
  background: #e6a721 !important;
}

/* BODY */
.move-module4-step {
  width: 100% !important;
  min-height: calc(100vh - 286px) !important;
  padding: 24px 26px 86px !important;
  margin: 0 !important;
  background: #f6f6f5 !important;
  color: #202631 !important;
}

/* STEP HEADER */
.move-module4-step .step-header {
  margin: 0 0 20px !important;
  padding: 0 !important;
}

.move-module4-step .step-header__eyebrow,
.move-module4-step .step-header__phase {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 16px !important;
  color: #e0703d !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module4-step .step-header__eyebrow::before,
.move-module4-step .step-header__phase::before {
  content: "";
  width: 45px !important;
  height: 1px !important;
  background: #e0703d !important;
  opacity: 0.72 !important;
}

.move-module4-step .step-header__main-title,
.move-module4-step .step-header__title {
  margin: 0 0 12px !important;
  color: #202631 !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.move-module4-step .step-header__main-title span,
.move-module4-step .step-header__title span {
  color: #df7444 !important;
}

.move-module4-step .step-header__description,
.move-module4-step .step-header__text {
  max-width: 1180px !important;
  margin: 0 !important;
  color: #71767d !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* BREATHING CARD */
.move-module4-step__breathing {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 154px !important;
  margin: 8px 0 14px !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.move-module4-step__breathing .breathing-card,
.move-module4-step__breathing .fog-nyc-exercise__breathing-card {
  width: 100% !important;
  min-height: 154px !important;
  padding: 22px 26px !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: 170px minmax(0, 1fr) !important;
  column-gap: 28px !important;
  align-items: center !important;
}

.move-module4-step__breathing .breathing-card__orb-wrap,
.move-module4-step__breathing .breathing-card__visual,
.move-module4-step__breathing .fog-nyc-exercise__breathing-orb-wrap {
  width: 150px !important;
  height: 150px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.move-module4-step__breathing .breathing-card__orb,
.move-module4-step__breathing .fog-nyc-exercise__breathing-orb {
  width: 136px !important;
  height: 136px !important;
  border-radius: 999px !important;
  border: 1px solid #ef8b58 !important;
  background: radial-gradient(circle, rgba(239, 139, 88, 0.26) 0 10px, transparent 11px) !important;
  box-shadow: 0 0 0 14px rgba(239, 139, 88, 0.06) !important;
}

.move-module4-step__breathing .breathing-card__title,
.move-module4-step__breathing .breathing-card__phase,
.move-module4-step__breathing .fog-nyc-exercise__breathing-title {
  margin: 0 0 10px !important;
  color: #df7444 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.move-module4-step__breathing .breathing-card__text,
.move-module4-step__breathing .breathing-card__description,
.move-module4-step__breathing .fog-nyc-exercise__breathing-text {
  max-width: 780px !important;
  margin: 0 !important;
  color: #70757d !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* GREEN NOTE */
.move-module4-step__green-note {
  margin: 0 !important;
  padding: 14px 16px !important;
  border-left: 4px solid #21a65b !important;
  background: #dff1e5 !important;
  color: #2f4a38 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

/* HELPER BLOCK */
.move-module-shell--module4 .move-module4-step .helper-text-block {
  margin: 18px 0 20px !important;
  padding: 16px 18px !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-left: 4px solid #e6a721 !important;
  background: #fff8e9 !important;
  color: #3f3f3f !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

/* TEXTAREA */
.move-module-shell--module4 .move-module4-step .text-area-block {
  margin: 0 !important;
}

.move-module-shell--module4 .move-module4-step--design .text-area-block + .text-area-block,
.move-module-shell--module4 .move-module4-step--checkins .text-area-block + .text-area-block {
  margin-top: 28px !important;
}

.move-module-shell--module4 .move-module4-step .text-area-block__title,
.move-module-shell--module4 .move-module4-step .text-area-block__label {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 10px !important;
  color: #707985 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.move-module-shell--module4 .move-module4-step .text-area-block__title::after,
.move-module-shell--module4 .move-module4-step .text-area-block__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #9ca1a7;
  opacity: 0.78;
}

.move-module-shell--module4 .move-module4-step textarea,
.move-module-shell--module4 .move-module4-step .text-area-block__control {
  width: 100% !important;
  min-height: 96px !important;
  padding: 14px 14px !important;
  border-radius: 5px !important;
  border: 1px solid #cfd3d8 !important;
  background: #ffffff !important;
  color: #222832 !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.075) !important;
  resize: vertical !important;
}

.move-module-shell--module4 .move-module4-step--drift textarea,
.move-module-shell--module4 .move-module4-step--drift .text-area-block__control {
  min-height: 112px !important;
}

.move-module-shell--module4 .move-module4-step textarea::placeholder,
.move-module-shell--module4 .move-module4-step .text-area-block__control::placeholder {
  color: #b7bcc3 !important;
  font-size: 11px !important;
}

/* FOOTER */
.move-module-shell--module4 .app-layout__footer,
.move-module-shell--module4 .exercise-shell__footer {
  min-height: 70px !important;
  padding: 14px 26px !important;
  background: #ffffff !important;
  border-top: 1px solid #e5e1dc !important;
}

.move-module-shell--module4 .app-layout__button--primary,
.move-module-shell--module4 .exercise-shell__button--primary {
  min-width: 134px !important;
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 4px !important;
  border: 1px solid #0e1720 !important;
  background: #0e1720 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.move-module-shell--module4 .app-layout__button--secondary,
.move-module-shell--module4 .exercise-shell__button--secondary {
  min-width: 96px !important;
  height: 40px !important;
  padding: 0 16px !important;
  border-radius: 4px !important;
  border: 1px solid #d2d5da !important;
  background: #ffffff !important;
  color: #8b9199 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

/* =========================================================
   MOVE MODULE 5 — YOUR MOVE DECLARATION
   Figma match | Scoped only to Module 5
========================================================= */
.move-module-shell--module5 {
  background: #f6f6f5 !important;
}

/* Remove shared AppLayout padding */
.move-module-shell--module5 .app-layout__content,
.move-module-shell--module5 .app-layout__main,
.move-module-shell--module5 .app-layout__body,
.move-module-shell--module5 .exercise-shell__content,
.move-module-shell--module5 .exercise-shell__body,
.move-module-shell--module5 .exercise-shell__main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* HERO */
.move-module-shell--module5 .app-header__hero,
.move-module-shell--module5 .app-header__hero-inner,
.move-module-shell--module5 .app-layout__hero,
.move-module-shell--module5 .app-layout__hero-inner,
.move-module-shell--module5 .app-layout-hero,
.move-module-shell--module5 .exercise-shell__hero,
.move-module-shell--module5 .exercise-shell__hero-inner {
  min-height: 112px !important;
  padding: 22px 26px 20px !important;
  background: radial-gradient(520px 190px at 78% 42%, rgba(100, 55, 174, 0.78) 0%, rgba(73, 39, 132, 0.52) 34%, rgba(42, 27, 72, 0.28) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 44%, #171b25 62%, #261743 100%) !important;
  color: #ffffff !important;
  border-bottom: 0 !important;
}

.move-module-shell--module5 .app-header__phase-pill,
.move-module-shell--module5 .app-layout__phase-pill,
.move-module-shell--module5 .exercise-shell__phase-pill,
.move-module-shell--module5 .phase-pill {
  height: 22px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(223, 116, 68, 0.58) !important;
  background: rgba(223, 116, 68, 0.1) !important;
  color: #e97845 !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module-shell--module5 .app-header__hero-title,
.move-module-shell--module5 .app-layout__title,
.move-module-shell--module5 .exercise-shell__hero-title {
  margin-top: 8px !important;
  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1.08 !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
}

.move-module-shell--module5 .app-header__hero-title span,
.move-module-shell--module5 .app-layout__title span,
.move-module-shell--module5 .exercise-shell__hero-title span {
  color: #e97845 !important;
}

.move-module-shell--module5 .app-header__hero-back,
.move-module-shell--module5 .app-layout__back-link,
.move-module-shell--module5 .app-layout__hero-back,
.move-module-shell--module5 .exercise-shell__hero-back {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  background: transparent !important;
}

/* STEPPER */
.move-module-shell--module5 .step-progress {
  min-height: 34px !important;
  padding: 0 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: #fff8e9 !important;
  border-bottom: 1px solid #efe2cf !important;
}

.move-module-shell--module5 .step-progress__number,
.move-module-shell--module5 .step-progress__label,
.move-module-shell--module5 .step-progress__name,
.move-module-shell--module5 .step-progress__step-name,
.move-module-shell--module5 .step-progress__circle,
.move-module-shell--module5 .step-progress__dot,
.move-module-shell--module5 .step-progress__connector,
.move-module-shell--module5 .step-progress__line {
  display: none !important;
}

.move-module-shell--module5 .step-progress__track,
.move-module-shell--module5 .step-progress__segments,
.move-module-shell--module5 .step-progress__items,
.move-module-shell--module5 .step-progress__list {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.move-module-shell--module5 .step-progress__item,
.move-module-shell--module5 .step-progress__step,
.move-module-shell--module5 .step-progress__segment,
.move-module-shell--module5 .step-progress__bar {
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 3px !important;
  min-height: 3px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(223, 116, 68, 0.18) !important;
  box-shadow: none !important;
}

.move-module-shell--module5 .step-progress__item.is-active,
.move-module-shell--module5 .step-progress__item.is-completed,
.move-module-shell--module5 .step-progress__step.is-active,
.move-module-shell--module5 .step-progress__step.is-completed,
.move-module-shell--module5 .step-progress__segment.is-active,
.move-module-shell--module5 .step-progress__segment.is-completed,
.move-module-shell--module5 .step-progress__bar.is-active,
.move-module-shell--module5 .step-progress__bar.is-completed,
.move-module-shell--module5 .step-progress__item[aria-current=step],
.move-module-shell--module5 .step-progress__step[aria-current=step] {
  background: #e6a721 !important;
}

/* BODY */
.move-module5-step {
  width: 100% !important;
  min-height: calc(100vh - 286px) !important;
  padding: 24px 26px 86px !important;
  margin: 0 !important;
  background: #f6f6f5 !important;
  color: #202631 !important;
}

/* STEP HEADER */
.move-module5-step .step-header {
  margin: 0 0 20px !important;
  padding: 0 !important;
}

.move-module5-step .step-header__eyebrow,
.move-module5-step .step-header__phase {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 16px !important;
  color: #e0703d !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.move-module5-step .step-header__eyebrow::before,
.move-module5-step .step-header__phase::before {
  content: "";
  width: 45px !important;
  height: 1px !important;
  background: #e0703d !important;
  opacity: 0.72 !important;
}

.move-module5-step .step-header__main-title,
.move-module5-step .step-header__title {
  margin: 0 0 12px !important;
  color: #202631 !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.move-module5-step .step-header__main-title span,
.move-module5-step .step-header__title span {
  color: #df7444 !important;
}

.move-module5-step .step-header__description,
.move-module5-step .step-header__text {
  max-width: 1180px !important;
  margin: 0 !important;
  color: #71767d !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* BREATHING */
.move-module5-step__breathing {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 154px !important;
  margin: 8px 0 14px !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.move-module5-step__breathing .breathing-card,
.move-module5-step__breathing .fog-nyc-exercise__breathing-card {
  width: 100% !important;
  min-height: 154px !important;
  padding: 22px 26px !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: 170px minmax(0, 1fr) !important;
  column-gap: 28px !important;
  align-items: center !important;
}

.move-module5-step__breathing .breathing-card__orb-wrap,
.move-module5-step__breathing .breathing-card__visual,
.move-module5-step__breathing .fog-nyc-exercise__breathing-orb-wrap {
  width: 150px !important;
  height: 150px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.move-module5-step__breathing .breathing-card__orb,
.move-module5-step__breathing .fog-nyc-exercise__breathing-orb {
  width: 136px !important;
  height: 136px !important;
  border-radius: 999px !important;
  border: 1px solid #ef8b58 !important;
  background: radial-gradient(circle, rgba(239, 139, 88, 0.26) 0 10px, transparent 11px) !important;
  box-shadow: 0 0 0 14px rgba(239, 139, 88, 0.06) !important;
}

.move-module5-step__breathing .breathing-card__title,
.move-module5-step__breathing .breathing-card__phase,
.move-module5-step__breathing .fog-nyc-exercise__breathing-title {
  margin: 0 0 10px !important;
  color: #df7444 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.move-module5-step__breathing .breathing-card__text,
.move-module5-step__breathing .breathing-card__description,
.move-module5-step__breathing .fog-nyc-exercise__breathing-text {
  max-width: 780px !important;
  margin: 0 !important;
  color: #70757d !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

/* GREEN NOTE */
.move-module5-step__green-note {
  margin: 0 !important;
  padding: 14px 16px !important;
  border-left: 4px solid #21a65b !important;
  background: #dff1e5 !important;
  color: #2f4a38 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

/* TEXTAREA */
.move-module-shell--module5 .move-module5-step .text-area-block {
  margin: 0 !important;
}

.move-module-shell--module5 .move-module5-step--draft .text-area-block + .text-area-block {
  margin-top: 28px !important;
}

.move-module-shell--module5 .move-module5-step .text-area-block__title,
.move-module-shell--module5 .move-module5-step .text-area-block__label {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 10px !important;
  color: #707985 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.move-module-shell--module5 .move-module5-step .text-area-block__title::after,
.move-module-shell--module5 .move-module5-step .text-area-block__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #9ca1a7;
  opacity: 0.78;
}

.move-module-shell--module5 .move-module5-step textarea,
.move-module-shell--module5 .move-module5-step .text-area-block__control {
  width: 100% !important;
  min-height: 96px !important;
  padding: 14px 14px !important;
  border-radius: 5px !important;
  border: 1px solid #cfd3d8 !important;
  background: #ffffff !important;
  color: #222832 !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.075) !important;
  resize: vertical !important;
}

.move-module-shell--module5 .move-module5-step--refine textarea,
.move-module-shell--module5 .move-module5-step--refine .text-area-block__control {
  min-height: 92px !important;
}

.move-module-shell--module5 .move-module5-step textarea::placeholder,
.move-module-shell--module5 .move-module5-step .text-area-block__control::placeholder {
  color: #b7bcc3 !important;
  font-size: 11px !important;
}

/* DECLARATION PREVIEW */
.move-module5-declaration-preview,
.move-module5-commitment-card {
  margin-top: 28px !important;
  padding: 20px 22px !important;
  border-radius: 3px !important;
  background: radial-gradient(520px 190px at 82% 40%, rgba(100, 55, 174, 0.78) 0%, rgba(73, 39, 132, 0.52) 34%, rgba(42, 27, 72, 0.28) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 44%, #171b25 62%, #261743 100%) !important;
  color: #ffffff !important;
}

.move-module5-declaration-preview__label,
.move-module5-commitment-card__label {
  margin: 0 0 12px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

.move-module5-declaration-preview__empty,
.move-module5-commitment-card__empty,
.move-module5-declaration-preview__text,
.move-module5-commitment-card__text {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
}

/* DECLARE GRID */
.move-module5-declare-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 22px 0 16px !important;
}

.move-module5-date-field label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 8px !important;
  color: #707985 !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.move-module5-date-field label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #9ca1a7;
  opacity: 0.78;
}

.move-module5-date-field input {
  width: 100% !important;
  height: 38px !important;
  padding: 0 12px !important;
  border-radius: 2px !important;
  border: 1px solid #bfc4ca !important;
  background: #ffffff !important;
  color: #222832 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}

/* FOOTER */
.move-module-shell--module5 .app-layout__footer,
.move-module-shell--module5 .exercise-shell__footer {
  min-height: 70px !important;
  padding: 14px 26px !important;
  background: #ffffff !important;
  border-top: 1px solid #e5e1dc !important;
}

.move-module-shell--module5 .app-layout__button--primary,
.move-module-shell--module5 .exercise-shell__button--primary {
  min-width: 134px !important;
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 4px !important;
  border: 1px solid #0e1720 !important;
  background: #0e1720 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.move-module-shell--module5 .app-layout__button--secondary,
.move-module-shell--module5 .exercise-shell__button--secondary {
  min-width: 96px !important;
  height: 40px !important;
  padding: 0 16px !important;
  border-radius: 4px !important;
  border: 1px solid #d2d5da !important;
  background: #ffffff !important;
  color: #8b9199 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

@media (max-width: 767.98px) {
  .move-module5-declare-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================================
   MOVE SYNTHESIS
   Figma match | Scoped only to MoveSynthesis
========================================================= */
.move-synthesis-page {
  min-height: 100%;
  background: #f6f6f5;
  color: #202631;
  overflow-x: hidden;
}

.move-synthesis-state {
  padding: 32px;
  color: #6f737a;
  font-size: 14px;
  font-weight: 600;
}

.move-synthesis-state--error {
  color: #b42318;
}

/* =========================================================
   HERO
========================================================= */
.move-synthesis-hero {
  min-height: 112px;
  background: radial-gradient(520px 190px at 78% 42%, rgba(100, 55, 174, 0.78) 0%, rgba(73, 39, 132, 0.52) 34%, rgba(42, 27, 72, 0.28) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 44%, #171b25 62%, #261743 100%);
  color: #ffffff;
}

.move-synthesis-hero__content {
  padding: 22px 26px 20px;
}

.move-synthesis-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.move-synthesis-hero__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(223, 116, 68, 0.75);
  background: rgba(223, 116, 68, 0.18);
  color: #e97845;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.move-synthesis-hero__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.move-synthesis-hero__title {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.move-synthesis-hero__title span {
  color: #e97845;
}

.move-synthesis-hero__subtitle {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.55;
  font-weight: 500;
}

.move-synthesis-hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 2px;
  flex-shrink: 0;
}

.move-synthesis-hero__ghost-btn,
.move-synthesis-hero__module-pill {
  height: 28px;
  padding: 0 12px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* =========================================================
   CONTENT
========================================================= */
.move-synthesis-content {
  padding: 18px 26px 28px;
  background: #f6f6f5;
}

.move-synthesis-banner {
  min-height: 88px;
  padding: 22px 24px;
  border-radius: 3px;
  background: radial-gradient(520px 190px at 82% 40%, rgba(100, 55, 174, 0.78) 0%, rgba(73, 39, 132, 0.52) 34%, rgba(42, 27, 72, 0.28) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 44%, #171b25 62%, #261743 100%);
  color: #ffffff;
}

.move-synthesis-banner__eyebrow {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.move-synthesis-banner h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.move-synthesis-banner h2 span,
.move-synthesis-banner h2 strong {
  color: #e97845;
}

.move-synthesis-banner p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10.5px;
  line-height: 1.55;
  font-weight: 500;
}

/* =========================================================
   STATS
========================================================= */
.move-synthesis-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 520px;
  max-width: 100%;
  margin: 22px auto 24px;
  border: 1px solid #d9d6d0;
  border-radius: 3px;
  overflow: hidden;
  background: #ffffff;
}

.move-synthesis-stat {
  min-height: 76px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-right: 1px solid #d9d6d0;
  text-align: center;
}

.move-synthesis-stat:last-child {
  border-right: 0;
}

.move-synthesis-stat strong {
  color: #df7444;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.move-synthesis-stat span {
  color: #30343b;
  font-size: 8.5px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================
   SECTION TITLE
========================================================= */
.move-synthesis-section {
  margin-top: 10px;
}

.move-synthesis-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}

.move-synthesis-section-title span {
  color: #6f7b88;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.move-synthesis-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #9ca1a7;
  opacity: 0.78;
}

/* =========================================================
   SYNTHESIS CARDS
========================================================= */
.move-synthesis-card {
  position: relative;
  width: 100%;
  min-height: 108px;
  margin: 0 0 18px;
  padding: 22px 24px 20px;
  border-radius: 4px;
  overflow: hidden;
  background: radial-gradient(560px 210px at 82% 40%, rgba(100, 55, 174, 0.74) 0%, rgba(73, 39, 132, 0.5) 34%, rgba(42, 27, 72, 0.26) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 45%, #171b25 62%, #261743 100%);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.move-synthesis-card--green {
  background: radial-gradient(560px 210px at 82% 40%, rgba(20, 110, 55, 0.7) 0%, rgba(13, 80, 43, 0.42) 34%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 45%, #173b24 100%);
}

.move-synthesis-card__label {
  display: block;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.move-synthesis-card h3 {
  max-width: 1050px;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.move-synthesis-card p {
  max-width: 1080px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.6;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.move-synthesis-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.move-synthesis-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.move-synthesis-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 11px;
}

.move-synthesis-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* =========================================================
   ACTION
========================================================= */
.move-synthesis-actions {
  margin-top: 18px;
  padding-left: 18px;
}

.move-synthesis-primary-btn {
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 3px;
  background: #0e1720;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
}

.move-synthesis-primary-btn:hover {
  background: #182331;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {
  .move-synthesis-hero__row {
    flex-direction: column;
  }
  .move-synthesis-hero__actions {
    padding-top: 0;
  }
  .move-synthesis-content {
    padding: 18px 18px 28px;
  }
}
@media (max-width: 767.98px) {
  .move-synthesis-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .move-synthesis-stat:nth-child(2) {
    border-right: 0;
  }
  .move-synthesis-stat:nth-child(1),
  .move-synthesis-stat:nth-child(2) {
    border-bottom: 1px solid #d9d6d0;
  }
  .move-synthesis-card {
    padding: 18px 18px;
  }
  .move-synthesis-actions {
    padding-left: 0;
  }
}
/* =========================================================
   MOVE SYNTHESIS — FINAL FIGMA CARD FIX
   Paste at bottom of MoveSynthesis.razor.scss
========================================================= */
/* Main page spacing */
.move-synthesis-page .move-synthesis-content {
  padding: 18px 22px 32px !important;
  background: #f6f6f5 !important;
}

/* Section heading */
.move-synthesis-page .move-synthesis-section {
  margin-top: 0 !important;
}

.move-synthesis-page .move-synthesis-section-title {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 14px !important;
}

.move-synthesis-page .move-synthesis-section-title span {
  color: #6f7b88 !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.move-synthesis-page .move-synthesis-section-title::after {
  content: "" !important;
  flex: 1 !important;
  height: 1px !important;
  background: #9ca1a7 !important;
  opacity: 0.78 !important;
}

/* Card spacing — this is the main fix */
.move-synthesis-page .move-synthesis-card {
  position: relative !important;
  width: 100% !important;
  min-height: 84px !important;
  margin: 0 0 14px !important;
  padding: 20px 24px !important;
  border-radius: 3px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  color: #ffffff !important;
  box-shadow: none !important;
  background: radial-gradient(560px 210px at 82% 42%, rgba(100, 55, 174, 0.72) 0%, rgba(73, 39, 132, 0.5) 34%, rgba(42, 27, 72, 0.25) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 46%, #171b25 62%, #261743 100%) !important;
}

/* Green declaration card */
.move-synthesis-page .move-synthesis-card.move-synthesis-card--green {
  background: radial-gradient(560px 210px at 82% 42%, rgba(20, 110, 55, 0.68) 0%, rgba(13, 80, 43, 0.46) 34%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 46%, #173b24 100%) !important;
}

/* Card label */
.move-synthesis-page .move-synthesis-card__label {
  display: block !important;
  width: 100% !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
}

/* Main value */
.move-synthesis-page .move-synthesis-card h3 {
  display: block !important;
  width: 100% !important;
  max-width: 1080px !important;
  margin: 0 0 7px !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere !important;
}

/* Description / empty text */
.move-synthesis-page .move-synthesis-card p {
  display: block !important;
  width: 100% !important;
  max-width: 1080px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 10.5px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere !important;
}

/* Date pills */
.move-synthesis-page .move-synthesis-card__meta {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 12px 0 0 !important;
  padding: 0 !important;
}

.move-synthesis-page .move-synthesis-card__meta span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 24px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 9.5px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
}

/* Button spacing */
.move-synthesis-page .move-synthesis-actions {
  margin-top: 18px !important;
  padding-left: 18px !important;
}

.move-synthesis-page .move-synthesis-primary-btn {
  height: 36px !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: #0e1720 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

/* =========================================================
   MOVE GUIDE CHAT — FINAL PRODUCTION OVERRIDE
   Works only when parent renders:
   <MoveGuidedChat SubmitEnableComponent="HandleEnableComponent" />
========================================================= */
.move-guide-chat-page {
  min-height: 100%;
  padding: 32px 42px 28px;
  background: #f6f6f5;
}

/* Keep reusable GuidedChat full width inside Move shell */
.move-guide-chat-page .container-fluid {
  max-width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Reduce default bootstrap vertical spacing */
.move-guide-chat-page .d-flex.flex-column.gap-4,
.move-guide-chat-page .d-flex.flex-column.gap-lg-5 {
  gap: 22px !important;
}

/* =========================================================
   HERO
========================================================= */
.move-guide-chat-page .guided-chat-hero--move {
  width: 100%;
  min-height: 108px;
  padding: 24px 28px;
  border-radius: 4px;
  color: #ffffff;
  overflow: hidden;
  background: radial-gradient(560px 210px at 82% 42%, rgba(100, 55, 174, 0.76) 0%, rgba(73, 39, 132, 0.5) 34%, rgba(42, 27, 72, 0.25) 58%, rgba(17, 24, 32, 0) 78%), linear-gradient(90deg, #111820 0%, #111820 44%, #171b25 62%, #261743 100%);
}

.move-guide-chat-page .guided-chat-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.move-guide-chat-page .guided-chat-hero__identity {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.move-guide-chat-page .guided-chat-accent--move {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(122, 76, 203, 0.34);
  border: 1px solid rgba(190, 163, 255, 0.44);
  color: #ffffff;
}

.move-guide-chat-page .guided-chat-accent--move svg {
  width: 28px;
  height: 28px;
}

.move-guide-chat-page .guided-chat-hero__copy {
  min-width: 0;
}

.move-guide-chat-page .guided-chat-hero__eyebrow {
  margin: 0 0 7px;
  color: #e6ad59;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.move-guide-chat-page .guided-chat-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.move-guide-chat-page .guided-chat-hero__subtitle {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.move-guide-chat-page .guided-chat-active--move {
  color: #7ee66f;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

/* Hide summary/tags if Move design does not need them */
.move-guide-chat-page .guided-chat-hero__summary,
.move-guide-chat-page .guided-chat-hero__tags {
  display: none !important;
}

/* =========================================================
   INTRO CARD
========================================================= */
.move-guide-chat-page .guided-chat-intro-icon--move {
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7b4ce2;
  background: #ffffff;
  border: 1px solid rgba(123, 76, 226, 0.5);
  font-size: 18px;
  line-height: 1;
}

.move-guide-chat-page .guided-chat-intro-icon--move + .bg-white {
  min-height: 72px;
  border-radius: 4px !important;
  padding: 22px 28px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
}

.move-guide-chat-page .guided-chat-intro-icon--move + .bg-white p {
  margin: 0 !important;
  color: #6f737a !important;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 500;
}

/* =========================================================
   CHAT MESSAGE AREA
========================================================= */
.move-guide-chat-page section.bg-white.rounded-3.px-4.py-4.d-flex.flex-column.gap-3 {
  border-radius: 4px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
}

.move-guide-chat-page section.bg-white.rounded-3.px-4.py-4.d-flex.flex-column.gap-3:nth-of-type(3) {
  min-height: 130px;
  padding: 24px 28px !important;
}

.move-guide-chat-page .bg-light.rounded-3 {
  border-radius: 4px !important;
  background: #ffffff !important;
  color: #30343b !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  font-size: 12px;
  line-height: 1.45;
}

.move-guide-chat-page .bg-body-tertiary.rounded-3 {
  border-radius: 4px !important;
  background: #f3f0fb !important;
  color: #30343b !important;
  font-size: 12px;
  line-height: 1.45;
}

.move-guide-chat-page .border.rounded-circle {
  width: 34px;
  height: 34px;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(123, 76, 226, 0.55) !important;
  background: #f8f5ff;
  color: #111820;
}

/* =========================================================
   INPUT PANEL
========================================================= */
.move-guide-chat-page section.bg-white.rounded-3.px-4.py-4.d-flex.flex-column.gap-3:nth-of-type(4) {
  margin-top: 34px;
  padding: 22px 24px !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
}

.move-guide-chat-page section.bg-white.rounded-3.px-4.py-4.d-flex.flex-column.gap-3:nth-of-type(4) h3 {
  margin: 0;
  color: #111820 !important;
  font-size: 11px;
  line-height: 1;
  font-weight: 900 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.move-guide-chat-page textarea.form-control {
  min-height: 104px;
  border-radius: 4px;
  border: 1px solid #cfd3d8;
  background: #ffffff;
  color: #222832;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  resize: vertical;
  box-shadow: none;
}

.move-guide-chat-page textarea.form-control:focus {
  border-color: rgba(123, 76, 226, 0.72);
  box-shadow: 0 0 0 3px rgba(123, 76, 226, 0.12);
}

.move-guide-chat-page textarea.form-control::placeholder {
  color: #aeb4bd;
}

.move-guide-chat-page .guided-chat-send--move {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 4px;
  background: #e0ad32;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  box-shadow: none;
}

.move-guide-chat-page .guided-chat-send--move:hover:not(:disabled) {
  background: #cb9c2b;
}

.move-guide-chat-page .guided-chat-send--move:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* =========================================================
   FOOTER BUTTONS
========================================================= */
.move-guide-chat-page__footer {
  margin-top: 22px;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.move-guide-chat-page__primary-btn,
.move-guide-chat-page__secondary-btn {
  height: 38px;
  padding: 0 16px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.move-guide-chat-page__primary-btn {
  border: 0;
  background: #0e1720;
  color: #ffffff;
}

.move-guide-chat-page__primary-btn:hover {
  background: #182331;
}

.move-guide-chat-page__secondary-btn {
  border: 1px solid #cfd3d8;
  background: #ffffff;
  color: #111820;
}

.move-guide-chat-page__secondary-btn:hover {
  border-color: #111820;
  background: #f2f2f1;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {
  .move-guide-chat-page {
    padding: 22px 18px 24px;
  }
  .move-guide-chat-page .guided-chat-hero--move {
    padding: 22px 20px;
  }
  .move-guide-chat-page .guided-chat-hero__top {
    align-items: flex-start;
  }
  .move-guide-chat-page .guided-chat-hero__title {
    font-size: 21px;
  }
  .move-guide-chat-page .guided-chat-active--move {
    display: none;
  }
  .move-guide-chat-page__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .move-guide-chat-page__primary-btn,
  .move-guide-chat-page__secondary-btn {
    width: 100%;
  }
}
/* =========================================================
   MOVE INSIGHTS — FINAL FIGMA CARD MATCH
   Paste at bottom of MoveInsights.razor.scss
========================================================= */
/* Overall page content spacing */
.move-insights-page {
  padding: 34px 42px 28px !important;
  background: #f6f5f3 !important;
}

/* Header spacing */
.move-insights-page__header {
  margin-bottom: 22px !important;
}

.move-insights-page__header h1 {
  font-size: 25px !important;
  line-height: 1.1 !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em !important;
}

.move-insights-page__header h1 span {
  color: #e8743e !important;
}

/* Header buttons */
.move-insights-page__auto-btn,
.move-insights-page__outline-btn {
  height: 32px !important;
  border-radius: 4px !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
}

.move-insights-page__auto-btn {
  padding: 0 14px !important;
  background: #111820 !important;
  color: #ffffff !important;
}

.move-insights-page__outline-btn {
  padding: 0 13px !important;
  border: 1px solid #111820 !important;
  background: #ffffff !important;
  color: #111820 !important;
}

/* =========================================================
   SUMMARY CARD — light purple, clean Figma spacing
========================================================= */
.move-insights-summary-card {
  position: relative !important;
  min-height: 132px !important;
  padding: 17px 18px 14px !important;
  border: 1px solid #e5d4ff !important;
  border-radius: 2px !important;
  overflow: hidden !important;
  background: radial-gradient(260px 145px at 96% 86%, rgba(236, 118, 70, 0.15) 0%, rgba(236, 118, 70, 0.08) 34%, rgba(255, 255, 255, 0) 72%), linear-gradient(90deg, #ffffff 0%, #fbf8ff 48%, #fff8f5 100%) !important;
  box-shadow: none !important;
}

.move-insights-summary-card__top {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 10px !important;
}

.move-insights-summary-card__label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  color: #111820 !important;
  font-size: 8px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.move-insights-summary-card__label span {
  color: #7d4ff0 !important;
  font-size: 12px !important;
}

.move-insights-summary-card__edit-btn {
  height: 29px !important;
  padding: 0 12px !important;
  border-radius: 3px !important;
  border: 1px solid #cfd3d8 !important;
  background: #ffffff !important;
  color: #29313b !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-size: 9.5px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.move-insights-summary-card h2 {
  max-width: 1040px !important;
  margin: 0 0 8px !important;
  color: #07111f !important;
  font-size: 15.2px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  letter-spacing: -0.012em !important;
}

.move-insights-summary-card p {
  max-width: 1110px !important;
  margin: 0 !important;
  color: #263241 !important;
  font-size: 10.6px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.move-insights-summary-card__chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin-top: 10px !important;
}

.move-insights-summary-card__chips span {
  height: 18px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  background: #f0e4ff !important;
  border: 1px solid #d7bcff !important;
  color: #7b45d9 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 8px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.015em !important;
}

.move-insights-summary-card__sparkle {
  position: absolute !important;
  right: 17px !important;
  bottom: 12px !important;
  color: #edb8a0 !important;
  font-size: 27px !important;
  line-height: 1 !important;
}

/* =========================================================
   ARC TITLE
========================================================= */
.move-insights-arc-title {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 24px 0 20px !important;
}

.move-insights-arc-title span {
  color: #4e5966 !important;
  font-size: 9.5px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.move-insights-arc-title::after {
  content: "" !important;
  flex: 1 !important;
  height: 1px !important;
  background: #7e858d !important;
  opacity: 0.85 !important;
}

/* =========================================================
   FOUR PHASE ARC CARDS — Figma spacing + balanced cards
========================================================= */
.move-insights-arc-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px 24px !important;
  margin-bottom: 64px !important;
}

.move-insights-arc-card {
  min-height: 112px !important;
  padding: 24px 28px !important;
  border-radius: 2px !important;
  color: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.move-insights-arc-card h3 {
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 15.5px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

.move-insights-arc-card h4 {
  margin: 0 0 7px !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.96) !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  letter-spacing: 0.005em !important;
}

.move-insights-arc-card p {
  max-width: 520px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 9px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

/* Card gradients */
.move-insights-arc-card--fog {
  background: radial-gradient(420px 175px at 10% 0%, rgba(117, 65, 45, 0.78) 0%, rgba(61, 39, 35, 0.6) 38%, rgba(17, 24, 32, 0) 76%), linear-gradient(90deg, #5a3321 0%, #151b22 78%, #111820 100%) !important;
}

.move-insights-arc-card--observe {
  background: radial-gradient(420px 175px at 10% 0%, rgba(34, 91, 124, 0.78) 0%, rgba(24, 61, 85, 0.58) 38%, rgba(17, 24, 32, 0) 76%), linear-gradient(90deg, #17394f 0%, #151b22 78%, #111820 100%) !important;
}

.move-insights-arc-card--reconnect {
  background: radial-gradient(420px 175px at 10% 0%, rgba(18, 118, 61, 0.8) 0%, rgba(14, 82, 47, 0.6) 38%, rgba(17, 24, 32, 0) 76%), linear-gradient(90deg, #0e7338 0%, #151b22 78%, #111820 100%) !important;
}

.move-insights-arc-card--move {
  background: radial-gradient(420px 175px at 10% 0%, rgba(94, 56, 166, 0.82) 0%, rgba(67, 43, 121, 0.62) 38%, rgba(17, 24, 32, 0) 76%), linear-gradient(90deg, #55348a 0%, #151b22 78%, #111820 100%) !important;
}

/* =========================================================
   FOOTER BUTTONS
========================================================= */
.move-insights-footer {
  min-height: 67px !important;
  padding: 18px 0 0 !important;
  border-top: 1px solid #d7d3cf !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
}

.move-insights-footer__back,
.move-insights-footer__primary {
  height: 32px !important;
  padding: 0 15px !important;
  border-radius: 3px !important;
  border: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

.move-insights-footer__back {
  min-width: 138px !important;
  background: #e2dfdb !important;
  color: #a09b95 !important;
}

.move-insights-footer__primary {
  min-width: 138px !important;
  background: #0ca13a !important;
  color: #ffffff !important;
}

/* Keep bottom capture button only if your Razor has it */
.move-insights-bottom-action {
  padding: 18px 0 0 !important;
}

.move-insights-bottom-action__btn {
  height: 33px !important;
  min-width: 176px !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: #111820 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .move-insights-page {
    padding: 28px 22px !important;
  }
  .move-insights-page__header {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
  .move-insights-page__actions {
    width: 100% !important;
    flex-wrap: wrap !important;
  }
  .move-insights-arc-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================================
   MOVE INSIGHTS DRAWER — RIGHT SIDE FIGMA PANEL
========================================================= */
.move-insights-drawer-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: stretch !important;
  background: rgba(18, 20, 25, 0.52) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.move-insights-drawer {
  width: 400px !important;
  max-width: 400px !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: -20px 0 46px rgba(0, 0, 0, 0.22) !important;
}

/* Header */
.move-insights-drawer__header {
  height: 58px !important;
  padding: 0 14px 0 18px !important;
  border-bottom: 1px solid #e1e4e8 !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-shrink: 0 !important;
}

.move-insights-drawer__header h2 {
  margin: 0 !important;
  color: #111820 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

/* Close button */
.move-insights-drawer__close {
  width: 24px !important;
  height: 24px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #111820 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}

/* Body */
.move-insights-drawer__body {
  flex: 1 !important;
  padding: 38px 14px 20px !important;
  background: #ffffff !important;
  overflow-y: auto !important;
}

.move-insights-drawer__textarea {
  width: 100% !important;
  min-height: 156px !important;
  padding: 16px !important;
  border: 1px solid #d5d9df !important;
  border-radius: 7px !important;
  background: #ffffff !important;
  color: #111820 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
  resize: vertical !important;
  outline: none !important;
  box-shadow: none !important;
}

.move-insights-drawer__textarea:focus {
  border-color: #b7bec8 !important;
  box-shadow: 0 0 0 3px rgba(17, 24, 32, 0.06) !important;
}

.move-insights-drawer__count {
  margin-top: 7px !important;
  color: #9da3ad !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  text-align: right !important;
}

/* Footer */
.move-insights-drawer__footer {
  height: 76px !important;
  padding: 0 14px !important;
  border-top: 1px solid #e4e6e9 !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-shrink: 0 !important;
}

.move-insights-drawer__cancel,
.move-insights-drawer__save {
  height: 33px !important;
  padding: 0 15px !important;
  border-radius: 3px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

.move-insights-drawer__cancel {
  border: 1px solid #cfd3d8 !important;
  background: #ffffff !important;
  color: #a0a6ae !important;
}

.move-insights-drawer__save {
  border: 0 !important;
  background: #111820 !important;
  color: #ffffff !important;
}

@media (max-width: 640px) {
  .move-insights-drawer {
    width: 92vw !important;
    max-width: 92vw !important;
  }
}
/* =========================================================
   MOVE INSIGHTS HEADER — FIGMA EXACT COMPACT FIX
========================================================= */
.move-insights-page {
  padding-top: 32px !important;
}

/* Header row */
.move-insights-page__header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

/* Title: "Summarized insights" */
.move-insights-page__header h1 {
  margin: 0 !important;
  color: #111820 !important;
  font-size: 20px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

.move-insights-page__header h1 span {
  color: #e8743e !important;
  font-weight: 700 !important;
}

/* Right actions wrapper */
.move-insights-page__actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* Common button reset */
.move-insights-page__auto-btn,
.move-insights-page__outline-btn {
  height: 32px !important;
  min-height: 32px !important;
  border-radius: 5px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  white-space: nowrap !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  box-shadow: none !important;
}

/* Black button */
.move-insights-page__auto-btn {
  padding: 0 14px !important;
  border: 0 !important;
  background: #111820 !important;
  color: #ffffff !important;
}

/* White outline button */
.move-insights-page__outline-btn {
  padding: 0 14px !important;
  border: 1px solid #111820 !important;
  background: #ffffff !important;
  color: #111820 !important;
}

/* Button icons */
.move-insights-page__auto-btn span,
.move-insights-page__outline-btn span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

.journey-module-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: nowrap;
}

.journey-module-card__button {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 4px;
  height: 46px;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transition: all 0.2s ease;
}

.journey-module-card__button--primary {
  background-color: #061426;
  border: 1px solid #061426;
  color: #ffffff;
  min-width: 268px;
}

.journey-module-card__button--primary:hover,
.journey-module-card__button--primary:focus,
.journey-module-card__button--primary:focus-visible {
  background-color: #061426;
  border-color: #061426;
  color: #ffffff;
  outline: none;
  box-shadow: none;
}

.journey-module-card__button--secondary {
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
  color: #b8bcc4;
  min-width: 150px;
}

.journey-module-card__button--secondary:hover,
.journey-module-card__button--secondary:focus,
.journey-module-card__button--secondary:focus-visible,
.journey-module-card__button--secondary:disabled {
  background-color: #ffffff;
  border-color: #d6d6d6;
  color: #b8bcc4;
  opacity: 1;
  outline: none;
  box-shadow: none;
  cursor: not-allowed;
}

.journey-module-card__button i {
  font-size: 18px;
  line-height: 1;
}

/* ============================================================
   MOVE MODULE COMMON STEPPER
   Applies only inside Move modules.
   Will NOT affect Fog / Observe / Reconnect steppers.
   ============================================================ */
.move-module-shell .step-progress--bar {
  background: #fff7ec;
  border-bottom: 1px solid rgba(238, 176, 93, 0.24);
  padding: 20px 48px 22px;
}

.move-module-shell .step-progress__bars {
  display: flex;
  align-items: center;
  gap: 10px;
}

.move-module-shell .step-progress__bar {
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: #f4dec6;
  opacity: 1;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

/* Completed previous steps */
.move-module-shell .step-progress__bar.is-completed {
  background: #f2a51e;
}

/* Current active step */
.move-module-shell .step-progress__bar.is-active {
  background: #f2a51e;
}

/* Future steps */
.move-module-shell .step-progress__bar.is-upcoming {
  background: #f4dec6;
}

.midpoint-page {
  min-height: 100vh;
  background: #563f3f;
  padding: 32px 36px;
}

.midpoint-frame {
  min-height: calc(100vh - 64px);
  background: #ffffff;
  border: 1px solid #e6e2df;
  display: flex;
  flex-direction: column;
}

.midpoint-header {
  height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid #e8e4e1;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.midpoint-brand {
  display: flex;
  align-items: center;
}

.midpoint-brand__logo {
  height: 27px;
  width: auto;
  display: block;
}

.midpoint-header__welcome {
  justify-self: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #3f3f46;
}

.midpoint-header__skip {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f3137;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}

.midpoint-header__skip:hover,
.midpoint-header__skip:focus {
  color: #111827;
  background: transparent;
  box-shadow: none;
}

.midpoint-content {
  flex: 1;
  padding: 52px 52px 48px;
}

.midpoint-step {
  max-width: 100%;
}

.midpoint-intro {
  margin-bottom: 28px;
}

.midpoint-title {
  margin: 0 0 13px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.midpoint-title span {
  color: #dc6638;
  font-weight: 500;
}

.midpoint-subtitle {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  color: #6b7280;
}

.midpoint-field {
  margin-bottom: 30px;
}

.midpoint-field--last {
  margin-bottom: 0;
}

.midpoint-label {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #243044;
}

.midpoint-options {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 12px;
}

.midpoint-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 20px;
  cursor: pointer;
  user-select: none;
}

.midpoint-check__input {
  appearance: none;
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  min-width: 13px;
  margin: 0;
  border: 1px solid #8f8f8f;
  border-radius: 2px;
  background: #ffffff;
  cursor: pointer;
}

.midpoint-check__input:checked {
  background-color: #dc6638;
  border-color: #dc6638;
  box-shadow: inset 0 0 0 2px #ffffff;
}

.midpoint-check__input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(220, 102, 56, 0.18);
}

.midpoint-check__text {
  font-size: 10px;
  line-height: 1.35;
  font-weight: 700;
  color: #5b5f66;
  white-space: nowrap;
}

.midpoint-slider {
  width: 100%;
  display: grid;
  grid-template-columns: 22px 1fr 24px 26px;
  align-items: center;
  column-gap: 16px;
}

.midpoint-slider__min,
.midpoint-slider__max {
  font-size: 9px;
  font-weight: 500;
  color: #111827;
}

.midpoint-slider__max {
  text-align: right;
}

.midpoint-slider__value {
  font-size: 10px;
  font-weight: 800;
  color: #dc6638;
  text-align: right;
}

.midpoint-slider__input {
  width: 100%;
  height: 4px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  accent-color: #dc6638;
}

.midpoint-slider__input::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: #dedede;
}

.midpoint-slider__input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -5.5px;
  border: 2px solid #dc6638;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 2px #ffffff;
}

.midpoint-slider__input::-moz-range-track {
  height: 3px;
  border-radius: 999px;
  background: #dedede;
}

.midpoint-slider__input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid #dc6638;
  border-radius: 50%;
  background: #ffffff;
}

.midpoint-slider__input:focus {
  outline: none;
}

.midpoint-textarea {
  width: 100%;
  min-height: 92px;
  resize: none;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 11px;
  line-height: 1.5;
  color: #222;
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.midpoint-textarea::placeholder {
  color: #b8b8b8;
}

.midpoint-textarea:focus {
  outline: none;
  border-color: #dc6638;
  box-shadow: 0 0 0 2px rgba(220, 102, 56, 0.12);
}

.midpoint-word-count {
  margin-top: 7px;
  text-align: right;
  font-size: 8px;
  color: #747b86;
}

.midpoint-footer {
  height: 54px;
  padding: 0 28px;
  border-top: 1px solid #e7e2df;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.midpoint-btn {
  height: 28px;
  border-radius: 2px;
  padding: 0 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.midpoint-btn--secondary {
  border: 1px solid #dadde3;
  background: #ffffff;
  color: #6b7280;
}

.midpoint-btn--secondary:hover,
.midpoint-btn--secondary:focus {
  border-color: #c8cbd1;
  background: #f8fafc;
  color: #111827;
}

.midpoint-btn--primary {
  border: 1px solid #111827;
  background: #111827;
  color: #ffffff;
}

.midpoint-btn--primary:hover,
.midpoint-btn--primary:focus {
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

.midpoint-btn--primary:disabled,
.midpoint-btn--secondary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.midpoint-state {
  padding: 80px 0;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

.midpoint-alert {
  max-width: 720px;
  font-size: 13px;
}

/* Looking Ahead screen */
.midpoint-content--looking-ahead {
  padding-top: 56px;
}

.midpoint-field--textarea {
  margin-bottom: 28px;
}

.midpoint-textarea--large {
  min-height: 92px;
}

.midpoint-encouragement {
  gap: 14px;
  margin-top: 6px;
  padding: 16px 18px;
  border: 1px solid #ef4444;
  border-radius: 4px;
  background: #fff1f1;
  color: #dc2626;
}

.midpoint-encouragement__icon {
  width: 26px;
  min-width: 26px;
  height: 26px;
  font-size: 27px;
  line-height: 22px;
  color: #dc2626;
}

.midpoint-encouragement__title {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #dc2626;
}

.midpoint-encouragement__text {
  font-size: 11px;
  line-height: 1.55;
  color: #dc2626;
}

/* Shared OnboardingShell modifiers */
.onboarding-shell__body--no-sidebar {
  display: block;
}

.onboarding-shell__body--no-sidebar .onboarding-shell__main {
  width: 100%;
}

.onboarding-shell__main--wide {
  max-width: 100%;
}

.onboarding-shell__main--wide .onboarding-shell__main-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.onboarding-shell__footer-step--empty {
  min-width: 160px;
}

@media (max-width: 991.98px) {
  .midpoint-page {
    padding: 28px 20px;
  }
  .midpoint-content {
    padding: 48px 32px 44px;
  }
  .midpoint-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .midpoint-header__welcome {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .midpoint-page {
    padding: 0;
  }
  .midpoint-frame {
    min-height: 100vh;
  }
  .midpoint-header {
    grid-template-columns: 1fr auto;
  }
  .midpoint-content {
    padding: 40px 20px 38px;
  }
  .midpoint-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .midpoint-slider {
    grid-template-columns: 18px 1fr 20px 22px;
    column-gap: 10px;
  }
  .midpoint-footer {
    height: 58px;
    padding: 0 16px;
    justify-content: space-between;
  }
}
.anchor-intro-page {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px 32px;
  background: #f7f4ef;
  color: #151515;
  overflow-x: hidden;
}

/* =========================================================
   HERO
   ========================================================= */
.anchor-intro-page__hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 -28px;
  padding: 26px 28px 24px;
  min-height: 124px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 18%, rgba(64, 126, 220, 0.32), transparent 30%), linear-gradient(105deg, #07111f 0%, #0d2146 52%, #153b85 100%);
}

.anchor-intro-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 60%), radial-gradient(circle at 28% 48%, rgba(217, 119, 63, 0.1), transparent 28%);
  pointer-events: none;
}

.anchor-intro-page__hero-copy,
.anchor-intro-page__hero-chip {
  position: relative;
  z-index: 1;
}

.anchor-intro-page__hero-copy {
  max-width: 820px;
  min-width: 0;
}

.anchor-intro-page__hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.anchor-intro-page__hero-phase-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d9773f;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.anchor-intro-page__hero-title {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.anchor-intro-page__hero-title span {
  color: #d9773f;
}

.anchor-intro-page__hero-subtitle {
  margin: 7px 0 0;
  max-width: 800px;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}

.anchor-intro-page__hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 24px;
  margin-top: 6px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(213, 225, 248, 0.62);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

/* =========================================================
   OVERVIEW
   ========================================================= */
.anchor-intro-page__overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: start;
  gap: 18px;
  padding: 22px 0 22px;
  border-bottom: 1px solid #d8d2ca;
}

.anchor-intro-page__overview > * {
  min-width: 0;
}

.anchor-intro-page__overview-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.anchor-intro-page__overview-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #151515;
}

.anchor-intro-page__overview-copy strong {
  font-weight: 800;
}

.anchor-intro-page__accent {
  color: #c96f37;
  font-weight: 700;
}

.anchor-intro-page__note {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 4px;
  border: 1px solid #83aefc;
  background: #f7fbff;
}

.anchor-intro-page__note-icon {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3f79e0;
  font-size: 12px;
  font-weight: 900;
}

.anchor-intro-page__note-text {
  font-size: 12px;
  line-height: 1.55;
  color: #2d343d;
}

/* =========================================================
   VIDEO CARD
   ========================================================= */
.anchor-intro-page__video-card {
  position: relative;
  width: 100%;
  min-height: 180px;
  border-radius: 4px;
  overflow: hidden;
  background: radial-gradient(circle at 42% 48%, rgba(218, 113, 77, 0.18), transparent 24%), linear-gradient(135deg, #1f4ca0 0%, #111923 92%);
  box-shadow: 0 12px 26px rgba(20, 20, 20, 0.1);
}

.anchor-intro-page__video-expand {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #d9773f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.anchor-intro-page__video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(188, 108, 82, 0.62);
  color: #ffffff;
  font-size: 12px;
}

.anchor-intro-page__video-meta {
  position: absolute;
  left: 12px;
  bottom: 10px;
  right: 12px;
  color: #ffffff;
}

.anchor-intro-page__video-title {
  font-size: 10px;
  font-weight: 600;
}

/* =========================================================
   SHARED SECTION WRAPPER
   ========================================================= */
.anchor-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.anchor-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 32px;
  align-items: stretch;
}
.anchor-module-grid .anchor-module-card {
  position: relative;
  min-height: 156px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #ececec;
  background: #fbfbfb;
  box-shadow: 0 2px 6px rgba(20, 20, 20, 0.035);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.anchor-module-grid .anchor-module-card .anchor-module-card__number {
  margin: 0 0 14px;
  padding: 0;
  color: #9a9aa0;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}
.anchor-module-grid .anchor-module-card .anchor-module-card__title {
  margin: 0 0 8px;
  padding: 0;
  color: #151515;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0;
}
.anchor-module-grid .anchor-module-card .anchor-module-card__text {
  margin: 0;
  padding: 0;
  color: #666b72;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
}
.anchor-module-grid .anchor-module-card .anchor-module-card__tick {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #24a957;
  border-radius: 999px;
  background: transparent;
  color: #24a957;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}
.anchor-module-grid .anchor-module-card .anchor-module-card__tick svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
}
.anchor-module-grid .anchor-module-card.is-progress {
  background: #fbfbfb;
  border-color: #ececec;
}
.anchor-module-grid .anchor-module-card.is-completed {
  background: #f2fff5;
  border-color: #d7f0dc;
  box-shadow: 0 2px 6px rgba(20, 20, 20, 0.025);
}
.anchor-module-grid .anchor-module-card.is-locked {
  background: #fbfbfb;
  border-color: #ececec;
}

@media (max-width: 1024px) {
  .anchor-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .anchor-module-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .anchor-module-grid .anchor-module-card {
    min-height: 140px;
    padding: 18px;
  }
  .anchor-module-grid .anchor-module-card .anchor-module-card__number {
    font-size: 22px;
  }
  .anchor-module-grid .anchor-module-card .anchor-module-card__title {
    font-size: 13px;
  }
  .anchor-module-grid .anchor-module-card .anchor-module-card__text {
    font-size: 11px;
  }
}
/* =========================================================
   BOUNDARIES
   ========================================================= */
.anchor-boundaries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 28px;
}

.anchor-boundary-card {
  border-radius: 4px;
  border: 1px solid #e5ded8;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(30, 25, 20, 0.04);
}

.anchor-boundary-card--negative {
  border-color: #f0cfc7;
}

.anchor-boundary-card--positive {
  border-color: #cce7d2;
}

.anchor-boundary-card__header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
}

.anchor-boundary-card--negative .anchor-boundary-card__header {
  background: #fff3f1;
  color: #c84e36;
  border-bottom: 1px solid #f0cfc7;
}

.anchor-boundary-card--positive .anchor-boundary-card__header {
  background: #f2fff4;
  color: #24904f;
  border-bottom: 1px solid #cce7d2;
}

.anchor-boundary-card__header-icon {
  font-size: 13px;
  font-weight: 900;
}

.anchor-boundary-card__header-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.anchor-boundary-card__list {
  list-style: none;
  margin: 0;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.anchor-boundary-card__list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: flex-start;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #4b4640;
}

.anchor-boundary-card__bullet {
  font-weight: 800;
}

.anchor-boundary-card--negative .anchor-boundary-card__bullet {
  color: #c84e36;
}

.anchor-boundary-card--positive .anchor-boundary-card__bullet {
  color: #24904f;
}

/* =========================================================
   FELLOW TRAVELLERS
   ========================================================= */
.anchor-intro-page__section {
  margin-top: 4px;
}

.anchor-intro-page__travellers-text {
  margin: 10px 0 14px;
  max-width: 980px;
  font-size: 11px;
  line-height: 1.6;
  color: #6c6761;
}

.anchor-intro-page__travellers-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 14px;
}

.anchor-intro-page__travellers-count {
  font-size: 12px;
  color: #6c6761;
}

.anchor-intro-page__travellers-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.anchor-intro-page__travellers-arrow {
  width: 34px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #e0b894;
  background: #fffaf5;
  color: #c96f37;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.anchor-intro-page__travellers-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.anchor-intro-page__travellers-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.anchor-intro-page__travellers-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #d8c5b7;
}

.anchor-intro-page__travellers-dots span.is-active {
  width: 14px;
  background: #d9773f;
}

.anchor-intro-page__travellers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.anchor-intro-page__travellers-empty {
  padding: 18px;
  border: 1px dashed #dfc5ad;
  border-radius: 10px;
  background: #fffaf5;
  font-size: 13px;
  color: #6b625b;
}

/* =========================================================
   FOOTER
   ========================================================= */
.anchor-intro-page__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.anchor-intro-page__begin-btn {
  border: 0;
  border-radius: 3px;
  padding: 12px 18px;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.anchor-intro-page__begin-btn:hover:not(:disabled) {
  background: #2a211a;
}

.anchor-intro-page__begin-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.anchor-intro-page__footer-copy {
  font-size: 12px;
  color: #6c6761;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .anchor-intro-page__overview {
    grid-template-columns: 1fr 400px;
  }
}
@media (max-width: 992px) {
  .anchor-intro-page {
    padding: 0 20px 32px;
  }
  .anchor-intro-page__hero {
    margin: 0 -20px;
    flex-direction: column;
  }
  .anchor-intro-page__overview {
    grid-template-columns: 1fr;
  }
  .anchor-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .anchor-boundaries-grid {
    grid-template-columns: 1fr;
  }
  .anchor-intro-page__travellers-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .anchor-module-grid {
    grid-template-columns: 1fr;
  }
  .anchor-intro-page__hero-title {
    font-size: 22px;
  }
}
/* =========================================================
   FINAL FORCE FIX - ANCHOR MODULE CARD SPACING
   Keep this at the very bottom of AnchorIntro.razor.scss
   ========================================================= */
.anchor-intro-page .anchor-module-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin: 22px 0 34px !important;
  align-items: stretch !important;
}

.anchor-intro-page .anchor-module-card {
  position: relative !important;
  min-height: 158px !important;
  padding-top: 34px !important;
  padding-right: 24px !important;
  padding-bottom: 24px !important;
  padding-left: 24px !important;
  box-sizing: border-box !important;
  border-radius: 7px !important;
  border: 1px solid #e3ded7 !important;
  background: #f6f6f5 !important;
  box-shadow: 0 1px 1px rgba(25, 22, 19, 0.03), 0 8px 18px rgba(25, 22, 19, 0.035) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.anchor-intro-page .anchor-module-card__number {
  display: block !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 24px !important;
  margin-left: 0 !important;
  padding: 0 !important;
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  color: #8c8d92 !important;
}

.anchor-intro-page .anchor-module-card__title {
  display: block !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 10px !important;
  margin-left: 0 !important;
  padding: 0 !important;
  font-size: 11.5px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  color: #202020 !important;
}

.anchor-intro-page .anchor-module-card__text {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 10.5px !important;
  line-height: 1.58 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: #67635f !important;
}

.anchor-intro-page .anchor-module-card.is-progress,
.anchor-intro-page .anchor-module-card.is-locked {
  background: #f6f6f5 !important;
  border-color: #e3ded7 !important;
}

/* ============================================================
   ANCHOR MODULE 1 - APP LAYOUT CONTENT FIX
   Removes default AppLayout padding before stepper
   ============================================================ */
.app-layout.anchor-module-shell--module1 {
  background: #f4f3f1;
}

.app-layout.anchor-module-shell--module1 .app-layout__content {
  padding: 0 40px 42px !important;
  background: #f4f3f1;
}

.anchor-module1-step__progress {
  margin: 0;
  padding: 10px 60px;
  background: #eaf1ff;
  display: flex;
  align-items: center;
}

.anchor-module1-step__progress ::deep .step-progress {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

/* ============================================================
   ANCHOR · MODULE 1 — Environmental Design
   Final stylesheet — matches Figma steps 1–4 and the current
   Razor that uses <TopContent> (stepper) + <ChildContent> (steps).

   SCOPING: every child-component override is nested under an
   Anchor-only wrapper (.anchor-module-shell--module1 or an
   .anchor-module1-* wrapper). Nothing here can leak into Move
   or any other page that reuses the same shared components.

   For child components reached through ::deep we use confirmed
   class names where known (StepProgress) and a [class*=] prefix
   + !important safety net where the inner class is not yet
   confirmed (BreathingCard / TextAreaBlock / HelperTextBlock /
   AppLayout slots) — the same approach that fixed the stepper.
   ============================================================ */
/* ============================================================
   1. SHELL + HERO
   AppLayout renders TopContent + ChildContent into its own
   internal wrappers. We zero the top padding of whichever
   content wrapper holds our slots so the stepper sits flush
   against the hero (removes the cream gap).
   ============================================================ */
::deep .anchor-module-shell--module1 [class*=app-layout__content],
::deep .anchor-module-shell--module1 [class*=app-layout__body],
::deep .anchor-module-shell--module1 [class*=app-layout__main] {
  padding-top: 0 !important;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 42px;
  background: #f4f3f1;
}

/* TopContent slot wrapper: no padding so the stepper band is flush */
::deep .anchor-module-shell--module1 [class*=app-layout__top] {
  padding: 0 !important;
  margin: 0 !important;
}

/* HERO — compact ~106px */
::deep .anchor-module-shell--module1 [class*=hero] {
  min-height: 106px;
  padding: 24px 32px 22px;
  background: radial-gradient(circle at 78% 22%, rgba(46, 92, 178, 0.38), transparent 32%), linear-gradient(105deg, #111417 0%, #111923 48%, #173c86 100%);
  color: #ffffff;
}

::deep .anchor-module-shell--module1 [class*=phase-pill] {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(224, 116, 61, 0.65);
  background: rgba(224, 116, 61, 0.12);
  color: #ffffff;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

::deep .anchor-module-shell--module1 [class*=app-layout__title] {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.01em;
}

::deep .anchor-module-shell--module1 [class*=app-layout__title] span {
  color: #df7340;
}

::deep .anchor-module-shell--module1 [class*=phase-intro] {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 500;
}

/* ============================================================
   2. STEPPER BAR  (Bar mode — flush under hero)
   Confirmed classes:
   .step-progress--bar > .step-progress__bars > .step-progress__bar
   ============================================================ */
.anchor-module1-step__progress {
  margin: 0 -40px; /* bleed to full content width */
  padding: 10px 40px;
  min-height: 35px;
  background: #eaf1ff;
  display: flex;
  align-items: center;
}

.anchor-module1-step__progress ::deep .step-progress,
.anchor-module1-step__progress ::deep .step-progress--bar {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.anchor-module1-step__progress ::deep .step-progress__bars {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.anchor-module1-step__progress ::deep .step-progress__bar {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: #c9d8f5;
  transition: background 160ms ease;
}

.anchor-module1-step__progress ::deep .step-progress__bar.is-active,
.anchor-module1-step__progress ::deep .step-progress__bar.is-completed {
  background: #1d6dff;
}

/* ============================================================
   3. STEP BODY + HEADER  (shared by all 4 steps)
   ============================================================ */
.anchor-module1-step {
  padding: 22px 0 8px;
  background: #f4f3f1;
}

.anchor-module1-step-header {
  margin: 0 0 18px;
}

.anchor-module1-step-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #df7340;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.anchor-module1-step-header__eyebrow span {
  width: 56px;
  height: 1px;
  background: #df7340;
  display: inline-block;
}

.anchor-module1-step-header__title {
  margin: 0 0 9px;
  color: #151515;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.anchor-module1-step-header__title span {
  color: #df7340;
}

.anchor-module1-step-header__description {
  margin: 0;
  color: #747474;
  font-size: 12px;
  line-height: 1.55;
}

/* ============================================================
   4. BREATHING CARD  (Step 1 — orb LEFT, text RIGHT, ~126px)
   ============================================================ */
.anchor-module1-step__breathing {
  margin: 18px 0 22px;
}

.anchor-module1-step__breathing ::deep [class*=breathing][class*=card] {
  width: 100%;
  min-height: 126px;
  height: 126px;
  padding: 18px 28px;
  border: 1px solid #ece8e3;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 34px;
  overflow: hidden;
}

.anchor-module1-step__breathing ::deep [class*=orb],
.anchor-module1-step__breathing ::deep [class*=circle] {
  width: 104px !important;
  height: 104px !important;
  min-width: 104px !important;
  max-width: 104px !important;
  max-height: 104px !important;
  flex: 0 0 104px !important;
  box-sizing: border-box;
  position: relative;
  border-radius: 999px;
  border: 1px solid #df7340;
  background: #fffaf7;
  box-shadow: inset 0 0 0 24px #ffffff;
}

.anchor-module1-step__breathing ::deep [class*=orb]::before,
.anchor-module1-step__breathing ::deep [class*=circle]::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 1px solid rgba(223, 115, 64, 0.28);
}

.anchor-module1-step__breathing ::deep [class*=orb]::after,
.anchor-module1-step__breathing ::deep [class*=circle]::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f1cdbc;
}

.anchor-module1-step__breathing ::deep [class*=breathing][class*=phase],
.anchor-module1-step__breathing ::deep [class*=breathing][class*=title] {
  margin: 0 0 8px;
  color: #df7340;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.anchor-module1-step__breathing ::deep [class*=breathing][class*=text],
.anchor-module1-step__breathing ::deep [class*=breathing][class*=description] {
  margin: 0;
  color: #6f737a;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
}

/* ============================================================
   5. FEELING OPTIONS  (Step 1 — 4-up grid)
   ============================================================ */
.anchor-module1-step__field-title {
  margin: 0 0 12px;
  color: #303030;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.anchor-module1-feeling-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.anchor-module1-feeling-card {
  min-height: 92px;
  padding: 16px 10px 12px;
  border: 1px solid #ece8e3;
  border-radius: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.anchor-module1-feeling-card:hover {
  border-color: #efc6ac;
  box-shadow: 0 8px 16px rgba(25, 22, 19, 0.05);
  transform: translateY(-1px);
}

.anchor-module1-feeling-card.is-selected {
  border-color: #df7340;
  background: #fff7f1;
  box-shadow: 0 0 0 1px rgba(223, 115, 64, 0.22);
}

.anchor-module1-feeling-card__icon {
  height: 34px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anchor-module1-feeling-card__icon img {
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  display: block;
}

.anchor-module1-feeling-card__emoji {
  font-size: 30px;
  line-height: 1;
}

.anchor-module1-feeling-card__label {
  color: #151515;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   6. HELPER / INFO BANNER
   Anchor Module 1 only
   Steps 3 & 4 — Figma blue box with blue left border
   Confirmed component classes:
   .helper-text-block
   .helper-text-block__text
   ============================================================ */
.anchor-module1-step ::deep .helper-text-block {
  display: block;
  width: 100%;
  margin: 0 0 22px;
  padding: 14px 18px;
  border: 0;
  border-left: 3px solid #1d6dff;
  border-radius: 2px;
  background: #e9f0ff;
  box-shadow: none;
}
.anchor-module1-step ::deep .helper-text-block__text {
  display: block;
  margin: 0;
  color: #2a2f37 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 600 !important;
}

/* ============================================================
   7. TEXTAREA BLOCKS  (Steps 2, 3, 4)
   Figma: uppercase label + underline rule, white field, thin
   border, "0 words" counter bottom-right.
   ============================================================ */
.anchor-module1-step ::deep [class*=textarea][class*=block] {
  margin: 0 0 20px;
}

.anchor-module1-step ::deep [class*=textarea][class*=title],
.anchor-module1-step ::deep [class*=textarea][class*=label] {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: #6c7075;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.anchor-module1-step ::deep [class*=textarea][class*=title]::after,
.anchor-module1-step ::deep [class*=textarea][class*=label]::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d8d4cf;
}

.anchor-module1-step ::deep [class*=textarea] textarea {
  width: 100%;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid #ddd8d2;
  border-radius: 4px;
  background: #ffffff;
  color: #2a2f37;
  font-size: 12px;
  line-height: 1.55;
  resize: vertical;
  box-sizing: border-box;
}

.anchor-module1-step ::deep [class*=textarea] textarea::placeholder {
  color: #a7a39d;
}

.anchor-module1-step ::deep [class*=textarea] textarea:focus {
  outline: none;
  border-color: #1d6dff;
  box-shadow: 0 0 0 2px rgba(29, 109, 255, 0.12);
}

.anchor-module1-step ::deep [class*=word][class*=count],
.anchor-module1-step ::deep [class*=counter] {
  display: block;
  margin-top: 6px;
  text-align: right;
  color: #a7a39d;
  font-size: 10px;
}

.anchor-module1-step--reflection ::deep [class*=textarea] textarea {
  min-height: 120px;
}

/* ============================================================
   8. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  ::deep .anchor-module-shell--module1 [class*=app-layout__content],
  ::deep .anchor-module-shell--module1 [class*=app-layout__body],
  ::deep .anchor-module-shell--module1 [class*=app-layout__main] {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 32px;
  }
  .anchor-module1-step__progress {
    margin: 0 -16px;
    padding: 10px 16px;
  }
  .anchor-module1-step {
    padding: 20px 0 8px;
  }
  .anchor-module1-step__breathing ::deep [class*=breathing][class*=card] {
    height: auto;
    min-height: 118px;
    padding: 18px;
    gap: 18px;
  }
  .anchor-module1-step__breathing ::deep [class*=orb],
  .anchor-module1-step__breathing ::deep [class*=circle] {
    width: 84px !important;
    height: 84px !important;
    min-width: 84px !important;
    max-width: 84px !important;
    max-height: 84px !important;
    flex: 0 0 84px !important;
    box-shadow: inset 0 0 0 19px #ffffff;
  }
  .anchor-module1-feeling-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ============================================================
   ANCHOR MODULE 1 - BLUE HELPER CALLOUT
   Step 4 Reflection Figma style
   ============================================================ */
.anchor-module1-blue-helper {
  width: 100%;
  margin: 22px 0 20px !important;
  padding: 16px 18px !important;
  border-left: 4px solid #1d6dff !important;
  border-radius: 2px !important;
  background: #e9f0ff !important;
  color: #111827 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.anchor-module-grid .anchor-module-card.is-completed {
  background: #f2fff5 !important;
  border-color: #d7f0dc !important;
  box-shadow: 0 2px 6px rgba(20, 20, 20, 0.025) !important;
}
.anchor-module-grid .anchor-module-card.is-completed .anchor-module-card__tick {
  background: transparent !important;
  border: 1.5px solid #24a957 !important;
  color: #24a957 !important;
}

/* ============================================================
   ANCHOR MODULE 2 - RITUAL BUILDING
   Final Figma-matched compact styling
   ============================================================ */
/* ============================================================
   APP LAYOUT FIX
   ============================================================ */
:global(.app-layout.anchor-module-shell--module2) {
  background: #f4f3f1;
}

:global(.app-layout.anchor-module-shell--module2 .app-layout__content) {
  padding: 0 !important;
  background: #f4f3f1;
}

/* ============================================================
   HERO HEADER
   ============================================================ */
:global(.app-layout.anchor-module-shell--module2 .app-layout__hero) {
  min-height: 90px;
  padding: 22px 38px 20px;
  background: radial-gradient(circle at 74% 34%, rgba(47, 89, 166, 0.38), transparent 32%), linear-gradient(105deg, #101820 0%, #121a24 48%, #183b78 100%);
  color: #ffffff;
}

:global(.app-layout.anchor-module-shell--module2 .app-layout__phase-pill) {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 9px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #df7340;
  background: rgba(223, 115, 64, 0.08);
  color: #ffffff;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

:global(.app-layout.anchor-module-shell--module2 .app-layout__title) {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0.01em;
}

:global(.app-layout.anchor-module-shell--module2 .app-layout__title span) {
  color: #df7340;
}

:global(.app-layout.anchor-module-shell--module2 .app-layout__phase-intro) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
}

.app-layout.anchor-module-shell--module2 .app-layout__content {
  padding: 0 !important;
  background: #f4f3f1 !important;
}

/* ============================================================
   STEPPER STRIP
   ============================================================ */
.anchor-module2-step__progress {
  margin: 0;
  padding: 12px 38px;
  min-height: 32px;
  background: #eaf1ff;
  display: flex;
  align-items: center;
}

.anchor-module2-step__progress ::deep .step-progress {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.anchor-module2-step__progress ::deep .step-progress__bar,
.anchor-module2-step__progress ::deep .step-progress-bar {
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.anchor-module2-step__progress ::deep .step-progress__segment,
.anchor-module2-step__progress ::deep .step-progress-segment {
  height: 3px;
  border-radius: 999px;
  background: #c9d8f5;
}

.anchor-module2-step__progress ::deep .step-progress__segment.is-active,
.anchor-module2-step__progress ::deep .step-progress-segment.is-active,
.anchor-module2-step__progress ::deep .step-progress__fill,
.anchor-module2-step__progress ::deep .step-progress-fill {
  background: #1d6dff;
}

/* ============================================================
   ANCHOR MODULE 2 - STEP BODY LEFT ALIGNMENT FIX
   Figma compact left aligned version
   ============================================================ */
.anchor-module2-step {
  min-height: calc(100vh - 245px);
  padding: 22px 30px 36px !important;
  background: #f4f3f1;
}

/* ============================================================
   STEP HEADER
   ============================================================ */
.anchor-module2-step-header {
  margin: 0 0 18px;
  padding: 0 !important;
}

.anchor-module2-step-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #df7340;
  font-size: 8px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.anchor-module2-step-header__eyebrow span {
  width: 38px;
  height: 1px;
  background: #df7340;
  display: inline-block;
  flex: 0 0 auto;
}

.anchor-module2-step-header__title {
  margin: 0 0 10px;
  color: #111111;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
}

.anchor-module2-step-header__title span {
  color: #df7340;
}

.anchor-module2-step-header__description {
  max-width: 100%;
  margin: 0;
  color: #6f737a;
  font-size: 10px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ============================================================
   TEXT AREA BLOCKS
   Step 2, 3, 4, 5
   ============================================================ */
.anchor-module2-step ::deep .textarea-block,
.anchor-module2-step ::deep .text-area-block,
.anchor-module2-step ::deep .form-textarea-block {
  margin: 0 0 18px;
}

.anchor-module2-step ::deep .textarea-block__title,
.anchor-module2-step ::deep .text-area-block__title,
.anchor-module2-step ::deep .form-textarea-block__title {
  margin: 0 0 8px;
  color: #20242a;
  font-size: 9px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.anchor-module2-step ::deep textarea,
.anchor-module2-step ::deep .textarea-block__input,
.anchor-module2-step ::deep .text-area-block__input,
.anchor-module2-step ::deep .form-textarea-block__input {
  width: 100%;
  min-height: 96px;
  padding: 15px 16px;
  border: 1px solid #e4e5e7;
  border-radius: 0;
  background: #ffffff;
  color: #20242a;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 400;
  resize: vertical;
  box-shadow: none;
}

.anchor-module2-step ::deep textarea::placeholder,
.anchor-module2-step ::deep .textarea-block__input::placeholder,
.anchor-module2-step ::deep .text-area-block__input::placeholder,
.anchor-module2-step ::deep .form-textarea-block__input::placeholder {
  color: #9a9da3;
  opacity: 1;
}

.anchor-module2-step ::deep textarea:focus,
.anchor-module2-step ::deep .textarea-block__input:focus,
.anchor-module2-step ::deep .text-area-block__input:focus,
.anchor-module2-step ::deep .form-textarea-block__input:focus {
  outline: none;
  border-color: #df7340;
  box-shadow: 0 0 0 1px rgba(223, 115, 64, 0.16);
}

/* ============================================================
   STEP 5 - BLUE HELPER CALLOUT
   ============================================================ */
.anchor-module2-blue-helper {
  width: 100%;
  margin: 18px 0 18px;
  padding: 14px 18px;
  border-left: 3px solid #1d6dff;
  border-radius: 0;
  background: #e9f0ff;
  color: #2a2f37;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
  box-shadow: none;
}

/* ============================================================
   ERROR / LOADING SPACING
   ============================================================ */
.anchor-module-shell--module2 ::deep .error-message-block {
  margin: 0 30px 18px;
}

.anchor-module-shell--module2 ::deep .loading-state {
  margin: 22px 30px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :global(.app-layout.anchor-module-shell--module2 .app-layout__hero) {
    padding: 16px 20px 15px;
  }
  .anchor-module2-step__progress {
    padding: 10px 20px;
  }
  .anchor-module2-step {
    padding: 20px 20px 28px;
  }
  .anchor-module2-step-header__title {
    font-size: 15px;
  }
  .anchor-module2-step-header__description {
    font-size: 10px;
  }
  .anchor-module2-step__breathing ::deep .breathing-card {
    height: auto;
    min-height: 96px;
    padding: 14px 16px;
    gap: 16px;
  }
  .anchor-module2-step__breathing ::deep .breathing-card__orb-wrap,
  .anchor-module2-step__breathing ::deep .breathing-card__orb-container,
  .anchor-module2-step__breathing ::deep .breathing-orb-wrap,
  .anchor-module2-step__breathing ::deep .breathing-orb-container,
  .anchor-module2-step__breathing ::deep .breathing-card__orb,
  .anchor-module2-step__breathing ::deep .breathing-orb {
    width: 68px;
    height: 68px;
    min-width: 68px;
  }
  .anchor-module2-step__breathing ::deep .breathing-card__orb,
  .anchor-module2-step__breathing ::deep .breathing-orb {
    box-shadow: inset 0 0 0 15px #ffffff;
  }
  .anchor-module2-step ::deep textarea,
  .anchor-module2-step ::deep .textarea-block__input,
  .anchor-module2-step ::deep .text-area-block__input,
  .anchor-module2-step ::deep .form-textarea-block__input {
    min-height: 100px;
    font-size: 12px;
  }
}
/* ============================================================
   ANCHOR MODULE 2 - FINAL COMPACT FIGMA OVERRIDE
   Target: match compact first screenshot
   ============================================================ */
/* Content area */
.anchor-module2-step {
  min-height: calc(100vh - 245px);
  padding: 22px 30px 36px !important;
  background: #f4f3f1 !important;
}

/* Step heading */
.anchor-module2-step-header {
  margin: 0 0 18px !important;
}

.anchor-module2-step-header__eyebrow {
  margin: 0 0 12px !important;
  gap: 8px;
  color: #df7340;
  font-size: 8px !important;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.anchor-module2-step-header__eyebrow span {
  width: 38px !important;
  height: 1px;
  background: #df7340;
}

.anchor-module2-step-header__title {
  margin: 0 0 10px !important;
  color: #111111;
  font-size: 17px !important;
  line-height: 1.28;
  font-weight: 800;
}

.anchor-module2-step-header__title span {
  color: #df7340;
}

.anchor-module2-step-header__description {
  max-width: 980px;
  margin: 0 !important;
  color: #6f737a;
  font-size: 10px !important;
  line-height: 1.55;
  font-weight: 400;
}

/* ============================================================
   BREATHING CARD - force compact Anchor size
   The component internally uses fog-nyc-exercise classes.
   ============================================================ */
.anchor-module2-step__breathing {
  margin: 18px 0 0 !important;
}

.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-card,
.anchor-module2-step__breathing ::deep .breathing-card {
  width: 100% !important;
  height: 160px !important;
  min-height: 160px !important;
  padding: 18px 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  overflow: hidden !important;
}

/* Orb wrapper */
.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-orb-wrap,
.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-orb-container,
.anchor-module2-step__breathing ::deep .breathing-card__orb-wrap,
.anchor-module2-step__breathing ::deep .breathing-card__orb-container,
.anchor-module2-step__breathing ::deep .breathing-orb-wrap,
.anchor-module2-step__breathing ::deep .breathing-orb-container {
  width: 126px !important;
  height: 126px !important;
  min-width: 126px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Orb */
.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-orb,
.anchor-module2-step__breathing ::deep .breathing-card__orb,
.anchor-module2-step__breathing ::deep .breathing-orb {
  position: relative !important;
  width: 126px !important;
  height: 126px !important;
  border-radius: 999px !important;
  border: 1px solid #df7340 !important;
  background: #fffaf7 !important;
  box-shadow: inset 0 0 0 28px #ffffff !important;
}

.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-orb::before,
.anchor-module2-step__breathing ::deep .breathing-card__orb::before,
.anchor-module2-step__breathing ::deep .breathing-orb::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 1px solid rgba(223, 115, 64, 0.28);
}

.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-orb::after,
.anchor-module2-step__breathing ::deep .breathing-card__orb::after,
.anchor-module2-step__breathing ::deep .breathing-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #dfc1b2;
}

/* Breathing text */
.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-content,
.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-copy,
.anchor-module2-step__breathing ::deep .breathing-card__content,
.anchor-module2-step__breathing ::deep .breathing-card__copy {
  flex: 1 !important;
  min-width: 0 !important;
  padding: 0 !important;
}

.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-title,
.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-phase,
.anchor-module2-step__breathing ::deep .breathing-card__title,
.anchor-module2-step__breathing ::deep .breathing-card__phase {
  margin: 0 0 8px !important;
  color: #df7340 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-text,
.anchor-module2-step__breathing ::deep .fog-nyc-exercise__breathing-description,
.anchor-module2-step__breathing ::deep .breathing-card__text,
.anchor-module2-step__breathing ::deep .breathing-card__description {
  max-width: 720px !important;
  margin: 0 !important;
  color: #6f737a !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* ============================================================
   APP FOOTER BUTTONS - prevent huge button style
   ============================================================ */
.anchor-module-shell--module2 ::deep .app-layout__footer,
.anchor-module-shell--module2 ::deep .exercise-shell__footer,
.anchor-module-shell--module2 ::deep .fog-exercise-shell__footer {
  min-height: 62px !important;
  padding: 14px 30px !important;
}

.anchor-module-shell--module2 ::deep .app-layout__back-button,
.anchor-module-shell--module2 ::deep .app-layout__continue-button,
.anchor-module-shell--module2 ::deep .exercise-shell__back-button,
.anchor-module-shell--module2 ::deep .exercise-shell__continue-button,
.anchor-module-shell--module2 ::deep .fog-exercise-shell__back-button,
.anchor-module-shell--module2 ::deep .fog-exercise-shell__continue-button {
  min-width: auto !important;
  height: 34px !important;
  padding: 0 18px !important;
  border-radius: 4px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

/* Back button compact grey */
.anchor-module-shell--module2 ::deep .app-layout__back-button,
.anchor-module-shell--module2 ::deep .exercise-shell__back-button,
.anchor-module-shell--module2 ::deep .fog-exercise-shell__back-button {
  background: #ffffff !important;
  color: #9aa0a8 !important;
  border: 1px solid #d8dadd !important;
}

/* Continue button compact black */
.anchor-module-shell--module2 ::deep .app-layout__continue-button,
.anchor-module-shell--module2 ::deep .exercise-shell__continue-button,
.anchor-module-shell--module2 ::deep .fog-exercise-shell__continue-button {
  background: #101820 !important;
  color: #ffffff !important;
  border: 1px solid #101820 !important;
}

/* ============================================================
   ANCHOR MODULE 3 - ACCOUNTABILITY ARCHITECTURE
   Figma matched compact styling
   ============================================================ */
.anchor-module3-step__progress {
  margin: 0;
  padding: 10px 30px;
  min-height: 34px;
  background: #eaf1ff;
  display: flex;
  align-items: center;
}

.anchor-module3-step__progress ::deep .step-progress {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.anchor-module3-step__progress ::deep .step-progress__bar,
.anchor-module3-step__progress ::deep .step-progress-bar {
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.anchor-module3-step__progress ::deep .step-progress__segment,
.anchor-module3-step__progress ::deep .step-progress-segment {
  height: 3px;
  border-radius: 999px;
  background: #c9d8f5;
}

.anchor-module3-step__progress ::deep .step-progress__segment.is-active,
.anchor-module3-step__progress ::deep .step-progress-segment.is-active,
.anchor-module3-step__progress ::deep .step-progress__fill,
.anchor-module3-step__progress ::deep .step-progress-fill {
  background: #1d6dff;
}

/* ============================================================
   BODY
   ============================================================ */
.anchor-module3-step {
  min-height: calc(100vh - 245px);
  padding: 22px 30px 36px !important;
  background: #f4f3f1;
}

.anchor-module3-step-header {
  margin: 0 0 18px;
}

.anchor-module3-step-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #df7340;
  font-size: 8px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.anchor-module3-step-header__eyebrow span {
  width: 38px;
  height: 1px;
  background: #df7340;
  display: inline-block;
  flex: 0 0 auto;
}

.anchor-module3-step-header__title {
  margin: 0 0 10px;
  color: #111111;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
}

.anchor-module3-step-header__title span {
  color: #df7340;
}

.anchor-module3-step-header__description {
  max-width: 980px;
  margin: 0 0 7px;
  color: #6f737a;
  font-size: 10px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.anchor-module3-step-header__description--secondary {
  margin-top: 6px;
}

/* ============================================================
   BREATHING CARD - component still uses fog classes internally
   ============================================================ */
.anchor-module3-step__breathing {
  margin: 18px 0 0 !important;
}

.anchor-module3-step__breathing ::deep .fog-nyc-exercise__breathing-card {
  width: 100% !important;
  height: 160px !important;
  min-height: 160px !important;
  padding: 18px 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  overflow: hidden !important;
}

.anchor-module3-step__breathing ::deep .fog-nyc-exercise__breathing-orb-wrap {
  width: 126px !important;
  height: 126px !important;
  min-width: 126px !important;
}

.anchor-module3-step__breathing ::deep .fog-nyc-exercise__breathing-orb {
  width: 126px !important;
  height: 126px !important;
}

.anchor-module3-step__breathing ::deep .fog-nyc-exercise__breathing-phase {
  margin: 0 0 8px !important;
  color: #df7340 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.anchor-module3-step__breathing ::deep .fog-nyc-exercise__breathing-text {
  max-width: 720px !important;
  margin: 0 !important;
  color: #6f737a !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

/* ============================================================
   TEXTAREA BLOCKS
   ============================================================ */
.anchor-module3-step ::deep .textarea-block,
.anchor-module3-step ::deep .text-area-block,
.anchor-module3-step ::deep .form-textarea-block {
  margin: 0 0 18px;
}

.anchor-module3-step ::deep .textarea-block__title,
.anchor-module3-step ::deep .text-area-block__title,
.anchor-module3-step ::deep .form-textarea-block__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 7px;
  color: #6f737a;
  font-size: 8px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.anchor-module3-step ::deep .textarea-block__title::after,
.anchor-module3-step ::deep .text-area-block__title::after,
.anchor-module3-step ::deep .form-textarea-block__title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #a7a7a7;
}

.anchor-module3-step ::deep textarea,
.anchor-module3-step ::deep .textarea-block__input,
.anchor-module3-step ::deep .text-area-block__input,
.anchor-module3-step ::deep .form-textarea-block__input {
  width: 100%;
  min-height: 74px;
  padding: 13px 14px;
  border: 1px solid #d6d8dc;
  border-radius: 4px;
  background: #ffffff;
  color: #20242a;
  font-size: 10px;
  line-height: 1.55;
  font-weight: 400;
  resize: vertical;
  box-shadow: 0 7px 14px rgba(17, 24, 39, 0.06);
}

.anchor-module3-step ::deep textarea::placeholder,
.anchor-module3-step ::deep .textarea-block__input::placeholder,
.anchor-module3-step ::deep .text-area-block__input::placeholder,
.anchor-module3-step ::deep .form-textarea-block__input::placeholder {
  color: #9a9da3;
  opacity: 1;
}

.anchor-module3-step ::deep textarea:focus,
.anchor-module3-step ::deep .textarea-block__input:focus,
.anchor-module3-step ::deep .text-area-block__input:focus,
.anchor-module3-step ::deep .form-textarea-block__input:focus {
  outline: none;
  border-color: #df7340;
  box-shadow: 0 7px 14px rgba(17, 24, 39, 0.06), 0 0 0 1px rgba(223, 115, 64, 0.18);
}

/* Step 5 helper */
.anchor-module3-blue-helper {
  width: 100%;
  margin: 18px 0 18px;
  padding: 14px 18px;
  border-left: 4px solid #1d6dff;
  border-radius: 2px;
  background: #e9f0ff;
  color: #111827;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 600;
  box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
  .anchor-module3-step__progress {
    padding: 10px 22px;
  }
  .anchor-module3-step {
    padding: 22px 22px 30px !important;
  }
  .anchor-module3-step-header__title {
    font-size: 16px;
  }
  .anchor-module3-step-header__description {
    font-size: 10px;
  }
  .anchor-module3-step__breathing ::deep .fog-nyc-exercise__breathing-card {
    height: auto !important;
    min-height: 132px !important;
    padding: 16px !important;
    gap: 16px !important;
  }
  .anchor-module3-step__breathing ::deep .fog-nyc-exercise__breathing-orb-wrap,
  .anchor-module3-step__breathing ::deep .fog-nyc-exercise__breathing-orb {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
  }
}
/* ============================================================
   ANCHOR MODULES - REMOVE APP LAYOUT DEFAULT CONTENT PADDING
   Applies only to Anchor module screens, not other phases/pages.
   ============================================================ */
.app-layout.anchor-module-shell .app-layout__content,
.app-layout.anchor-module-shell--module1 .app-layout__content,
.app-layout.anchor-module-shell--module2 .app-layout__content,
.app-layout.anchor-module-shell--module3 .app-layout__content,
.app-layout.anchor-module-shell--module4 .app-layout__content {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #f4f3f1 !important;
}

/* ============================================================
   ANCHOR MODULE 4 - YOUR FORMA LEGACY
   Figma matched compact styling
   ============================================================ */
.anchor-module4-step__progress {
  margin: 0;
  padding: 10px 30px;
  min-height: 34px;
  background: #eaf1ff;
  display: flex;
  align-items: center;
}

.anchor-module4-step__progress ::deep .step-progress {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.anchor-module4-step__progress ::deep .step-progress__bar,
.anchor-module4-step__progress ::deep .step-progress-bar {
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.anchor-module4-step__progress ::deep .step-progress__segment,
.anchor-module4-step__progress ::deep .step-progress-segment {
  height: 3px;
  border-radius: 999px;
  background: #c9d8f5;
}

.anchor-module4-step__progress ::deep .step-progress__segment.is-active,
.anchor-module4-step__progress ::deep .step-progress-segment.is-active,
.anchor-module4-step__progress ::deep .step-progress__fill,
.anchor-module4-step__progress ::deep .step-progress-fill {
  background: #1d6dff;
}

/* ============================================================
   BODY
   ============================================================ */
.anchor-module4-step {
  min-height: calc(100vh - 245px);
  padding: 22px 30px 36px !important;
  background: #f4f3f1;
}

.anchor-module4-step-header {
  margin: 0 0 18px;
}

.anchor-module4-step-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #df7340;
  font-size: 8px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.anchor-module4-step-header__eyebrow span {
  width: 38px;
  height: 1px;
  background: #df7340;
  display: inline-block;
  flex: 0 0 auto;
}

.anchor-module4-step-header__title {
  margin: 0 0 10px;
  color: #111111;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
}

.anchor-module4-step-header__title span {
  color: #df7340;
}

.anchor-module4-step-header__description {
  max-width: 980px;
  margin: 0;
  color: #6f737a;
  font-size: 10px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ============================================================
   BREATHING CARD - component still uses fog classes internally
   ============================================================ */
.anchor-module4-step__breathing {
  margin: 18px 0 0 !important;
}

.anchor-module4-step__breathing ::deep .fog-nyc-exercise__breathing-card {
  width: 100% !important;
  height: 160px !important;
  min-height: 160px !important;
  padding: 18px 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  overflow: hidden !important;
}

.anchor-module4-step__breathing ::deep .fog-nyc-exercise__breathing-orb-wrap {
  width: 126px !important;
  height: 126px !important;
  min-width: 126px !important;
}

.anchor-module4-step__breathing ::deep .fog-nyc-exercise__breathing-orb {
  width: 126px !important;
  height: 126px !important;
}

.anchor-module4-step__breathing ::deep .fog-nyc-exercise__breathing-phase {
  margin: 0 0 8px !important;
  color: #df7340 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.anchor-module4-step__breathing ::deep .fog-nyc-exercise__breathing-text {
  max-width: 720px !important;
  margin: 0 !important;
  color: #6f737a !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

/* ============================================================
   TEXTAREA BLOCKS
   ============================================================ */
.anchor-module4-step ::deep .textarea-block,
.anchor-module4-step ::deep .text-area-block,
.anchor-module4-step ::deep .form-textarea-block {
  margin: 0 0 18px;
}

.anchor-module4-step ::deep .textarea-block__title,
.anchor-module4-step ::deep .text-area-block__title,
.anchor-module4-step ::deep .form-textarea-block__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 7px;
  color: #6f737a;
  font-size: 8px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.anchor-module4-step ::deep .textarea-block__title::after,
.anchor-module4-step ::deep .text-area-block__title::after,
.anchor-module4-step ::deep .form-textarea-block__title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #a7a7a7;
}

.anchor-module4-step ::deep textarea,
.anchor-module4-step ::deep .textarea-block__input,
.anchor-module4-step ::deep .text-area-block__input,
.anchor-module4-step ::deep .form-textarea-block__input {
  width: 100%;
  min-height: 74px;
  padding: 13px 14px;
  border: 1px solid #d6d8dc;
  border-radius: 4px;
  background: #ffffff;
  color: #20242a;
  font-size: 10px;
  line-height: 1.55;
  font-weight: 400;
  resize: vertical;
  box-shadow: 0 7px 14px rgba(17, 24, 39, 0.06);
}

.anchor-module4-step ::deep textarea::placeholder,
.anchor-module4-step ::deep .textarea-block__input::placeholder,
.anchor-module4-step ::deep .text-area-block__input::placeholder,
.anchor-module4-step ::deep .form-textarea-block__input::placeholder {
  color: #9a9da3;
  opacity: 1;
}

.anchor-module4-step ::deep textarea:focus,
.anchor-module4-step ::deep .textarea-block__input:focus,
.anchor-module4-step ::deep .text-area-block__input:focus,
.anchor-module4-step ::deep .form-textarea-block__input:focus {
  outline: none;
  border-color: #df7340;
  box-shadow: 0 7px 14px rgba(17, 24, 39, 0.06), 0 0 0 1px rgba(223, 115, 64, 0.18);
}

/* ============================================================
   LEGACY PREVIEW CARD
   ============================================================ */
.anchor-module4-legacy-card {
  margin-top: 22px;
  padding: 24px 26px;
  min-height: 92px;
  border-radius: 2px;
  background: radial-gradient(circle at 76% 34%, rgba(47, 89, 166, 0.38), transparent 32%), linear-gradient(105deg, #101820 0%, #121a24 48%, #183b78 100%);
  color: #ffffff;
}

.anchor-module4-legacy-card__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.anchor-module4-legacy-card__title span {
  color: #df7340;
}

.anchor-module4-legacy-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .anchor-module4-step__progress {
    padding: 10px 22px;
  }
  .anchor-module4-step {
    padding: 22px 22px 30px !important;
  }
  .anchor-module4-step-header__title {
    font-size: 16px;
  }
  .anchor-module4-step-header__description {
    font-size: 10px;
  }
  .anchor-module4-step__breathing ::deep .fog-nyc-exercise__breathing-card {
    height: auto !important;
    min-height: 132px !important;
    padding: 16px !important;
    gap: 16px !important;
  }
  .anchor-module4-step__breathing ::deep .fog-nyc-exercise__breathing-orb-wrap,
  .anchor-module4-step__breathing ::deep .fog-nyc-exercise__breathing-orb {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
  }
  .anchor-module4-legacy-card {
    padding: 20px;
  }
}
/* ============================================================
   JOURNEY DASHBOARD - ANCHOR MODULE CARD
   Match Figma blue chip style
   ============================================================ */
.journey-module-card--anchor .journey-module-card__badge {
  border: 1px solid #1d6dff;
  background: rgba(29, 109, 255, 0.08);
  color: #1d6dff;
}
.journey-module-card--anchor .journey-module-card__title span {
  color: #df7340;
}
.journey-module-card--anchor .journey-module-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border: 1px solid #1d6dff;
  border-radius: 999px;
  background: #eef5ff;
  color: #1d6dff;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
}
.journey-module-card--anchor .journey-module-card__tag::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}
.journey-module-card--anchor .journey-module-card__tag--active {
  background: #eef5ff;
  border-color: #1d6dff;
  color: #1d6dff;
}
.journey-module-card--anchor .journey-module-card__button--primary {
  background: #101820;
  border-color: #101820;
  color: #ffffff;
}
.journey-module-card--anchor .journey-module-card__button--primary:hover:not(:disabled) {
  background: #182532;
  border-color: #182532;
}
.journey-module-card--anchor .journey-module-card__button--secondary {
  background: #ffffff;
  border-color: #cfd3da;
  color: #b5bac3;
}

/* ============================================================
   ANCHOR GUIDED CHAT - GLOBAL OVERRIDE
   This must be in global app.scss / site.scss, not isolated .razor.scss
   ============================================================ */
.anchor-guide-chat-page {
  width: 100%;
  min-height: calc(100vh - 80px);
  background: #f4f3f1;
}

.anchor-guide-chat-page__inner {
  width: 100%;
  padding: 28px 48px 0;
}

/* Hero card */
.anchor-guide-chat-page .guided-chat-hero--anchor {
  width: 100% !important;
  min-height: 116px !important;
  margin: 0 0 26px !important;
  padding: 30px 38px !important;
  border-radius: 4px !important;
  background: radial-gradient(circle at 78% 28%, rgba(46, 92, 178, 0.42), transparent 34%), linear-gradient(105deg, #101820 0%, #111923 48%, #173c86 100%) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

/* Hero layout */
.anchor-guide-chat-page .guided-chat-hero__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
}

.anchor-guide-chat-page .guided-chat-hero__identity {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

/* Icon */
.anchor-guide-chat-page .guided-chat-accent--anchor {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  border-radius: 999px !important;
  border: 1.5px solid #2f7bff !important;
  background: rgba(29, 109, 255, 0.18) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.anchor-guide-chat-page .guided-chat-accent--anchor svg path {
  stroke: #ffffff !important;
}

/* Hide default eyebrow */
.anchor-guide-chat-page .guided-chat-hero__eyebrow {
  display: none !important;
}

/* Title */
.anchor-guide-chat-page .guided-chat-hero__title {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 22px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

/* Subtitle */
.anchor-guide-chat-page .guided-chat-hero__subtitle {
  margin-top: 6px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
}

/* Hide summary/tags/active from reusable component */
.anchor-guide-chat-page .guided-chat-hero__summary,
.anchor-guide-chat-page .guided-chat-hero__tags,
.anchor-guide-chat-page .guided-chat-active--anchor {
  display: none !important;
}

/* Right links like Figma */
.anchor-guide-chat-page .guided-chat-hero__top::after {
  content: "← Synthesis      ← Phase intro";
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

/* Intro section */
.anchor-guide-chat-page section.d-flex.align-items-start.gap-4 {
  align-items: flex-start !important;
  gap: 18px !important;
  margin: 0 0 26px !important;
}

.anchor-guide-chat-page .guided-chat-intro-icon--anchor {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border-radius: 999px !important;
  border: 1.5px solid #1d6dff !important;
  background: #ffffff !important;
  color: #1d6dff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
}

.anchor-guide-chat-page section.d-flex.align-items-start.gap-4 > .bg-white {
  max-width: 980px !important;
  padding: 22px 28px !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08) !important;
}

.anchor-guide-chat-page section.d-flex.align-items-start.gap-4 p {
  margin: 0 !important;
  color: #5c6672 !important;
  font-size: 12px !important;
  line-height: 1.75 !important;
  font-weight: 400 !important;
}

/* Chat message area */
.anchor-guide-chat-page section.bg-white.rounded-3.px-4.py-4.d-flex.flex-column.gap-3 {
  background: transparent !important;
  box-shadow: none !important;
}

/* User greeting bubble */
.anchor-guide-chat-page .bg-light.rounded-3.px-3.py-2.small.text-dark {
  padding: 13px 18px !important;
  border-radius: 3px !important;
  background: #ffffff !important;
  color: #5c6672 !important;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08) !important;
  font-size: 12px !important;
}

/* User avatar */
.anchor-guide-chat-page .border.rounded-circle {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  padding: 0 !important;
  border: 1.5px solid #1d6dff !important;
  color: #1d6dff !important;
  background: #ffffff !important;
  font-weight: 600 !important;
}

/* Input area */
.anchor-guide-chat-page section.bg-white.rounded-3.px-4.py-4.d-flex.flex-column.gap-3:last-of-type {
  margin-top: 80px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.anchor-guide-chat-page section:last-of-type h3 {
  margin: 0 0 12px !important;
  color: #161a20 !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.anchor-guide-chat-page textarea.form-control {
  width: 100% !important;
  min-height: 122px !important;
  padding: 16px 18px !important;
  border: 1px solid #cfd3da !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  color: #20242a !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  resize: vertical !important;
  box-shadow: none !important;
}

.anchor-guide-chat-page textarea.form-control::placeholder {
  color: #a5abb4 !important;
  opacity: 1 !important;
}

.anchor-guide-chat-page textarea.form-control:focus {
  outline: none !important;
  border-color: #1d6dff !important;
  box-shadow: 0 0 0 1px rgba(29, 109, 255, 0.18) !important;
}

/* Send button */
.anchor-guide-chat-page .guided-chat-send--anchor {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: #d8a62f !important;
  color: #ffffff !important;
  font-size: 15px !important;
}

/* Footer */
.anchor-guide-chat-page__footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding: 20px 0 8px;
  border-top: 1px solid #dddfe3;
}

.anchor-guide-chat-page__primary-btn {
  height: 38px;
  border: 1px solid #101820;
  border-radius: 3px;
  background: #101820;
  color: #ffffff;
  padding: 0 18px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.anchor-guide-chat-page__primary-btn:hover {
  background: #182532;
  border-color: #182532;
}

.anchor-guide-chat-page__footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 28px;
  padding: 20px 0 8px;
  border-top: 1px solid #dddfe3;
}

/* ============================================================
   ANCHOR INSIGHTS / SYNTHESIS
   Figma matched, Bootstrap responsive friendly
   ============================================================ */
.anchor-insights-page {
  position: relative;
  min-height: calc(100vh - 76px);
  background: #f5f5f3;
  color: #15191f;
}

.anchor-insights-page__content {
  min-height: inherit;
  transition: filter 180ms ease;
}

.anchor-insights-page.is-drawer-open .anchor-insights-page__content {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

.anchor-insights-page__inner {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 34px 48px 34px;
}

.anchor-insights-page__header {
  margin-bottom: 22px;
}

.anchor-insights-page__title {
  margin: 0;
  color: #111820;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.anchor-insights-page__title span {
  color: #df7340;
}

.anchor-insights-page__actions {
  min-width: 0;
}

.anchor-insights-page__ai-chip {
  height: 30px;
  padding: 0 14px;
  border: 1px solid #101820;
  border-radius: 999px;
  background: #101820;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.anchor-insights-page__outline-btn {
  height: 30px;
  padding: 0 14px;
  border: 1px solid #101820;
  border-radius: 3px;
  background: #ffffff;
  color: #101820;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ============================================================
   SUMMARY CARD
   More space, premium blue card, content vertically balanced
   ============================================================ */
.anchor-insight-summary-card {
  position: relative;
  margin: 0 0 42px;
  padding: 30px 34px 28px;
  min-height: 190px;
  border: 1px solid #d7e4ff;
  border-radius: 4px;
  background: #eaf1ff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.anchor-insight-summary-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.anchor-insight-summary-card__label {
  color: #111820;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.anchor-insight-summary-card__edit {
  height: 32px;
  padding: 0 14px;
  border: 1px solid #bfc8d5;
  border-radius: 3px;
  background: #ffffff;
  color: #4d5663;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.anchor-insight-summary-card__title {
  max-width: 960px;
  margin: 0 0 12px;
  color: #111820;
  font-size: 17px;
  line-height: 1.38;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.anchor-insight-summary-card__text {
  max-width: 980px;
  margin: 0;
  color: #56616f;
  font-size: 12.5px;
  line-height: 1.75;
  font-weight: 500;
}

.anchor-insight-summary-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.anchor-insight-summary-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 10px;
  border: 1px solid #1d6dff;
  border-radius: 999px;
  background: #eef5ff;
  color: #1d6dff;
  font-size: 9.5px;
  line-height: 1;
  font-weight: 700;
}

.anchor-insight-summary-card__sparkle {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: #eab39c;
  font-size: 30px;
  line-height: 1;
  pointer-events: none;
}

/* ============================================================
   COMPLETE FORMA ARC - FINAL FIX
   Fix left spacing + vertical center + Figma-like card content
   ============================================================ */
.anchor-insights-page .anchor-arc-section {
  margin: 0 0 42px;
}

.anchor-insights-page .anchor-arc-section__heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
}
.anchor-insights-page .anchor-arc-section__heading span {
  color: #6e747c;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.anchor-insights-page .anchor-arc-section__heading::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #9ea4ad;
}

.anchor-insights-page .anchor-arc-grid {
  max-width: none;
}

.anchor-insights-page .anchor-arc-grid .col-12 {
  display: flex;
}

/* Main card fix */
.anchor-insights-page .anchor-arc-card {
  width: 100% !important;
  min-height: 152px !important;
  height: 100% !important;
  /* THIS fixes your no-left-space issue */
  padding: 34px 38px !important;
  border-radius: 4px !important;
  color: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

/* Reset heading spacing safely */
.anchor-insights-page .anchor-arc-card h3 {
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

.anchor-insights-page .anchor-arc-card h4 {
  margin: 0 0 11px 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;
}

.anchor-insights-page .anchor-arc-card p {
  max-width: 300px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 11px !important;
  line-height: 1.7 !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
}

/* Gradients */
.anchor-insights-page .anchor-arc-card--fog {
  background: radial-gradient(circle at 14% 18%, rgba(223, 115, 64, 0.24), transparent 36%), linear-gradient(120deg, #613528 0%, #241f22 52%, #101820 100%) !important;
}

.anchor-insights-page .anchor-arc-card--observe {
  background: radial-gradient(circle at 16% 20%, rgba(29, 109, 255, 0.22), transparent 38%), linear-gradient(120deg, #173a55 0%, #122333 50%, #101820 100%) !important;
}

.anchor-insights-page .anchor-arc-card--reconnect {
  background: radial-gradient(circle at 16% 22%, rgba(50, 188, 107, 0.24), transparent 38%), linear-gradient(120deg, #145b35 0%, #102b22 50%, #101820 100%) !important;
}

.anchor-insights-page .anchor-arc-card--move {
  background: radial-gradient(circle at 18% 22%, rgba(133, 82, 255, 0.28), transparent 40%), linear-gradient(120deg, #432174 0%, #241c46 50%, #101820 100%) !important;
}

.anchor-insights-page .anchor-arc-card--anchor {
  background: radial-gradient(circle at 18% 22%, rgba(29, 109, 255, 0.3), transparent 40%), linear-gradient(120deg, #173f8c 0%, #162c55 50%, #101820 100%) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
  .anchor-insight-summary-card {
    padding: 26px 28px 24px;
    min-height: 176px;
  }
  .anchor-arc-card {
    min-height: 140px;
    padding: 26px 28px;
  }
  .anchor-arc-card h3 {
    font-size: 18px;
  }
  .anchor-arc-card h4 {
    font-size: 12px;
  }
  .anchor-arc-card p {
    font-size: 10px;
  }
}
@media (max-width: 767.98px) {
  .anchor-insight-summary-card {
    padding: 22px;
    min-height: auto;
  }
  .anchor-insight-summary-card__top {
    align-items: flex-start;
  }
  .anchor-insight-summary-card__title {
    font-size: 15px;
  }
  .anchor-insight-summary-card__text {
    font-size: 12px;
  }
  .anchor-insight-summary-card__sparkle {
    display: none;
  }
  .anchor-arc-section__heading {
    gap: 12px;
  }
  .anchor-arc-section__heading span {
    font-size: 11px;
  }
  .anchor-arc-card {
    min-height: 132px;
    padding: 24px;
  }
  .anchor-arc-card h3 {
    font-size: 17px;
  }
  .anchor-arc-card h4 {
    font-size: 12px;
  }
  .anchor-arc-card p {
    max-width: none;
  }
}
/* ============================================================
   FOOTER
   ============================================================ */
.anchor-insights-page__footer {
  padding-top: 18px;
  border-top: 1px solid #dedede;
}

.anchor-insights-page__back-btn {
  height: 34px;
  padding: 0 16px;
  border: 1px solid #cfd3da;
  border-radius: 3px;
  background: #ffffff;
  color: #9ba1aa;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.anchor-insights-page__primary-btn {
  height: 34px;
  padding: 0 18px;
  border: 1px solid #101820;
  border-radius: 3px;
  background: #101820;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   DRAWER
   ============================================================ */
.anchor-insights-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(15, 23, 42, 0.45);
}

.anchor-insights-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1050;
  width: min(430px, 100vw);
  background: #ffffff;
  box-shadow: -22px 0 44px rgba(15, 23, 42, 0.22);
  display: flex;
  flex-direction: column;
  animation: anchorDrawerIn 180ms ease-out;
}

.anchor-insights-drawer__header {
  height: 72px;
  padding: 0 22px;
  border-bottom: 1px solid #e6e8ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.anchor-insights-drawer__header h2 {
  margin: 0;
  color: #111820;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.anchor-insights-drawer__close {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #111820;
  font-size: 18px;
  line-height: 1;
}

.anchor-insights-drawer__body {
  flex: 1;
  padding: 28px 22px;
}

.anchor-insights-drawer__textarea {
  width: 100%;
  min-height: 235px;
  padding: 18px;
  border: 1px solid #d3d7de;
  border-radius: 8px;
  background: #ffffff;
  color: #303844;
  font-size: 12px;
  line-height: 1.75;
  resize: vertical;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}
.anchor-insights-drawer__textarea:focus {
  outline: none;
  border-color: #1d6dff;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08), 0 0 0 1px rgba(29, 109, 255, 0.18);
}

.anchor-insights-drawer__word-count {
  margin-top: 8px;
  color: #8a9099;
  font-size: 9px;
  text-align: right;
}

.anchor-insights-drawer__footer {
  height: 72px;
  padding: 0 22px;
  border-top: 1px solid #e6e8ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.anchor-insights-drawer__cancel {
  height: 34px;
  padding: 0 16px;
  border: 1px solid #d3d7de;
  border-radius: 3px;
  background: #ffffff;
  color: #a1a6af;
  font-size: 10px;
  font-weight: 800;
}

.anchor-insights-drawer__save {
  height: 34px;
  padding: 0 18px;
  border: 1px solid #101820;
  border-radius: 3px;
  background: #101820;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
}

@keyframes anchorDrawerIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .anchor-insights-page__inner {
    padding: 28px 28px 32px;
  }
  .anchor-insights-page__title {
    font-size: 22px;
  }
  .anchor-insight-summary-card__title {
    font-size: 15px;
  }
  .anchor-arc-card {
    min-height: 118px;
  }
}
@media (max-width: 575.98px) {
  .anchor-insights-page__inner {
    padding: 24px 18px 28px;
  }
  .anchor-insights-page__actions {
    width: 100%;
  }
  .anchor-insights-page__actions button {
    width: 100%;
    justify-content: center;
  }
  .anchor-insight-summary-card {
    padding: 18px;
  }
  .anchor-insight-summary-card__top {
    align-items: flex-start;
  }
  .anchor-insight-summary-card__sparkle {
    display: none;
  }
  .anchor-insights-page__footer {
    flex-direction: column;
    align-items: stretch !important;
  }
  .anchor-insights-page__footer button {
    width: 100%;
    justify-content: center;
  }
  .anchor-insights-drawer {
    width: 100vw;
  }
}
/* ============================================================
   ANCHOR CLOSURE RITUAL
   Figma matched final closure screen
   ============================================================ */
.anchor-closure-page {
  width: 100%;
  min-height: calc(100vh - 72px);
  background: #f4f3f1;
  color: #111820;
}

/* ============================================================
   HERO
   ============================================================ */
.anchor-closure-hero {
  min-height: 142px;
  padding: 28px 38px 26px;
  background: radial-gradient(circle at 48% 42%, rgba(223, 115, 64, 0.32), transparent 32%), linear-gradient(105deg, #101820 0%, #141820 47%, #8a462e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.anchor-closure-hero__content {
  min-width: 0;
}

.anchor-closure-hero__pill {
  width: fit-content;
  margin: 0 0 10px;
  padding: 5px 10px;
  border: 1px solid rgba(223, 115, 64, 0.82);
  border-radius: 999px;
  background: rgba(223, 115, 64, 0.08);
  color: #df7340;
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.anchor-closure-hero__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.anchor-closure-hero__title span {
  color: #df7340;
}

.anchor-closure-hero__arc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.anchor-closure-hero__back {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.anchor-closure-hero__back:hover {
  color: #ffffff;
}

/* ============================================================
   BODY
   ============================================================ */
.anchor-closure-body {
  padding: 24px 34px 38px;
}

.anchor-closure-copy {
  max-width: 1120px;
  margin: 0 0 22px;
}
.anchor-closure-copy p {
  margin: 0 0 11px;
  color: #313946;
  font-size: 12px;
  line-height: 1.62;
  font-weight: 500;
}
.anchor-closure-copy strong {
  color: #111820;
  font-weight: 900;
}

/* ============================================================
   BREATHING CARD OVERRIDE
   Shared BreathingCard made Anchor-specific
   ============================================================ */
.anchor-closure-breathing {
  margin: 0 0 24px;
}
.anchor-closure-breathing ::deep(.fog-nyc-exercise__breathing-card) {
  width: 100%;
  min-height: 150px;
  padding: 24px 28px;
  border: 0;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 34px;
  overflow: hidden;
}
.anchor-closure-breathing ::deep(.fog-nyc-exercise__breathing-orb-wrap) {
  width: 110px;
  height: 110px;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anchor-closure-breathing ::deep(.fog-nyc-exercise__breathing-orb) {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 999px;
}
.anchor-closure-breathing ::deep(.fog-nyc-exercise__orb-ring--outer) {
  position: absolute;
  inset: 0;
  border: 1px solid #df7340;
  border-radius: 999px;
}
.anchor-closure-breathing ::deep(.fog-nyc-exercise__orb-ring--inner) {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(223, 115, 64, 0.38);
  border-radius: 999px;
}
.anchor-closure-breathing ::deep(.fog-nyc-exercise__orb-core) {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #e7cabc;
}
.anchor-closure-breathing ::deep(.fog-nyc-exercise__breathing-copy) {
  flex: 1;
  min-width: 0;
}
.anchor-closure-breathing ::deep(.fog-nyc-exercise__breathing-phase) {
  margin: 0 0 8px;
  color: #df7340;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}
.anchor-closure-breathing ::deep(.fog-nyc-exercise__breathing-text) {
  margin: 0;
  color: #69727f;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
}

/* ============================================================
   QUESTIONS
   ============================================================ */
.anchor-closure-questions {
  margin: 0 0 24px;
}

.anchor-closure-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
}
.anchor-closure-section-title span {
  color: #6d747d;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.anchor-closure-section-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #9ea4ad;
}

.anchor-closure-question-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.anchor-closure-question-card {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 5px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: none;
}

.anchor-closure-question-card__number {
  width: 22px;
  min-width: 22px;
  color: #df7340;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.anchor-closure-question-card__text {
  color: #121820;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}
.anchor-closure-question-card__text strong {
  font-weight: 900;
}

/* ============================================================
   QUOTE CARD
   ============================================================ */
.anchor-closure-quote {
  margin: 0;
  padding: 24px 28px 22px;
  border-radius: 6px;
  background: #ffffff;
  text-align: center;
}
.anchor-closure-quote blockquote {
  margin: 0 0 8px;
  color: #111820;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
}
.anchor-closure-quote p {
  margin: 0;
  color: #111820;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.anchor-closure-quote__actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* ============================================================
   ACTION BUTTONS
   ============================================================ */
.anchor-closure-footer__primary,
.anchor-closure-footer__secondary {
  height: 36px;
  padding: 0 22px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.anchor-closure-footer__primary {
  border: 1px solid #101820;
  background: #101820;
  color: #ffffff;
  cursor: pointer;
}
.anchor-closure-footer__primary:hover {
  background: #182532;
  border-color: #182532;
}

.anchor-closure-footer__secondary {
  border: 1px solid #d1d5dc;
  background: #ffffff;
  color: #b0b5bd;
  cursor: not-allowed;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .anchor-closure-hero {
    padding: 28px;
  }
  .anchor-closure-hero__title {
    font-size: 24px;
  }
  .anchor-closure-body {
    padding: 24px;
  }
}
@media (max-width: 767.98px) {
  .anchor-closure-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .anchor-closure-hero__title {
    font-size: 22px;
  }
  .anchor-closure-breathing ::deep(.fog-nyc-exercise__breathing-card) {
    min-height: auto;
    padding: 22px;
    gap: 20px;
  }
  .anchor-closure-breathing ::deep(.fog-nyc-exercise__breathing-orb-wrap),
  .anchor-closure-breathing ::deep(.fog-nyc-exercise__breathing-orb) {
    width: 84px;
    height: 84px;
    min-width: 84px;
  }
  .anchor-closure-question-card {
    min-height: auto;
    padding: 16px 18px;
    align-items: flex-start;
  }
  .anchor-closure-quote__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .anchor-closure-quote__actions button {
    width: 100%;
  }
}
/* ============================================================
   ANCHOR GUIDE CHAT - FOOTER GAP FIX
   Adds clean space between textarea and Capture button
   ============================================================ */
.anchor-guide-chat-page__footer {
  margin-top: 28px !important;
  padding-top: 0 !important;
  padding-bottom: 24px !important;
  border-top: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.anchor-guide-chat-page__primary-btn {
  height: 42px !important;
  min-width: 260px !important;
  padding: 0 24px !important;
  border: 1px solid #101820 !important;
  border-radius: 4px !important;
  background: #101820 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  cursor: pointer !important;
}

/* ============================================================
   PHASE INTRO VIDEO
   Reusable for FOG / OBSERVE / RECONNECT / MOVE / ANCHOR
   Component: Shared/Components/PhaseIntroVideo
============================================================ */
.phase-intro-video {
  --phase-video-start: #4a2a1f;
  --phase-video-mid: #1b1d24;
  --phase-video-end: #111417;
  --phase-video-glow: rgba(255, 123, 66, 0.26);
  --phase-video-play-bg: rgba(107, 72, 55, 0.92);
  --phase-video-progress: #ff7b42;
  width: 100%;
  max-width: 520px;
  border-radius: 4px;
  overflow: hidden;
  background: #121820;
}
.phase-intro-video--fog {
  --phase-video-start: #5a3528;
  --phase-video-mid: #25201f;
  --phase-video-end: #111417;
  --phase-video-glow: rgba(255, 123, 66, 0.28);
  --phase-video-play-bg: rgba(112, 72, 51, 0.92);
  --phase-video-progress: #ff7b42;
}
.phase-intro-video--observe {
  --phase-video-start: #213951;
  --phase-video-mid: #1a2a3c;
  --phase-video-end: #111417;
  --phase-video-glow: rgba(88, 154, 217, 0.26);
  --phase-video-play-bg: rgba(95, 78, 86, 0.92);
  --phase-video-progress: #5aa6e8;
}
.phase-intro-video--reconnect {
  --phase-video-start: #0f4b25;
  --phase-video-mid: #122d22;
  --phase-video-end: #111417;
  --phase-video-glow: rgba(62, 185, 104, 0.25);
  --phase-video-play-bg: rgba(86, 92, 55, 0.92);
  --phase-video-progress: #2dbf66;
}
.phase-intro-video--move {
  --phase-video-start: #4c2a87;
  --phase-video-mid: #251b3a;
  --phase-video-end: #111417;
  --phase-video-glow: rgba(122, 78, 216, 0.3);
  --phase-video-play-bg: rgba(111, 70, 116, 0.92);
  --phase-video-progress: #7a4ed8;
}
.phase-intro-video--anchor {
  --phase-video-start: #143f86;
  --phase-video-mid: #14284d;
  --phase-video-end: #111417;
  --phase-video-glow: rgba(37, 99, 235, 0.28);
  --phase-video-play-bg: rgba(63, 78, 122, 0.92);
  --phase-video-progress: #2563eb;
}
.phase-intro-video.is-playing .phase-intro-video__player {
  opacity: 1;
}
.phase-intro-video.is-playing .phase-intro-video__shade {
  background: linear-gradient(180deg, rgba(6, 10, 14, 0.18) 0%, rgba(6, 10, 14, 0.08) 45%, rgba(6, 10, 14, 0.72) 100%);
}
.phase-intro-video.is-playing .phase-intro-video__play {
  opacity: 0.84;
  background: rgba(17, 20, 23, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.phase-intro-video.is-playing .phase-intro-video__play:hover {
  opacity: 1;
  background: rgba(17, 20, 23, 0.78);
}
.phase-intro-video__stage, .phase-intro-video__state, .phase-intro-video__placeholder {
  position: relative;
  width: 100%;
  height: 220px;
  min-height: 220px;
  overflow: hidden;
  border-radius: 4px;
  background: radial-gradient(circle at 48% 50%, var(--phase-video-glow) 0%, rgba(255, 255, 255, 0.04) 12%, transparent 28%), linear-gradient(110deg, var(--phase-video-start) 0%, var(--phase-video-mid) 48%, var(--phase-video-end) 100%);
}
.phase-intro-video__stage {
  cursor: default;
}
.phase-intro-video__player {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  background: #111417;
  transition: opacity 0.2s ease;
}
.phase-intro-video__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, color-mix(in srgb, var(--phase-video-start) 86%, black 14%) 0%, rgba(24, 27, 38, 0.92) 52%, rgba(17, 19, 22, 0.96) 100%);
}
.phase-intro-video__expand {
  position: absolute;
  top: 30px;
  right: 28px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #ff7b42;
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
}
.phase-intro-video__expand::before {
  content: "↗";
  font-size: 11px;
  line-height: 1;
}
.phase-intro-video__expand:hover {
  color: #ff9a68;
}
.phase-intro-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 60;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  background: var(--phase-video-play-bg);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25), 0 0 35px var(--phase-video-glow);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.phase-intro-video__play span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
}
.phase-intro-video__play.is-play span {
  transform: translateX(1px);
}
.phase-intro-video__play.is-pause span {
  transform: none;
  font-size: 15px;
  letter-spacing: -2px;
}
.phase-intro-video__play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: color-mix(in srgb, var(--phase-video-play-bg) 86%, white 14%);
}
.phase-intro-video__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  z-index: 30;
}
.phase-intro-video__title {
  margin: 0;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}
.phase-intro-video__duration {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}
.phase-intro-video {
  /* Hidden in normal card mode */
}
.phase-intro-video__controls, .phase-intro-video__controls--fullscreen-only {
  display: none;
}
.phase-intro-video__control-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}
.phase-intro-video__control-button:hover {
  background: rgba(255, 255, 255, 0.22);
}
.phase-intro-video__time {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.phase-intro-video__progress {
  width: 100%;
  height: 18px;
  cursor: pointer;
  accent-color: var(--phase-video-progress);
  background: transparent;
}
.phase-intro-video__progress::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}
.phase-intro-video__progress::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  margin-top: -5px;
  border-radius: 999px;
  background: var(--phase-video-progress);
  cursor: pointer;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--phase-video-progress) 20%, transparent);
}
.phase-intro-video__progress::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}
.phase-intro-video__progress::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 999px;
  background: var(--phase-video-progress);
  cursor: pointer;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--phase-video-progress) 20%, transparent);
}
.phase-intro-video__state, .phase-intro-video__placeholder {
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.phase-intro-video__spinner {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.24);
  border-top-color: var(--phase-video-progress);
  animation: phaseIntroVideoSpin 0.8s linear infinite;
}
.phase-intro-video__state-text {
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-align: center;
}
.phase-intro-video__state--error {
  padding: 24px;
  text-align: center;
}
.phase-intro-video__error-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--phase-video-progress) 78%, white 22%);
  color: var(--phase-video-progress);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.phase-intro-video__retry {
  border: 1px solid color-mix(in srgb, var(--phase-video-progress) 78%, white 22%);
  background: transparent;
  color: var(--phase-video-progress);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* ============================================================
   FULLSCREEN VIDEO
   Keep outside nesting for browser reliability
============================================================ */
.phase-intro-video__stage:fullscreen,
.phase-intro-video__stage:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  border-radius: 0;
  background: #000;
}

.phase-intro-video__stage:fullscreen .phase-intro-video__player,
.phase-intro-video__stage:-webkit-full-screen .phase-intro-video__player {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: contain;
  background: #000;
  pointer-events: auto;
}

.phase-intro-video__stage:fullscreen .phase-intro-video__shade,
.phase-intro-video__stage:-webkit-full-screen .phase-intro-video__shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.78) 100%);
}

.phase-intro-video__stage:fullscreen .phase-intro-video__expand,
.phase-intro-video__stage:-webkit-full-screen .phase-intro-video__expand {
  top: 32px;
  right: 42px;
  z-index: 200;
}

.phase-intro-video__stage:fullscreen .phase-intro-video__content,
.phase-intro-video__stage:-webkit-full-screen .phase-intro-video__content {
  left: 42px;
  right: 42px;
  bottom: 108px;
  z-index: 200;
}

.phase-intro-video__stage:fullscreen .phase-intro-video__title,
.phase-intro-video__stage:-webkit-full-screen .phase-intro-video__title {
  font-size: 16px;
  font-weight: 600;
}

.phase-intro-video__stage:fullscreen .phase-intro-video__duration,
.phase-intro-video__stage:-webkit-full-screen .phase-intro-video__duration {
  display: block;
  margin-top: 8px;
}

/* Show controls only in fullscreen */
.phase-intro-video__stage:fullscreen .phase-intro-video__controls,
.phase-intro-video__stage:-webkit-full-screen .phase-intro-video__controls,
.phase-intro-video__stage:fullscreen .phase-intro-video__controls--fullscreen-only,
.phase-intro-video__stage:-webkit-full-screen .phase-intro-video__controls--fullscreen-only {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 32px;
  z-index: 999999;
  display: grid;
  grid-template-columns: 42px 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(5, 8, 12, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.phase-intro-video__stage:fullscreen .phase-intro-video__play,
.phase-intro-video__stage:-webkit-full-screen .phase-intro-video__play {
  z-index: 300;
}

/* ============================================================
   Wrappers inside phase intro pages
============================================================ */
.fog-intro-page__video-wrap,
.observe-intro-page__video-wrap,
.reconnect-overview__media,
.move-intro-page__video-wrap,
.anchor-intro-page__video-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.fog-intro-page__video-wrap .phase-intro-video,
.observe-intro-page__video-wrap .phase-intro-video,
.reconnect-overview__media .phase-intro-video,
.move-intro-page__video-wrap .phase-intro-video,
.anchor-intro-page__video-wrap .phase-intro-video {
  width: 100%;
  max-width: 520px;
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1280px) {
  .phase-intro-video {
    max-width: 480px;
  }
  .phase-intro-video__stage, .phase-intro-video__state, .phase-intro-video__placeholder {
    height: 210px;
    min-height: 210px;
  }
}
@media (max-width: 991px) {
  .fog-intro-page__video-wrap,
  .observe-intro-page__video-wrap,
  .reconnect-overview__media,
  .move-intro-page__video-wrap,
  .anchor-intro-page__video-wrap {
    justify-content: stretch;
  }
  .phase-intro-video {
    width: 100%;
    max-width: 100%;
  }
  .phase-intro-video__stage, .phase-intro-video__state, .phase-intro-video__placeholder {
    height: 230px;
    min-height: 230px;
  }
}
@media (max-width: 575px) {
  .phase-intro-video__stage, .phase-intro-video__state, .phase-intro-video__placeholder {
    height: 210px;
    min-height: 210px;
  }
  .phase-intro-video__content {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }
  .phase-intro-video__expand {
    top: 22px;
    right: 20px;
  }
  .phase-intro-video__play {
    width: 44px;
    height: 44px;
  }
  .phase-intro-video__time {
    font-size: 11px;
  }
  .phase-intro-video__stage:fullscreen .phase-intro-video__content,
  .phase-intro-video__stage:-webkit-full-screen .phase-intro-video__content {
    left: 18px;
    right: 18px;
    bottom: 92px;
  }
  .phase-intro-video__stage:fullscreen .phase-intro-video__controls,
  .phase-intro-video__stage:-webkit-full-screen .phase-intro-video__controls,
  .phase-intro-video__stage:fullscreen .phase-intro-video__controls--fullscreen-only,
  .phase-intro-video__stage:-webkit-full-screen .phase-intro-video__controls--fullscreen-only {
    left: 14px;
    right: 14px;
    bottom: 20px;
    grid-template-columns: 38px 44px minmax(0, 1fr) 44px;
    gap: 9px;
    padding: 10px 12px;
  }
}
@keyframes phaseIntroVideoSpin {
  to {
    transform: rotate(360deg);
  }
}
/* ============================================================
   ONBOARDING OVERVIEW VIDEO
   Used in NewJourney onboarding orientation screen
   Figma style: wide grey placeholder/card
============================================================ */
.ob-video {
  width: 100%;
  margin-top: 28px;
  margin-bottom: 22px;
}

.ob-video__frame--shared {
  width: 100%;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  overflow: visible;
}

/* Reusable video component inside onboarding */
.ob-video__frame--shared .phase-intro-video {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

/* Main video rectangle */
.ob-video__frame--shared .phase-intro-video__stage,
.ob-video__frame--shared .phase-intro-video__state,
.ob-video__frame--shared .phase-intro-video__placeholder {
  height: 154px;
  min-height: 154px;
  border-radius: 8px;
  background: #c6c6c8;
}

/* Figma placeholder text */
.ob-video__frame--shared .phase-intro-video__placeholder {
  color: #7c7c80;
  font-family: "Motiva Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

/* Loading / error should also stay clean */
.ob-video__frame--shared .phase-intro-video__state {
  color: #70757d;
}

.ob-video__frame--shared .phase-intro-video__state-text {
  color: #70757d;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.ob-video__frame--shared .phase-intro-video__spinner {
  width: 24px;
  height: 24px;
  border-color: rgba(0, 0, 0, 0.14);
  border-top-color: #ef6f3d;
}

/* When video exists, keep it clean and onboarding-friendly */
.ob-video__frame--shared .phase-intro-video__player {
  object-fit: cover;
  border-radius: 8px;
}

.ob-video__frame--shared .phase-intro-video__shade {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.16) 100%);
}

/* Center play button */
.ob-video__frame--shared .phase-intro-video__play {
  width: 46px;
  height: 46px;
  background: rgba(20, 24, 28, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* Hide title/duration in normal onboarding card */
.ob-video__frame--shared .phase-intro-video__content {
  display: none;
}

/* Hide expand in normal onboarding view to match Figma */
.ob-video__frame--shared .phase-intro-video__expand {
  display: none;
}

/* Normal controls hidden. Fullscreen controls still work from reusable component */
.ob-video__frame--shared .phase-intro-video__controls {
  display: none;
}

/* Overview theme variables */
.phase-intro-video--overview {
  --phase-video-start: #c6c6c8;
  --phase-video-mid: #c6c6c8;
  --phase-video-end: #c6c6c8;
  --phase-video-glow: rgba(239, 111, 61, 0.18);
  --phase-video-play-bg: rgba(20, 24, 28, 0.72);
  --phase-video-progress: #ef6f3d;
}

/* Fullscreen should still show proper controls */
.ob-video__frame--shared .phase-intro-video__stage:fullscreen .phase-intro-video__content,
.ob-video__frame--shared .phase-intro-video__stage:-webkit-full-screen .phase-intro-video__content {
  display: block;
}

.ob-video__frame--shared .phase-intro-video__stage:fullscreen .phase-intro-video__expand,
.ob-video__frame--shared .phase-intro-video__stage:-webkit-full-screen .phase-intro-video__expand {
  display: inline-flex;
}

/* Responsive */
@media (max-width: 991px) {
  .ob-video {
    margin-top: 24px;
  }
  .ob-video__frame--shared .phase-intro-video__stage,
  .ob-video__frame--shared .phase-intro-video__state,
  .ob-video__frame--shared .phase-intro-video__placeholder {
    height: 150px;
    min-height: 150px;
  }
}
@media (max-width: 575px) {
  .ob-video {
    margin-top: 20px;
    margin-bottom: 18px;
  }
  .ob-video__frame--shared .phase-intro-video__stage,
  .ob-video__frame--shared .phase-intro-video__state,
  .ob-video__frame--shared .phase-intro-video__placeholder {
    height: 132px;
    min-height: 132px;
    border-radius: 7px;
  }
}
/* ============================================================
   ONBOARDING VIDEO WRAPPER
   Used only in NewJourney.razor
============================================================ */
.ob-video {
  width: 100%;
  margin: 32px 0 28px;
}

.ob-video__shared-frame {
  width: 100%;
  max-width: 100%;
  height: 180px;
  min-height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: #c5c5c8;
}

/* Force reusable component to fill onboarding wrapper */
.ob-video__shared-frame .phase-intro-video {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #c5c5c8;
  box-shadow: none;
}

/* Main video area */
.ob-video__shared-frame .phase-intro-video__stage,
.ob-video__shared-frame .phase-intro-video__state,
.ob-video__shared-frame .phase-intro-video__placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 10px;
  background: #c5c5c8;
}

/* Remove phase-style dark gradient for onboarding */
.ob-video__shared-frame .phase-intro-video__shade {
  background: rgba(0, 0, 0, 0.06);
}

/* Video fills full grey block */
.ob-video__shared-frame .phase-intro-video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Placeholder text */
.ob-video__shared-frame .phase-intro-video__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777a80;
  font-family: "Motiva Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

/* Clean center play button */
.ob-video__shared-frame .phase-intro-video__play {
  width: 54px;
  height: 54px;
  background: rgba(28, 31, 36, 0.72);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

/* Hide phase intro UI in onboarding normal view */
.ob-video__shared-frame .phase-intro-video__expand,
.ob-video__shared-frame .phase-intro-video__content,
.ob-video__shared-frame .phase-intro-video__controls {
  display: none;
}

/* Overview color variables */
.phase-intro-video--overview {
  --phase-video-start: #c5c5c8;
  --phase-video-mid: #c5c5c8;
  --phase-video-end: #c5c5c8;
  --phase-video-glow: rgba(239, 111, 61, 0.18);
  --phase-video-play-bg: rgba(28, 31, 36, 0.72);
  --phase-video-progress: #ef6f3d;
}

/* Fullscreen: show title, expand, and controls again */
.ob-video__shared-frame .phase-intro-video__stage:fullscreen .phase-intro-video__expand,
.ob-video__shared-frame .phase-intro-video__stage:-webkit-full-screen .phase-intro-video__expand,
.ob-video__shared-frame .phase-intro-video__stage:fullscreen .phase-intro-video__content,
.ob-video__shared-frame .phase-intro-video__stage:-webkit-full-screen .phase-intro-video__content,
.ob-video__shared-frame .phase-intro-video__stage:fullscreen .phase-intro-video__controls,
.ob-video__shared-frame .phase-intro-video__stage:-webkit-full-screen .phase-intro-video__controls {
  display: grid;
}

/* But content should be block, not grid */
.ob-video__shared-frame .phase-intro-video__stage:fullscreen .phase-intro-video__content,
.ob-video__shared-frame .phase-intro-video__stage:-webkit-full-screen .phase-intro-video__content {
  display: block;
}

/* Expand should be inline-flex */
.ob-video__shared-frame .phase-intro-video__stage:fullscreen .phase-intro-video__expand,
.ob-video__shared-frame .phase-intro-video__stage:-webkit-full-screen .phase-intro-video__expand {
  display: inline-flex;
}

@media (max-width: 991px) {
  .ob-video__shared-frame {
    height: 160px;
    min-height: 160px;
  }
  .ob-video__shared-frame .phase-intro-video__stage,
  .ob-video__shared-frame .phase-intro-video__state,
  .ob-video__shared-frame .phase-intro-video__placeholder {
    min-height: 160px;
  }
}
@media (max-width: 575px) {
  .ob-video__shared-frame {
    height: 135px;
    min-height: 135px;
    border-radius: 8px;
  }
  .ob-video__shared-frame .phase-intro-video,
  .ob-video__shared-frame .phase-intro-video__stage,
  .ob-video__shared-frame .phase-intro-video__state,
  .ob-video__shared-frame .phase-intro-video__placeholder,
  .ob-video__shared-frame .phase-intro-video__player {
    border-radius: 8px;
  }
  .ob-video__shared-frame .phase-intro-video__stage,
  .ob-video__shared-frame .phase-intro-video__state,
  .ob-video__shared-frame .phase-intro-video__placeholder {
    min-height: 135px;
  }
}
/* ============================================================
   OBSERVE INTRO PAGE — FIGMA MATCH
============================================================ */
.observe-intro-page {
  background: #ffffff;
  color: #111827;
}

.observe-intro-page__hero {
  min-height: 178px;
  padding: 38px 48px 34px;
  background: radial-gradient(circle at 72% 36%, rgba(47, 91, 132, 0.42) 0%, transparent 28%), linear-gradient(100deg, #11171d 0%, #132332 48%, #233e5a 100%);
  color: #ffffff;
}

.observe-intro-page__hero-content {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.observe-intro-page__hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.observe-intro-page__hero-phase-dot {
  width: 26px;
  height: 26px;
  border: 1px solid #ff7b42;
  border-radius: 999px;
  color: #ff7b42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.observe-intro-page__hero-title {
  margin: 0;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.observe-intro-page__hero-title span {
  color: #ff7b42;
}

.observe-intro-page__hero-subtitle {
  max-width: 980px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.observe-intro-page__hero-chip {
  margin-top: 38px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.observe-intro-page__overview {
  background: #ffffff;
  padding: 34px 48px 28px;
}

.observe-intro-page__overview-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  column-gap: 48px;
  align-items: start;
}

.observe-intro-page__overview-copy {
  max-width: 640px;
}

.observe-intro-page__overview-paragraph {
  margin: 0 0 24px;
  color: #1f2933;
  font-family: "Motiva Sans", sans-serif;
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.observe-intro-page__overview-paragraph strong {
  font-weight: 800;
  color: #101820;
}

.observe-intro-page__accent {
  color: #f26b3a;
  font-weight: 500;
}

.observe-intro-page__note {
  max-width: 620px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid #ff8a5a;
  border-radius: 4px;
  background: #f8fbff;
}

.observe-intro-page__note-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.observe-intro-page__note-text {
  color: #2d3748;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.observe-intro-page__video-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.observe-intro-page__video-wrap .phase-intro-video {
  width: 100%;
  max-width: 520px;
}

.observe-intro-page__video-wrap .phase-intro-video__stage,
.observe-intro-page__video-wrap .phase-intro-video__state,
.observe-intro-page__video-wrap .phase-intro-video__placeholder {
  height: 250px;
  min-height: 250px;
}

@media (max-width: 1280px) {
  .observe-intro-page__hero {
    padding: 34px 40px 30px;
  }
  .observe-intro-page__overview {
    padding: 30px 40px 24px;
  }
  .observe-intro-page__overview-inner {
    grid-template-columns: minmax(0, 1fr) 480px;
    column-gap: 36px;
  }
  .observe-intro-page__video-wrap .phase-intro-video {
    max-width: 480px;
  }
  .observe-intro-page__video-wrap .phase-intro-video__stage,
  .observe-intro-page__video-wrap .phase-intro-video__state,
  .observe-intro-page__video-wrap .phase-intro-video__placeholder {
    height: 224px;
    min-height: 224px;
  }
}
@media (max-width: 991px) {
  .observe-intro-page__hero-content {
    flex-direction: column;
  }
  .observe-intro-page__hero-chip {
    margin-top: 0;
  }
  .observe-intro-page__overview-inner {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
  .observe-intro-page__overview-copy {
    max-width: 100%;
  }
  .observe-intro-page__video-wrap {
    justify-content: stretch;
  }
  .observe-intro-page__video-wrap .phase-intro-video {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .observe-intro-page__hero {
    padding: 30px 22px;
  }
  .observe-intro-page__hero-title {
    font-size: 34px;
  }
  .observe-intro-page__overview {
    padding: 24px 18px 18px;
  }
  .observe-intro-page__overview-paragraph {
    font-size: 14px;
  }
  .observe-intro-page__note {
    grid-template-columns: 28px 1fr;
    padding: 15px 16px;
  }
  .observe-intro-page__note-text {
    font-size: 13px;
  }
  .observe-intro-page__video-wrap .phase-intro-video__stage,
  .observe-intro-page__video-wrap .phase-intro-video__state,
  .observe-intro-page__video-wrap .phase-intro-video__placeholder {
    height: 210px;
    min-height: 210px;
  }
}
/* ============================================================
   RECONNECT INTRO PAGE — FIGMA MATCH
============================================================ */
.reconnect-intro-page {
  background: #ffffff;
  color: #111827;
}

.reconnect-intro-page__hero {
  min-height: 178px;
  padding: 38px 48px 34px;
  background: radial-gradient(circle at 72% 36%, rgba(16, 113, 52, 0.48) 0%, transparent 30%), linear-gradient(100deg, #11171d 0%, #13241b 48%, #0f5a24 100%);
  color: #ffffff;
}

.reconnect-intro-page__hero-content {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.reconnect-intro-page__hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Motiva Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reconnect-intro-page__hero-phase-dot {
  width: 26px;
  height: 26px;
  border: 1px solid #d96f42;
  border-radius: 999px;
  color: #d96f42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.reconnect-intro-page__hero-title {
  margin: 0;
  color: #ffffff;
  font-family: "Motiva Sans", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.reconnect-intro-page__hero-title span {
  color: #ff7b42;
}

.reconnect-intro-page__hero-subtitle {
  max-width: 980px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.reconnect-intro-page__hero-chip {
  margin-top: 38px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.reconnect-intro-page__overview {
  background: #ffffff;
  padding: 34px 48px 28px;
}

.reconnect-intro-page__overview-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  column-gap: 48px;
  align-items: start;
}

.reconnect-intro-page__overview-copy {
  max-width: 640px;
}

.reconnect-intro-page__overview-paragraph {
  margin: 0 0 24px;
  color: #1f2933;
  font-family: "Motiva Sans", sans-serif;
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.reconnect-intro-page__overview-paragraph strong {
  font-weight: 800;
  color: #101820;
}

.reconnect-intro-page__accent {
  color: #24a148;
  font-weight: 500;
}

.reconnect-intro-page__note {
  max-width: 620px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid #31b45a;
  border-radius: 4px;
  background: #f3fff7;
}

.reconnect-intro-page__note-icon {
  width: 24px;
  height: 24px;
  color: #24a148;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.reconnect-intro-page__note-text {
  color: #2d3748;
  font-family: "Motiva Sans", sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.reconnect-intro-page__video-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.reconnect-intro-page__video-wrap .phase-intro-video {
  width: 100%;
  max-width: 520px;
}

.reconnect-intro-page__video-wrap .phase-intro-video__stage,
.reconnect-intro-page__video-wrap .phase-intro-video__state,
.reconnect-intro-page__video-wrap .phase-intro-video__placeholder {
  height: 250px;
  min-height: 250px;
}

@media (max-width: 1280px) {
  .reconnect-intro-page__hero {
    padding: 34px 40px 30px;
  }
  .reconnect-intro-page__overview {
    padding: 30px 40px 24px;
  }
  .reconnect-intro-page__overview-inner {
    grid-template-columns: minmax(0, 1fr) 480px;
    column-gap: 36px;
  }
  .reconnect-intro-page__video-wrap .phase-intro-video {
    max-width: 480px;
  }
  .reconnect-intro-page__video-wrap .phase-intro-video__stage,
  .reconnect-intro-page__video-wrap .phase-intro-video__state,
  .reconnect-intro-page__video-wrap .phase-intro-video__placeholder {
    height: 224px;
    min-height: 224px;
  }
}
@media (max-width: 991px) {
  .reconnect-intro-page__hero-content {
    flex-direction: column;
  }
  .reconnect-intro-page__hero-chip {
    margin-top: 0;
  }
  .reconnect-intro-page__overview-inner {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
  .reconnect-intro-page__overview-copy {
    max-width: 100%;
  }
  .reconnect-intro-page__video-wrap {
    justify-content: stretch;
  }
  .reconnect-intro-page__video-wrap .phase-intro-video {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .reconnect-intro-page__hero {
    padding: 30px 22px;
  }
  .reconnect-intro-page__hero-title {
    font-size: 34px;
  }
  .reconnect-intro-page__overview {
    padding: 24px 18px 18px;
  }
  .reconnect-intro-page__overview-paragraph {
    font-size: 14px;
  }
  .reconnect-intro-page__note {
    grid-template-columns: 28px 1fr;
    padding: 15px 16px;
  }
  .reconnect-intro-page__note-text {
    font-size: 13px;
  }
  .reconnect-intro-page__video-wrap .phase-intro-video__stage,
  .reconnect-intro-page__video-wrap .phase-intro-video__state,
  .reconnect-intro-page__video-wrap .phase-intro-video__placeholder {
    height: 210px;
    min-height: 210px;
  }
}
/* ============================================================
   RECONNECT MODULE CARD - COMPLETED STATE FIX ONLY
   Works with current Razor wrapper:
   .reconnect-intro-page
============================================================ */
.reconnect-intro-page .observe-process-card.reconnect-process-card.is-completed {
  position: relative;
  background: #f4fff7;
  border: 1px solid #d8f3df;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

/* Small completed tick top-right like Figma */
.reconnect-intro-page .reconnect-process-card__tick {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid #17a34a;
  background: #ffffff;
  color: #17a34a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
}

/* Remove old green number bar */
.reconnect-intro-page .observe-process-card.reconnect-process-card.is-completed .observe-process-card__number {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 22px;
  padding: 0;
  background: transparent !important;
  color: #9aa4b2;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

/* Keep title normal */
.reconnect-intro-page .observe-process-card.reconnect-process-card.is-completed .observe-process-card__title {
  color: #101820;
}

/* Keep text normal */
.reconnect-intro-page .observe-process-card.reconnect-process-card.is-completed .observe-process-card__text {
  color: #64748b;
}

/* Stop old completed pseudo styling from leaking */
.reconnect-intro-page .observe-process-card.reconnect-process-card.is-completed::before,
.reconnect-intro-page .observe-process-card.reconnect-process-card.is-completed::after,
.reconnect-intro-page .observe-process-card.reconnect-process-card.is-completed .observe-process-card__number::before,
.reconnect-intro-page .observe-process-card.reconnect-process-card.is-completed .observe-process-card__number::after {
  content: none !important;
  display: none !important;
}

/* =========================================================
   TRANSFORMA — READ-ONLY REVIEW MODE
   Used by: Fog, Observe, Reconnect, Move, Anchor
   Purpose: Premium completed-phase review styling
========================================================= */
/* =========================================================
   1. Parent Phase Read-only Banner
========================================================= */
.phase-readonly-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 1rem 1.5rem 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(226, 214, 204, 0.9);
  border-left: 4px solid #d97706;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 252, 248, 0.98), rgba(255, 247, 237, 0.92));
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.phase-readonly-banner__content {
  position: relative;
  min-width: 0;
  padding-left: 3.15rem;
}

.phase-readonly-banner__content::before {
  content: "🔒";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #fff3e6;
  border: 1px solid rgba(217, 119, 6, 0.18);
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(217, 119, 6, 0.12);
}

.phase-readonly-banner__content strong {
  display: block;
  margin: 0;
  color: #1f2937;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.phase-readonly-banner__content p {
  margin: 0.22rem 0 0;
  color: #6b5f57;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.phase-readonly-banner__back {
  flex: 0 0 auto;
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(217, 119, 6, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #9a4a0f;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.045);
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.phase-readonly-banner__back:hover {
  transform: translateY(-1px);
  background: #fff7ed;
  border-color: rgba(217, 119, 6, 0.52);
  box-shadow: 0 12px 26px rgba(154, 52, 18, 0.09);
}

.phase-readonly-banner__back:active {
  transform: translateY(0);
}

.phase-readonly-banner__back:focus-visible {
  outline: 3px solid rgba(217, 119, 6, 0.22);
  outline-offset: 3px;
}

/* =========================================================
   2. Phase-level Accent Support
   Add these classes on JourneyShell MainContentClass:
   fog-phase--readonly
   observe-phase--readonly
   reconnect-phase--readonly
   move-phase--readonly
   anchor-phase--readonly
========================================================= */
.fog-phase--readonly .phase-readonly-banner {
  border-left-color: #d97706;
}

.observe-phase--readonly .phase-readonly-banner {
  border-left-color: #7c3aed;
}

.reconnect-phase--readonly .phase-readonly-banner {
  border-left-color: #dd6b3d;
}

.move-phase--readonly .phase-readonly-banner {
  border-left-color: #10913f;
}

.anchor-phase--readonly .phase-readonly-banner {
  border-left-color: #2563eb;
}

/* =========================================================
   3. Hide Duplicate Inner Review Notes
   Parent banner is enough. Do not show two review banners.
========================================================= */
.fog-phase--readonly .fog-readonly-note,
.observe-phase--readonly .fog-readonly-note,
.reconnect-phase--readonly .fog-readonly-note,
.move-phase--readonly .fog-readonly-note,
.anchor-phase--readonly .fog-readonly-note,
.fog-phase--readonly .reconnect-readonly-banner,
.observe-phase--readonly .reconnect-readonly-banner,
.reconnect-phase--readonly .reconnect-readonly-banner,
.move-phase--readonly .reconnect-readonly-banner,
.anchor-phase--readonly .reconnect-readonly-banner,
.fog-phase--readonly .phase-readonly-info,
.observe-phase--readonly .phase-readonly-info,
.reconnect-phase--readonly .phase-readonly-info,
.move-phase--readonly .phase-readonly-info,
.anchor-phase--readonly .phase-readonly-info {
  display: none !important;
}

/* =========================================================
   4. Read-only Page Background
========================================================= */
.fog-phase--readonly,
.observe-phase--readonly,
.reconnect-phase--readonly,
.move-phase--readonly,
.anchor-phase--readonly {
  background: #fffaf5;
}

/* =========================================================
   5. Read-only Module Shells
========================================================= */
.fog-module-shell--readonly,
.observe-module-shell--readonly,
.reconnect-module-shell--readonly,
.move-module-shell--readonly,
.anchor-module-shell--readonly {
  background: #fffaf5;
}

.fog-module-page--readonly,
.observe-module-page--readonly,
.reconnect-module-page--readonly,
.move-module-page--readonly,
.anchor-module-page--readonly {
  background: #fffaf5;
}

/* =========================================================
   6. Read-only Form Fields
   Real save protection must stay in C#.
========================================================= */
.fog-step--readonly textarea,
.fog-step--readonly input,
.fog-step--readonly select,
.observe-step--readonly textarea,
.observe-step--readonly input,
.observe-step--readonly select,
.reconnect-step--readonly textarea,
.reconnect-step--readonly input,
.reconnect-step--readonly select,
.move-step--readonly textarea,
.move-step--readonly input,
.move-step--readonly select,
.anchor-step--readonly textarea,
.anchor-step--readonly input,
.anchor-step--readonly select {
  pointer-events: none;
  cursor: default;
  background-color: #fbf8f5 !important;
  border-color: #e8ddd4 !important;
  color: #332a24 !important;
  box-shadow: none !important;
}

.fog-step--readonly textarea::placeholder,
.observe-step--readonly textarea::placeholder,
.reconnect-step--readonly textarea::placeholder,
.move-step--readonly textarea::placeholder,
.anchor-step--readonly textarea::placeholder {
  color: #a29489;
}

/* =========================================================
   7. Disable Inner Editable Buttons Only
   AppLayout Back / Continue must stay clickable.
========================================================= */
.fog-step--readonly button:not(.app-layout__back-button):not(.app-layout__continue-button),
.observe-step--readonly button:not(.app-layout__back-button):not(.app-layout__continue-button),
.reconnect-step--readonly button:not(.app-layout__back-button):not(.app-layout__continue-button),
.move-step--readonly button:not(.app-layout__back-button):not(.app-layout__continue-button),
.anchor-step--readonly button:not(.app-layout__back-button):not(.app-layout__continue-button) {
  pointer-events: none;
  cursor: default;
}

/* =========================================================
   8. Saved Selected Answers
========================================================= */
.fog-step--readonly .is-selected,
.observe-step--readonly .is-selected,
.reconnect-step--readonly .is-selected,
.move-step--readonly .is-selected,
.anchor-step--readonly .is-selected,
.fog-module-page--readonly .is-selected,
.observe-module-page--readonly .is-selected,
.reconnect-module-page--readonly .is-selected,
.move-module-page--readonly .is-selected,
.anchor-module-page--readonly .is-selected {
  border-color: rgba(217, 119, 6, 0.65) !important;
  background: #fff7ed !important;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.08) !important;
}

/* =========================================================
   9. Completed Module Ticks
========================================================= */
.reconnect-process-card__tick,
.move-process-card__tick,
.anchor-process-card__tick {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #16a34a;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.2);
}

/* =========================================================
   10. Read-only Cards Polish
========================================================= */
.reconnect-phase--readonly .reconnect-process-card,
.move-phase--readonly .move-process-card,
.anchor-phase--readonly .anchor-process-card {
  cursor: default;
}

.reconnect-phase--readonly .reconnect-process-card.is-completed,
.move-phase--readonly .move-process-card.is-completed,
.anchor-phase--readonly .anchor-process-card.is-completed {
  border-color: rgba(22, 163, 74, 0.18);
  background: linear-gradient(180deg, #fbfffd 0%, #f5fff8 100%);
}

/* =========================================================
   11. Small Text Polish Inside Read-only Modules
========================================================= */
.reconnect-module-page--readonly .reconnect-reflection-word-count,
.reconnect-module-page--readonly .bridge-statement-panel__count,
.reconnect-module-page--readonly .commitment-frequency__label,
.move-module-page--readonly .move-reflection-word-count,
.move-module-page--readonly .bridge-statement-panel__count,
.anchor-module-page--readonly .anchor-reflection-word-count {
  color: #7a6a5d;
}

/* =========================================================
   12. Mobile
========================================================= */
@media (max-width: 768px) {
  .phase-readonly-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    margin: 0.85rem 1rem 1rem;
    padding: 0.95rem;
    border-radius: 14px;
  }
  .phase-readonly-banner__content {
    padding-left: 2.85rem;
  }
  .phase-readonly-banner__content::before {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.95rem;
  }
  .phase-readonly-banner__content strong {
    font-size: 0.95rem;
  }
  .phase-readonly-banner__content p {
    font-size: 0.84rem;
  }
  .phase-readonly-banner__back {
    width: 100%;
    min-height: 2.55rem;
  }
}
/* =====================================================================
   Module Complete screen
   Matches the existing journey card style (orange #ef8449 accent,
   light card, dark text) seen on the dashboard.
   ===================================================================== */
.module-complete {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.module-complete__check {
  width: 72px;
  height: 72px;
  color: #ef8449;
  margin-bottom: 8px;
}

.module-complete__check svg {
  width: 100%;
  height: 100%;
}

.module-complete__title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.module-complete__title span {
  color: #ef8449;
}

.module-complete__subtitle {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  max-width: 460px;
  margin: 4px 0 20px;
}

.module-complete__stats {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 24px;
}

.module-complete__stat {
  flex: 1 1 0;
  min-width: 120px;
  padding: 18px 12px;
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.module-complete__stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #ef8449;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.module-complete__stat-value--xp {
  color: #ef8449;
}

.module-complete__stat-value--streak {
  color: #1a1a1a;
}

.module-complete__flame {
  font-size: 20px;
}

.module-complete__stat-label {
  font-size: 12px;
  color: #777;
  margin-top: 8px;
  line-height: 1.3;
}

.module-complete__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.module-complete__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px;
  transition: filter 0.15s ease;
}

.module-complete__button--primary {
  background: #1a1a1a;
  color: #fff;
  padding: 13px 28px;
  font-size: 15px;
}

.module-complete__button--primary:hover {
  filter: brightness(1.15);
}

.module-complete__button--secondary {
  background: transparent;
  color: #777;
  font-size: 13px;
  padding: 4px 8px;
}

.module-complete__button--secondary:hover {
  color: #1a1a1a;
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .module-complete__button {
    transition: none;
  }
}
/* ============================================================
   Reconnect Module 3 - What's Been Neglected
   Explore grid
============================================================ */
.reconnect-neglected-area-grid {
  width: 100%;
  margin-top: 1.75rem;
}

.reconnect-neglected-area-grid__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.reconnect-neglected-area-grid__title {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.reconnect-neglected-area-grid__line {
  flex: 1;
  height: 1px;
  background: rgba(100, 116, 139, 0.55);
}

.reconnect-neglected-area-grid__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.reconnect-neglected-area-card {
  width: 100%;
  min-height: 140px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.reconnect-neglected-area-card:hover:not(:disabled) {
  border-color: rgba(232, 121, 46, 0.6);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.reconnect-neglected-area-card.is-selected {
  border-color: #e8792e;
  background: #fff7ed;
  box-shadow: 0 18px 38px rgba(232, 121, 46, 0.18);
}

.reconnect-neglected-area-card:disabled {
  cursor: default;
  opacity: 0.78;
}

.reconnect-neglected-area-card__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  line-height: 1;
}

.reconnect-neglected-area-card__icon img,
.reconnect-neglected-area-card__icon svg {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.reconnect-neglected-area-card__title {
  color: #111827;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

.reconnect-neglected-area-card__description {
  max-width: 90%;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .reconnect-neglected-area-grid__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .reconnect-neglected-area-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reconnect-neglected-area-grid__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
  .reconnect-neglected-area-grid__line {
    width: 100%;
    flex: none;
  }
}
@media (max-width: 480px) {
  .reconnect-neglected-area-grid__items {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   Anchor Module Layout Fix
   Keeps content aligned without adding large top spacing
   ============================================================ */
.anchor-module-page {
  width: 100%;
  min-height: 100%;
  background: #f8f7f4;
}

.anchor-module-page__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 2rem 3rem 6rem;
}

.anchor-module1-page__inner {
  background: transparent;
}

/* Reduce extra top gap after AppLayout progress area */
.anchor-module-shell--module1 .anchor-module-page__inner {
  padding-top: 1.75rem;
}

/* Keep step content clean and full width */
.anchor-module1-step {
  width: 100%;
}

/* Match Figma spacing */
.anchor-module1-step-header {
  max-width: 980px;
  margin-bottom: 1.75rem;
}

.anchor-module1-step__breathing {
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
}

.anchor-module1-step__field-title {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

/* Feeling grid like Figma */
.anchor-module1-feeling-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

/* Textarea steps should not start too low */
.anchor-module1-step--physical,
.anchor-module1-step--digital,
.anchor-module1-step--reflection {
  padding-top: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .anchor-module-page__inner {
    padding: 1.75rem 2rem 5rem;
  }
  .anchor-module1-feeling-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .anchor-module-page__inner {
    padding: 1.25rem 1rem 5rem;
  }
  .anchor-module1-feeling-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.journey-module-card--complete .journey-module-card__badge {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}
.journey-module-card--complete .journey-module-card__title {
  color: #102033;
}
.journey-module-card--complete .journey-module-card__title span {
  color: #e56f3f;
}
.journey-module-card--complete .journey-module-card__text {
  max-width: 36rem;
  color: #485263;
  line-height: 1.65;
}
.journey-module-card--complete .journey-module-card__tag {
  border-color: #2f72ff;
  background: rgba(47, 114, 255, 0.08);
  color: #1262ff;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.journey-module-card--complete .journey-module-card__button--primary {
  min-width: 16rem;
}
.journey-module-card--complete .journey-module-card__button--secondary {
  color: #aab1bd;
  background: #ffffff;
  border-color: #d4d9e2;
  cursor: not-allowed;
}

/* ============================================================
   Journey Reflection Archive
   Static Arc Page + Full Reflection Record Page
   ============================================================ */
.journey-reflection-shell {
  background: radial-gradient(circle at 92% 2%, rgba(232, 111, 58, 0.08), transparent 25%), linear-gradient(180deg, #fbfbfa 0%, #f4f4f2 100%);
}

/* ============================================================
   Shared states
   ============================================================ */
.journey-reflection-state {
  min-height: 420px;
  display: grid;
  place-items: center;
  gap: 0.85rem;
  text-align: center;
  color: #343434;
}
.journey-reflection-state h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  color: #151515;
}
.journey-reflection-state p {
  margin: 0;
  color: #737373;
  font-size: 0.95rem;
}
.journey-reflection-state button {
  border: 0;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  padding: 0.7rem 1.1rem;
  font-weight: 800;
  cursor: pointer;
}

.journey-reflection-state--inline {
  min-height: 280px;
  margin: 2rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.journey-reflection-state--error button {
  background: #e86f3a;
}

.journey-reflection-spinner {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 3px solid rgba(17, 17, 17, 0.14);
  border-top-color: #e86f3a;
  animation: journeyReflectionSpin 0.8s linear infinite;
}

@keyframes journeyReflectionSpin {
  to {
    transform: rotate(360deg);
  }
}
/* ============================================================
   Static Arc Overview Page
   ============================================================ */
.journey-arc-page {
  width: 100%;
  min-height: calc(100vh - 5rem);
  padding: clamp(1.75rem, 2.5vw, 2.75rem);
  background: radial-gradient(circle at 94% 6%, rgba(232, 111, 58, 0.08), transparent 26%), radial-gradient(circle at 8% 12%, rgba(23, 104, 255, 0.045), transparent 22%), linear-gradient(180deg, #fbfbfa 0%, #f6f5f3 100%);
}

.journey-arc-container {
  width: min(100%, 74rem);
  margin: 0 auto;
}

.journey-arc-header {
  margin-bottom: 1.55rem;
}

.journey-arc-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.journey-arc-title-row {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 1rem;
}

.journey-arc-kicker {
  color: #4e535b;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.journey-arc-rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.55), rgba(17, 17, 17, 0.15));
}

.journey-arc-header p {
  max-width: 68rem;
  margin: 0.95rem 0 0;
  color: #30343a;
  font-size: 0.92rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.journey-arc-view-all {
  flex: 0 0 auto;
  min-height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(232, 111, 58, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 244, 0.88));
  color: #df6635;
  box-shadow: 0 0.8rem 1.6rem rgba(232, 111, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.journey-arc-view-all span {
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.journey-arc-view-all svg {
  width: 1.05rem;
  height: 1.05rem;
}
.journey-arc-view-all:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(232, 111, 58, 0.52);
  box-shadow: 0 1rem 2rem rgba(232, 111, 58, 0.14), inset 0 1px 0 rgb(255, 255, 255);
}
.journey-arc-view-all:active {
  transform: translateY(0);
}

.journey-arc-cards {
  display: grid;
  gap: 1.15rem;
}

.journey-arc-card {
  min-height: 7.7rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 1.65rem 1.8rem;
  border-radius: 0.38rem;
  background: var(--phase-gradient);
  color: #fff;
  box-shadow: 0 1.25rem 2.4rem rgba(15, 15, 15, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.journey-arc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 50%, color-mix(in srgb, var(--phase-accent), transparent 68%), transparent 38%), linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 44%);
  pointer-events: none;
}
.journey-arc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}
.journey-arc-card > * {
  position: relative;
  z-index: 1;
}
.journey-arc-card:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 1.5rem 2.75rem rgba(15, 15, 15, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.journey-arc-card__content {
  max-width: 48rem;
}
.journey-arc-card__content h2 {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 950;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.journey-arc-card__content h3 {
  margin: 0 0 0.38rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.96rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}
.journey-arc-card__content p {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Old per-card button is intentionally hidden/unused */
.journey-arc-card__action {
  display: none;
}

/* ============================================================
   Full Reflection Record Page
   ============================================================ */
.journey-record-page {
  min-height: calc(100vh - 5rem);
  background: radial-gradient(circle at 90% 2%, rgba(232, 111, 58, 0.08), transparent 24%), linear-gradient(180deg, #f4f4f2 0%, #e8e8e7 100%);
}

.journey-record-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.65rem, 2.2vw, 2.35rem) clamp(1.6rem, 2.8vw, 2.75rem);
  background: radial-gradient(circle at 72% 22%, rgba(232, 111, 58, 0.34), transparent 34%), linear-gradient(108deg, #1f1410 0%, #171818 50%, #4b2418 100%);
  color: #fff;
}
.journey-record-hero h1 {
  margin: 0.35rem 0 0.35rem;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.05em;
}
.journey-record-hero h1 span {
  color: #e86f3a;
}
.journey-record-hero p {
  max-width: 58rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.65;
}

.journey-record-kicker {
  color: #e86f3a;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journey-record-back {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  padding: 0.55rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.journey-record-back:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.journey-record-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.95rem;
}

.journey-record-pill {
  border: 1px solid var(--phase-accent);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--phase-accent);
  padding: 0.34rem 0.68rem;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.journey-record-pill:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--phase-accent), transparent 84%);
}

.journey-record-pill--active {
  background: var(--phase-accent);
  color: #fff;
}

.journey-record-list {
  width: min(100%, 74rem);
  margin: 0 auto;
  padding: 1.35rem clamp(1rem, 2vw, 1.4rem) 3.75rem;
}

.journey-record-phase {
  overflow: hidden;
  background: #f8f8f7;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 1rem 2.2rem rgba(17, 17, 17, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.journey-record-phase + .journey-record-phase {
  margin-top: 1.25rem;
}

.journey-record-phase--selected {
  box-shadow: 0 1.1rem 2.4rem rgba(17, 17, 17, 0.065), inset 4px 0 0 var(--phase-accent), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.journey-record-phase-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.55rem 1.75rem 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
}
.journey-record-phase-header h2 {
  margin: 0.35rem 0 0;
  color: #171717;
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.journey-record-phase-header h2 span {
  color: var(--phase-accent);
}

.journey-record-phase-index {
  color: var(--phase-accent);
  font-size: 0.68rem;
  font-weight: 950;
}

.journey-record-words {
  min-width: max-content;
  border: 1px solid var(--phase-accent);
  border-radius: 999px;
  color: var(--phase-accent);
  background: color-mix(in srgb, var(--phase-accent), transparent 94%);
  padding: 0.28rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 950;
}

.journey-record-depth {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.75rem;
  background: #f5f5f4;
  border-top: 1px solid rgba(17, 17, 17, 0.075);
  border-bottom: 1px solid rgba(17, 17, 17, 0.095);
}

.journey-record-depth__label,
.journey-record-depth__value {
  color: #222;
  font-size: 0.7rem;
  font-weight: 850;
}

.journey-record-depth__track {
  height: 0.28rem;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.11);
  border-radius: 999px;
}

.journey-record-depth__fill {
  height: 100%;
  border-radius: inherit;
  background: var(--phase-accent);
}

.journey-record-sections {
  padding: 1.25rem 1.75rem 1.6rem;
}

.journey-record-section + .journey-record-section {
  margin-top: 2rem;
}

.journey-record-module-divider {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  gap: 0.8rem;
  margin: 0.35rem 0 1rem;
  color: #999;
  font-size: 0.67rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journey-record-module-divider::before, .journey-record-module-divider::after {
  content: "";
  height: 1px;
  background: rgba(17, 17, 17, 0.28);
}

.journey-record-pattern-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.35rem 0 1rem;
  color: var(--phase-accent);
}
.journey-record-pattern-title span {
  font-size: 0.82rem;
}
.journey-record-pattern-title h3 {
  margin: 0;
  color: var(--phase-accent);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.journey-record-item {
  padding: 0.8rem 0 0.95rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.095);
}

.journey-record-item__step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  color: var(--phase-accent);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.journey-record-item__step span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--phase-accent);
}

.journey-record-item__question {
  max-width: 56rem;
  color: #151515;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.45;
}

.journey-record-answer {
  max-width: 60rem;
  margin-top: 0.35rem;
}
.journey-record-answer p {
  margin: 0.18rem 0;
  color: #565656;
  font-size: 0.78rem;
  line-height: 1.6;
}

.journey-record-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.55rem;
}
.journey-record-chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--phase-accent), transparent 45%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--phase-accent), transparent 92%);
  color: color-mix(in srgb, var(--phase-accent), #111 18%);
  padding: 0.28rem 0.62rem;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.2;
}

.journey-record-empty,
.journey-record-empty-text {
  color: #969696;
  font-size: 0.76rem;
  line-height: 1.55;
}

.journey-record-empty {
  padding: 1.25rem 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .journey-arc-container,
  .journey-record-list {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .journey-arc-page {
    padding: 1.35rem;
  }
  .journey-arc-header__top {
    align-items: flex-start;
    flex-direction: column;
  }
  .journey-arc-title-row {
    width: 100%;
  }
  .journey-arc-view-all {
    align-self: flex-end;
  }
  .journey-arc-card {
    min-height: 8.2rem;
    padding: 1.45rem;
  }
  .journey-record-hero {
    flex-direction: column;
    padding: 1.5rem;
  }
  .journey-record-back {
    align-self: flex-end;
  }
  .journey-record-list {
    padding: 1rem 1rem 3rem;
  }
  .journey-record-phase-header,
  .journey-record-depth,
  .journey-record-sections {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
@media (max-width: 560px) {
  .journey-arc-page {
    padding: 1rem;
  }
  .journey-arc-title-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .journey-arc-rule {
    width: 100%;
  }
  .journey-arc-view-all {
    width: 100%;
  }
  .journey-arc-card {
    min-height: 8.5rem;
    padding: 1.3rem;
  }
  .journey-record-depth {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .journey-record-depth__value {
    text-align: right;
  }
  .journey-record-module-divider {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .journey-record-module-divider::before, .journey-record-module-divider::after {
    display: none;
  }
  .journey-record-phase-header {
    flex-direction: column;
  }
  .journey-record-words {
    align-self: flex-start;
  }
}
/* ============================================================
   Final override: fix card inner spacing + centered layout
   Put this at the END of JourneyReflectionArchive.razor.scss
   ============================================================ */
.journey-reflection-shell .journey-arc-page {
  width: 100%;
  padding: 2.25rem 2.75rem 3.25rem !important;
  background: radial-gradient(circle at 94% 6%, rgba(232, 111, 58, 0.08), transparent 26%), linear-gradient(180deg, #fbfbfa 0%, #f6f5f3 100%);
}
.journey-reflection-shell .journey-arc-container {
  width: min(100%, 74rem);
  margin-inline: auto;
}
.journey-reflection-shell .journey-arc-cards {
  display: grid;
  gap: 1.15rem;
  width: 100%;
}
.journey-reflection-shell .journey-arc-card {
  box-sizing: border-box;
  width: 100%;
  min-height: 7.7rem;
  padding: 1.65rem 2rem 1.65rem 2rem !important;
  border-radius: 0.38rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.journey-reflection-shell .journey-arc-card__content {
  box-sizing: border-box;
  width: 100%;
  max-width: 48rem;
  padding-left: 0 !important;
  margin-left: 0 !important;
  transform: none !important;
}
.journey-reflection-shell .journey-arc-card__content h2,
.journey-reflection-shell .journey-arc-card__content h3,
.journey-reflection-shell .journey-arc-card__content p {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.journey-reflection-shell .journey-arc-card__content h2 {
  margin-bottom: 0.48rem !important;
  font-size: 1.25rem;
  line-height: 1.15;
}
.journey-reflection-shell .journey-arc-card__content h3 {
  margin-bottom: 0.38rem !important;
  font-size: 0.96rem;
  line-height: 1.25;
}
.journey-reflection-shell .journey-arc-card__content p {
  font-size: 0.84rem;
  line-height: 1.5;
}

/* ============================================================
   Final override: Reflection archive should be continuous/flat
   Matches Figma full reflection page, no rounded phase cards
   ============================================================ */
.journey-reflection-shell .journey-record-page {
  background: #e9e9e8 !important;
}
.journey-reflection-shell .journey-record-list {
  width: min(100%, 74rem);
  margin: 0 auto;
  padding: 0 1.35rem 3.5rem !important;
}
.journey-reflection-shell .journey-record-phase {
  overflow: visible !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: #eeeeed !important;
  margin-top: 0 !important;
}
.journey-reflection-shell .journey-record-phase + .journey-record-phase {
  margin-top: 0 !important;
  border-top: 0 !important;
}
.journey-reflection-shell .journey-record-phase--selected {
  box-shadow: none !important;
}
.journey-reflection-shell .journey-record-phase-header {
  border-radius: 0 !important;
  background: #fbfbfa !important;
  padding: 2rem 2.1rem 1.45rem !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.journey-reflection-shell .journey-record-depth {
  border-radius: 0 !important;
  background: #f6f6f5 !important;
  padding: 0.95rem 2.1rem !important;
  border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15) !important;
}
.journey-reflection-shell .journey-record-sections {
  background: #eeeeed !important;
  padding: 1.45rem 2.1rem 1.75rem !important;
}
.journey-reflection-shell .journey-record-section {
  background: transparent !important;
}
.journey-reflection-shell .journey-record-section + .journey-record-section {
  margin-top: 2.15rem !important;
}
.journey-reflection-shell .journey-record-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.095) !important;
}

/* ============================================================
   FORMA Legacy Page
   ============================================================ */
.forma-legacy-shell {
  background: radial-gradient(circle at 88% 4%, rgba(232, 111, 58, 0.08), transparent 26%), linear-gradient(180deg, #f6f5f3 0%, #ecebea 100%);
}

.forma-legacy-state {
  min-height: 420px;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  text-align: center;
  color: #343434;
}
.forma-legacy-state h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: #171717;
}
.forma-legacy-state p {
  margin: 0;
  color: #737373;
  font-size: 0.9rem;
}
.forma-legacy-state button {
  border: 0;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  padding: 0.7rem 1.05rem;
  font-weight: 850;
  cursor: pointer;
}

.forma-legacy-state--error button {
  background: #e86f3a;
}

.forma-legacy-spinner {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 3px solid rgba(17, 17, 17, 0.14);
  border-top-color: #e86f3a;
  animation: formaLegacySpin 0.8s linear infinite;
}

@keyframes formaLegacySpin {
  to {
    transform: rotate(360deg);
  }
}
.forma-legacy-page {
  min-height: calc(100vh - 5rem);
  background: radial-gradient(circle at 88% 0%, rgba(232, 111, 58, 0.11), transparent 25%), linear-gradient(180deg, #f7f6f4 0%, #ecebea 100%);
}

.forma-legacy-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.55rem, 2.4vw, 2.35rem) clamp(1.5rem, 3vw, 2.75rem);
  background: radial-gradient(circle at 78% 18%, rgba(232, 111, 58, 0.35), transparent 34%), linear-gradient(108deg, #1f1410 0%, #171818 51%, #4b2418 100%);
  color: #fff;
}
.forma-legacy-hero h1 {
  margin: 0.35rem 0 0.35rem;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.045em;
}
.forma-legacy-hero h1 span {
  color: #e86f3a;
}
.forma-legacy-hero p {
  max-width: 58rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.65;
}

.forma-legacy-kicker {
  color: #e86f3a;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.forma-legacy-export {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 0.2rem;
  background: #101113;
  color: #fff;
  padding: 0.58rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, background 0.18s ease;
}
.forma-legacy-export:hover {
  transform: translateY(-1px);
  background: #000;
}

.forma-legacy-content {
  width: min(100%, 54rem);
  margin: 0 auto;
  padding: 1.55rem 1.2rem 3.5rem;
}

.legacy-section {
  margin-top: 1.35rem;
}

.legacy-card h2,
.legacy-card h3,
.legacy-card p,
.legacy-section h2,
.legacy-section h3,
.legacy-section p {
  margin-top: 0;
}

.legacy-card--impact {
  border: 1px solid rgba(23, 104, 255, 0.34);
  background: #edf4ff;
  padding: 0.95rem 1rem;
  border-radius: 0.16rem;
}
.legacy-card--impact p {
  margin: 0.3rem 0 0;
  color: #263241;
  font-size: 0.82rem;
  line-height: 1.55;
}

.legacy-section-label {
  color: #1f4f9d;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legacy-section-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.legacy-section-heading h2 {
  margin: 0 0 0.14rem;
  color: #161616;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.legacy-section-heading p {
  margin: 0;
  color: #6f7378;
  font-size: 0.72rem;
  line-height: 1.4;
}

.legacy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  font-size: 0.64rem;
  font-weight: 950;
  text-transform: uppercase;
}

.legacy-badge--green {
  background: rgba(22, 163, 74, 0.12);
  color: #16803b;
}

.legacy-badge--purple {
  background: rgba(123, 63, 242, 0.12);
  color: #6f37e8;
}

.legacy-badge--blue {
  background: rgba(23, 104, 255, 0.12);
  color: #1768ff;
}

.legacy-muted {
  color: #9a9a9a !important;
}

.legacy-commitments {
  display: grid;
  gap: 0.52rem;
}

.legacy-commitment {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.075);
  border-radius: 0.25rem;
  background: #fff;
  box-shadow: 0 0.5rem 1.1rem rgba(17, 17, 17, 0.035);
}
.legacy-commitment h3 {
  margin: 0 0 0.16rem;
  color: #139343;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.legacy-commitment p {
  margin: 0;
  color: #40444a;
  font-size: 0.78rem;
  line-height: 1.45;
}

.legacy-commitment__number {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #16803b;
  font-size: 0.74rem;
  font-weight: 950;
}

.legacy-frequency {
  display: inline-flex;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  color: #16803b;
  padding: 0.18rem 0.45rem;
  font-size: 0.66rem;
  font-weight: 850;
}

.legacy-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.legacy-mini-card {
  min-height: 4.6rem;
  border-radius: 0.2rem;
  padding: 0.78rem 0.85rem;
}
.legacy-mini-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legacy-mini-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.legacy-mini-card--purple {
  background: #eee5ff;
  border: 1px solid rgba(123, 63, 242, 0.14);
}
.legacy-mini-card--purple h3 {
  color: #7b3ff2;
}
.legacy-mini-card--purple p {
  color: #3d344f;
}

.legacy-gradient-card {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 0.22rem;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.legacy-gradient-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 34%, rgba(123, 63, 242, 0.42), transparent 32%), linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 48%);
  pointer-events: none;
}
.legacy-gradient-card > * {
  position: relative;
  z-index: 1;
}
.legacy-gradient-card h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legacy-gradient-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  line-height: 1.55;
}

.legacy-gradient-card--move {
  background: linear-gradient(105deg, #211737 0%, #121719 50%, #3b1f73 100%);
}

.legacy-gradient-card--anchor {
  background: linear-gradient(105deg, #112a4d 0%, #111719 48%, #173d86 100%);
}
.legacy-gradient-card--anchor::before {
  background: radial-gradient(circle at 82% 34%, rgba(23, 104, 255, 0.36), transparent 32%), linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 48%);
}

.legacy-gradient-card__meta {
  display: grid;
  gap: 0.24rem;
}
.legacy-gradient-card__meta span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.63rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legacy-gradient-card__meta strong {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.35;
}

.legacy-system-list {
  display: grid;
  gap: 0.52rem;
}
.legacy-system-list article {
  padding: 0.72rem 0.85rem;
  border-radius: 0.22rem;
  background: #e9f0ff;
  border: 1px solid rgba(23, 104, 255, 0.12);
}
.legacy-system-list article h3 {
  margin: 0 0 0.28rem;
  color: #1768ff;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legacy-system-list article p {
  margin: 0;
  color: #3b4658;
  font-size: 0.76rem;
  line-height: 1.45;
}

.legacy-section--arc {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.legacy-arc-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.legacy-arc-title-row h2 {
  margin: 0;
  color: #171717;
  font-size: 0.95rem;
  font-weight: 950;
}
.legacy-arc-title-row span {
  color: #16803b;
  font-size: 0.75rem;
  font-weight: 950;
}

.legacy-section-description {
  margin: 0.3rem 0 0.75rem;
  color: #777;
  font-size: 0.72rem;
}

.legacy-arc-list {
  display: grid;
  gap: 0.52rem;
}

.legacy-arc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.82rem;
  border-radius: 0.24rem;
  border: 1px solid rgba(17, 17, 17, 0.075);
  background: #fff;
}

.legacy-arc-item__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.legacy-arc-item__left > span {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 950;
  background: rgba(232, 111, 58, 0.12);
  color: #e86f3a;
}
.legacy-arc-item__left h3 {
  margin: 0;
  color: #1f242a;
  font-size: 0.78rem;
  font-weight: 950;
}
.legacy-arc-item__left p {
  margin: 0.1rem 0 0;
  color: #7a7f86;
  font-size: 0.72rem;
}

.legacy-arc-item--observe .legacy-arc-item__left > span {
  background: rgba(20, 127, 189, 0.12);
  color: #147fbd;
}

.legacy-arc-item--reconnect .legacy-arc-item__left > span {
  background: rgba(22, 163, 68, 0.12);
  color: #16a344;
}

.legacy-arc-item--move .legacy-arc-item__left > span {
  background: rgba(123, 63, 242, 0.12);
  color: #7b3ff2;
}

.legacy-arc-item--anchor .legacy-arc-item__left > span {
  background: rgba(23, 104, 255, 0.12);
  color: #1768ff;
}

.legacy-arc-item__score {
  color: #16803b;
  font-size: 0.74rem;
  font-weight: 950;
}

.legacy-complete-card {
  margin-top: 1.4rem;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
  border-radius: 0.28rem;
  background: radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.16), transparent 18%), radial-gradient(circle at 18% 28%, rgba(23, 104, 255, 0.22), transparent 26%), linear-gradient(110deg, #142f61 0%, #0f1d34 50%, #174083 100%);
  box-shadow: 0 1.2rem 2.3rem rgba(20, 47, 97, 0.18);
}
.legacy-complete-card h2 {
  margin: 0.65rem 0 0.35rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}
.legacy-complete-card h2 span {
  color: #ff7a42;
}
.legacy-complete-card p {
  margin: 0 auto;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.55;
}

.legacy-complete-card__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  font-size: 1.5rem;
}

.legacy-complete-card__pills {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.legacy-complete-card__pills span {
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.15);
  color: #5ee68b;
  padding: 0.22rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 900;
}

/* ============================================================
   Responsive + Print
   ============================================================ */
@media (max-width: 900px) {
  .forma-legacy-hero {
    flex-direction: column;
  }
  .forma-legacy-export {
    align-self: flex-end;
  }
  .forma-legacy-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .legacy-gradient-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .legacy-action-grid {
    grid-template-columns: 1fr;
  }
  .legacy-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .legacy-arc-title-row,
  .legacy-arc-item {
    align-items: flex-start;
    flex-direction: column;
  }
  .legacy-arc-item__score {
    align-self: flex-end;
  }
}
@media print {
  .journey-shell__sidebar,
  .journey-shell__header,
  .forma-legacy-export {
    display: none !important;
  }
  .journey-shell__main,
  .journey-shell__content,
  .forma-legacy-page {
    margin: 0 !important;
    width: 100% !important;
    background: #fff !important;
  }
  .forma-legacy-hero,
  .legacy-gradient-card,
  .legacy-complete-card {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .forma-legacy-content {
    width: 100%;
    padding: 1rem;
  }
}
/* ============================================================
   FINAL FIGMA ALIGNMENT OVERRIDE
   FORMA Legacy page should be centered, narrow, and spacious
   Put this at the END of JourneyLegacy.razor.scss
   ============================================================ */
.forma-legacy-shell .forma-legacy-page {
  background: radial-gradient(circle at 90% 0%, rgba(232, 111, 58, 0.08), transparent 24%), linear-gradient(180deg, #f7f6f4 0%, #ecebea 100%) !important;
}
.forma-legacy-shell {
  /* Hero should stay full width, but text inside should feel controlled */
}
.forma-legacy-shell .forma-legacy-hero {
  padding: 1.45rem 2rem 1.35rem !important;
}
.forma-legacy-shell .forma-legacy-hero > div {
  width: min(100%, 46rem);
  margin: 0 auto;
}
.forma-legacy-shell .forma-legacy-hero h1 {
  font-size: 1.45rem !important;
  line-height: 1.08 !important;
  margin-bottom: 0.35rem !important;
}
.forma-legacy-shell .forma-legacy-hero p {
  max-width: 42rem !important;
  font-size: 0.72rem !important;
  line-height: 1.55 !important;
}
.forma-legacy-shell .forma-legacy-export {
  position: absolute;
  right: 2rem;
  top: 1.35rem;
  min-height: 1.95rem;
  padding: 0.42rem 0.7rem !important;
  font-size: 0.66rem !important;
  border-radius: 0.15rem !important;
}
.forma-legacy-shell {
  /* Main important fix: centered paper/content column */
}
.forma-legacy-shell .forma-legacy-content {
  width: min(100%, 44rem) !important;
  margin: 0 auto !important;
  padding: 1.25rem 1.35rem 3rem !important;
  box-sizing: border-box;
}
.forma-legacy-shell .legacy-section {
  margin-top: 1.15rem !important;
}
.forma-legacy-shell {
  /* Final impact statement */
}
.forma-legacy-shell .legacy-card--impact {
  padding: 0.7rem 0.85rem !important;
  border-radius: 0.12rem !important;
  background: #edf4ff !important;
}
.forma-legacy-shell .legacy-card--impact p {
  font-size: 0.72rem !important;
  line-height: 1.45 !important;
  margin-top: 0.25rem !important;
}
.forma-legacy-shell .legacy-section-label {
  font-size: 0.58rem !important;
  letter-spacing: 0.075em !important;
}
.forma-legacy-shell {
  /* Section title spacing like Figma */
}
.forma-legacy-shell .legacy-section-heading {
  display: grid !important;
  grid-template-columns: max-content 1fr;
  align-items: center !important;
  gap: 0.65rem !important;
  margin-bottom: 0.55rem !important;
}
.forma-legacy-shell .legacy-section-heading h2 {
  font-size: 0.9rem !important;
  line-height: 1.15 !important;
  margin: 0 0 0.08rem !important;
  letter-spacing: -0.015em !important;
}
.forma-legacy-shell .legacy-section-heading p {
  font-size: 0.64rem !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}
.forma-legacy-shell .legacy-badge {
  padding: 0.26rem 0.48rem !important;
  font-size: 0.56rem !important;
  letter-spacing: 0.08em !important;
}
.forma-legacy-shell {
  /* Commitment cards */
}
.forma-legacy-shell .legacy-commitments {
  gap: 0.42rem !important;
}
.forma-legacy-shell .legacy-commitment {
  grid-template-columns: 1.25rem 1fr !important;
  gap: 0.55rem !important;
  padding: 0.55rem 0.65rem !important;
  border-radius: 0.16rem !important;
  box-shadow: 0 0.35rem 0.8rem rgba(17, 17, 17, 0.03) !important;
}
.forma-legacy-shell .legacy-commitment h3 {
  font-size: 0.62rem !important;
  line-height: 1.15 !important;
  margin-bottom: 0.12rem !important;
}
.forma-legacy-shell .legacy-commitment p {
  font-size: 0.66rem !important;
  line-height: 1.35 !important;
}
.forma-legacy-shell .legacy-commitment__number {
  width: 1.18rem !important;
  height: 1.18rem !important;
  font-size: 0.62rem !important;
}
.forma-legacy-shell .legacy-frequency {
  margin-top: 0.28rem !important;
  padding: 0.14rem 0.36rem !important;
  font-size: 0.58rem !important;
}
.forma-legacy-shell {
  /* Action plan cards should not feel huge */
}
.forma-legacy-shell .legacy-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.45rem !important;
}
.forma-legacy-shell .legacy-mini-card {
  min-height: 3.6rem !important;
  padding: 0.55rem 0.65rem !important;
  border-radius: 0.14rem !important;
}
.forma-legacy-shell .legacy-mini-card h3 {
  font-size: 0.58rem !important;
  margin-bottom: 0.25rem !important;
  line-height: 1.2 !important;
}
.forma-legacy-shell .legacy-mini-card p {
  font-size: 0.66rem !important;
  line-height: 1.35 !important;
}
.forma-legacy-shell .legacy-gradient-card {
  margin-top: 0.55rem !important;
  grid-template-columns: 1.25fr 0.9fr !important;
  gap: 0.9rem !important;
  padding: 0.75rem 0.85rem !important;
  border-radius: 0.14rem !important;
}
.forma-legacy-shell .legacy-gradient-card h3 {
  font-size: 0.6rem !important;
  line-height: 1.25 !important;
  margin-bottom: 0.28rem !important;
}
.forma-legacy-shell .legacy-gradient-card p {
  font-size: 0.66rem !important;
  line-height: 1.4 !important;
}
.forma-legacy-shell .legacy-gradient-card__meta {
  gap: 0.12rem !important;
}
.forma-legacy-shell .legacy-gradient-card__meta span {
  font-size: 0.54rem !important;
}
.forma-legacy-shell .legacy-gradient-card__meta strong {
  font-size: 0.63rem !important;
  margin-bottom: 0.28rem !important;
}
.forma-legacy-shell {
  /* Anchoring system */
}
.forma-legacy-shell .legacy-system-list {
  gap: 0.42rem !important;
}
.forma-legacy-shell .legacy-system-list article {
  padding: 0.52rem 0.65rem !important;
  border-radius: 0.14rem !important;
}
.forma-legacy-shell .legacy-system-list article h3 {
  font-size: 0.58rem !important;
  margin-bottom: 0.2rem !important;
}
.forma-legacy-shell .legacy-system-list article p {
  font-size: 0.64rem !important;
  line-height: 1.35 !important;
}
.forma-legacy-shell {
  /* Arc section */
}
.forma-legacy-shell .legacy-section--arc {
  margin-top: 1.25rem !important;
  padding-top: 0.8rem !important;
}
.forma-legacy-shell .legacy-arc-title-row h2 {
  font-size: 0.9rem !important;
  letter-spacing: 0.02em !important;
}
.forma-legacy-shell .legacy-arc-title-row span {
  font-size: 0.68rem !important;
}
.forma-legacy-shell .legacy-section-description {
  font-size: 0.64rem !important;
  margin: 0.22rem 0 0.6rem !important;
}
.forma-legacy-shell .legacy-arc-list {
  gap: 0.42rem !important;
}
.forma-legacy-shell .legacy-arc-item {
  padding: 0.48rem 0.62rem !important;
  border-radius: 0.16rem !important;
}
.forma-legacy-shell .legacy-arc-item__left {
  gap: 0.52rem !important;
}
.forma-legacy-shell .legacy-arc-item__left > span {
  width: 1.25rem !important;
  height: 1.25rem !important;
  font-size: 0.58rem !important;
}
.forma-legacy-shell .legacy-arc-item__left h3 {
  font-size: 0.66rem !important;
  line-height: 1.15 !important;
}
.forma-legacy-shell .legacy-arc-item__left p {
  font-size: 0.62rem !important;
  margin-top: 0.04rem !important;
}
.forma-legacy-shell .legacy-arc-item__score {
  font-size: 0.64rem !important;
}
.forma-legacy-shell {
  /* Final complete card */
}
.forma-legacy-shell .legacy-complete-card {
  margin-top: 1.15rem !important;
  padding: 1.55rem 1.25rem !important;
  border-radius: 0.18rem !important;
}
.forma-legacy-shell .legacy-complete-card h2 {
  font-size: 1.05rem !important;
  margin: 0.5rem 0 0.25rem !important;
}
.forma-legacy-shell .legacy-complete-card p {
  font-size: 0.68rem !important;
  line-height: 1.45 !important;
  max-width: 21rem !important;
}
.forma-legacy-shell .legacy-complete-card__icon {
  width: 2.25rem !important;
  height: 2.25rem !important;
  font-size: 1.1rem !important;
  border-radius: 0.22rem !important;
}
.forma-legacy-shell .legacy-complete-card__pills {
  margin-top: 0.65rem !important;
  gap: 0.3rem !important;
}
.forma-legacy-shell .legacy-complete-card__pills span {
  padding: 0.16rem 0.42rem !important;
  font-size: 0.55rem !important;
}

/* ============================================================
   Responsive correction
   ============================================================ */
@media (max-width: 900px) {
  .forma-legacy-shell .forma-legacy-content {
    width: min(100%, 44rem) !important;
    padding: 1rem 1rem 2.75rem !important;
  }
  .forma-legacy-shell .forma-legacy-hero {
    padding: 1.25rem 1rem !important;
  }
  .forma-legacy-shell .forma-legacy-hero > div {
    width: 100%;
  }
  .forma-legacy-shell .forma-legacy-export {
    position: static !important;
    align-self: flex-end;
  }
  .forma-legacy-shell .legacy-gradient-card {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .forma-legacy-shell .legacy-action-grid {
    grid-template-columns: 1fr !important;
  }
  .forma-legacy-shell .legacy-section-heading {
    grid-template-columns: 1fr !important;
  }
  .forma-legacy-shell .legacy-arc-title-row,
  .forma-legacy-shell .legacy-arc-item {
    align-items: flex-start;
    flex-direction: column;
  }
  .forma-legacy-shell .legacy-arc-item__score {
    align-self: flex-end;
  }
}
/* ============================================================
   FINAL CLIENT-DEMO POLISH OVERRIDE
   Balanced Figma-like width, premium spacing, readable text
   Put this at the END of JourneyLegacy.razor.scss
   ============================================================ */
.forma-legacy-shell .forma-legacy-page {
  background: radial-gradient(circle at 90% 0%, rgba(232, 111, 58, 0.08), transparent 24%), linear-gradient(180deg, #f8f7f5 0%, #eeeeec 100%) !important;
}
.forma-legacy-shell {
  /* Main content should be wider than before, but still centered */
}
.forma-legacy-shell .forma-legacy-content {
  width: min(100%, 58rem) !important;
  margin: 0 auto !important;
  padding: 1.8rem 1.6rem 4rem !important;
  box-sizing: border-box;
}
.forma-legacy-shell {
  /* Hero text should not look tiny */
}
.forma-legacy-shell .forma-legacy-hero {
  min-height: 8.5rem;
  padding: 1.8rem 2.5rem 1.7rem !important;
}
.forma-legacy-shell .forma-legacy-hero > div {
  width: min(100%, 58rem) !important;
  margin: 0 auto !important;
}
.forma-legacy-shell .forma-legacy-hero h1 {
  font-size: clamp(1.75rem, 2.4vw, 2.25rem) !important;
  line-height: 1.08 !important;
  margin-bottom: 0.45rem !important;
}
.forma-legacy-shell .forma-legacy-hero p {
  max-width: 54rem !important;
  font-size: 0.86rem !important;
  line-height: 1.65 !important;
}
.forma-legacy-shell .forma-legacy-export {
  right: 2.5rem !important;
  top: 1.55rem !important;
  min-height: 2.15rem !important;
  padding: 0.5rem 0.85rem !important;
  font-size: 0.72rem !important;
  border-radius: 0.18rem !important;
}
.forma-legacy-shell {
  /* Final impact statement should feel like a premium note card */
}
.forma-legacy-shell .legacy-card--impact {
  padding: 1rem 1.15rem !important;
  border-radius: 0.2rem !important;
  background: linear-gradient(180deg, #eef5ff 0%, #e9f2ff 100%) !important;
  border: 1px solid rgba(23, 104, 255, 0.36) !important;
  box-shadow: 0 0.75rem 1.7rem rgba(23, 104, 255, 0.06) !important;
}
.forma-legacy-shell .legacy-card--impact p {
  margin-top: 0.45rem !important;
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
  color: #172033 !important;
}
.forma-legacy-shell .legacy-section-label {
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 950 !important;
}
.forma-legacy-shell .legacy-section {
  margin-top: 1.75rem !important;
}
.forma-legacy-shell {
  /* Section heading: bigger and more confident */
}
.forma-legacy-shell .legacy-section-heading {
  display: grid !important;
  grid-template-columns: max-content 1fr;
  align-items: center !important;
  gap: 0.9rem !important;
  margin-bottom: 0.85rem !important;
}
.forma-legacy-shell .legacy-section-heading h2 {
  font-size: 1.28rem !important;
  line-height: 1.15 !important;
  margin: 0 0 0.12rem !important;
  font-weight: 950 !important;
  letter-spacing: -0.025em !important;
  color: #090909 !important;
}
.forma-legacy-shell .legacy-section-heading p {
  font-size: 0.84rem !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  color: #5f6670 !important;
}
.forma-legacy-shell .legacy-badge {
  padding: 0.43rem 0.78rem !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.09em !important;
  font-weight: 950 !important;
}
.forma-legacy-shell {
  /* Commitments: wider, readable, beautiful */
}
.forma-legacy-shell .legacy-commitments {
  gap: 0.75rem !important;
}
.forma-legacy-shell .legacy-commitment {
  grid-template-columns: 1.85rem 1fr !important;
  gap: 0.85rem !important;
  min-height: 4.9rem !important;
  padding: 0.9rem 1rem !important;
  border-radius: 0.28rem !important;
  background: #ffffff !important;
  border: 1px solid rgba(17, 17, 17, 0.07) !important;
  box-shadow: 0 0.9rem 2rem rgba(17, 17, 17, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}
.forma-legacy-shell .legacy-commitment h3 {
  font-size: 0.86rem !important;
  line-height: 1.18 !important;
  margin-bottom: 0.25rem !important;
  color: #008b3e !important;
  font-weight: 950 !important;
  letter-spacing: 0.035em !important;
}
.forma-legacy-shell .legacy-commitment p {
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
  color: #222831 !important;
}
.forma-legacy-shell .legacy-commitment__number {
  width: 1.55rem !important;
  height: 1.55rem !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  background: rgba(22, 163, 74, 0.13) !important;
}
.forma-legacy-shell .legacy-frequency {
  margin-top: 0.45rem !important;
  padding: 0.22rem 0.55rem !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  background: rgba(22, 163, 74, 0.09) !important;
}
.forma-legacy-shell {
  /* Action plan should look like Figma cards, not flat text */
}
.forma-legacy-shell .legacy-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.75rem !important;
}
.forma-legacy-shell .legacy-mini-card {
  min-height: 5.1rem !important;
  padding: 0.95rem 1rem !important;
  border-radius: 0.24rem !important;
}
.forma-legacy-shell .legacy-mini-card h3 {
  font-size: 0.78rem !important;
  margin-bottom: 0.38rem !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
}
.forma-legacy-shell .legacy-mini-card p {
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
}
.forma-legacy-shell .legacy-gradient-card {
  margin-top: 0.85rem !important;
  grid-template-columns: 1.25fr 0.95fr !important;
  gap: 1.25rem !important;
  min-height: 6.4rem !important;
  padding: 1.1rem 1.2rem !important;
  border-radius: 0.24rem !important;
}
.forma-legacy-shell .legacy-gradient-card h3 {
  font-size: 0.82rem !important;
  line-height: 1.3 !important;
  margin-bottom: 0.38rem !important;
  font-weight: 950 !important;
}
.forma-legacy-shell .legacy-gradient-card p {
  font-size: 0.86rem !important;
  line-height: 1.5 !important;
}
.forma-legacy-shell .legacy-gradient-card__meta {
  gap: 0.2rem !important;
}
.forma-legacy-shell .legacy-gradient-card__meta span {
  font-size: 0.68rem !important;
  letter-spacing: 0.06em !important;
}
.forma-legacy-shell .legacy-gradient-card__meta strong {
  font-size: 0.82rem !important;
  margin-bottom: 0.4rem !important;
  line-height: 1.35 !important;
}
.forma-legacy-shell {
  /* Anchor system */
}
.forma-legacy-shell .legacy-system-list {
  gap: 0.65rem !important;
}
.forma-legacy-shell .legacy-system-list article {
  padding: 0.85rem 1rem !important;
  border-radius: 0.24rem !important;
}
.forma-legacy-shell .legacy-system-list article h3 {
  font-size: 0.78rem !important;
  margin-bottom: 0.28rem !important;
  font-weight: 950 !important;
}
.forma-legacy-shell .legacy-system-list article p {
  font-size: 0.86rem !important;
  line-height: 1.45 !important;
}
.forma-legacy-shell {
  /* Complete arc */
}
.forma-legacy-shell .legacy-section--arc {
  margin-top: 1.9rem !important;
  padding-top: 1.1rem !important;
}
.forma-legacy-shell .legacy-arc-title-row h2 {
  font-size: 1.18rem !important;
  letter-spacing: 0.02em !important;
  font-weight: 950 !important;
}
.forma-legacy-shell .legacy-arc-title-row span {
  font-size: 0.86rem !important;
  font-weight: 950 !important;
}
.forma-legacy-shell .legacy-section-description {
  font-size: 0.82rem !important;
  margin: 0.28rem 0 0.85rem !important;
}
.forma-legacy-shell .legacy-arc-list {
  gap: 0.65rem !important;
}
.forma-legacy-shell .legacy-arc-item {
  padding: 0.72rem 0.9rem !important;
  border-radius: 0.24rem !important;
  background: #ffffff !important;
  box-shadow: 0 0.35rem 0.9rem rgba(17, 17, 17, 0.025) !important;
}
.forma-legacy-shell .legacy-arc-item__left {
  gap: 0.75rem !important;
}
.forma-legacy-shell .legacy-arc-item__left > span {
  width: 1.65rem !important;
  height: 1.65rem !important;
  font-size: 0.78rem !important;
}
.forma-legacy-shell .legacy-arc-item__left h3 {
  font-size: 0.9rem !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
}
.forma-legacy-shell .legacy-arc-item__left p {
  font-size: 0.78rem !important;
  margin-top: 0.08rem !important;
}
.forma-legacy-shell .legacy-arc-item__score {
  font-size: 0.84rem !important;
  font-weight: 950 !important;
}
.forma-legacy-shell {
  /* Final blue card should be impressive */
}
.forma-legacy-shell .legacy-complete-card {
  margin-top: 1.7rem !important;
  min-height: 13rem !important;
  padding: 2.25rem 1.5rem !important;
  border-radius: 0.3rem !important;
  box-shadow: 0 1.5rem 3rem rgba(20, 47, 97, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}
.forma-legacy-shell .legacy-complete-card h2 {
  font-size: 1.65rem !important;
  margin: 0.75rem 0 0.4rem !important;
  font-weight: 950 !important;
}
.forma-legacy-shell .legacy-complete-card p {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  max-width: 30rem !important;
}
.forma-legacy-shell .legacy-complete-card__icon {
  width: 3.1rem !important;
  height: 3.1rem !important;
  font-size: 1.45rem !important;
  border-radius: 0.34rem !important;
}
.forma-legacy-shell .legacy-complete-card__pills {
  margin-top: 1rem !important;
  gap: 0.45rem !important;
}
.forma-legacy-shell .legacy-complete-card__pills span {
  padding: 0.24rem 0.62rem !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
}

/* Responsive balance */
@media (max-width: 900px) {
  .forma-legacy-shell .forma-legacy-content {
    width: min(100%, 58rem) !important;
    padding: 1.25rem 1rem 3rem !important;
  }
  .forma-legacy-shell .forma-legacy-hero {
    padding: 1.35rem 1rem !important;
  }
  .forma-legacy-shell .forma-legacy-hero > div {
    width: 100% !important;
  }
  .forma-legacy-shell .forma-legacy-export {
    position: static !important;
    align-self: flex-end;
  }
  .forma-legacy-shell .legacy-gradient-card {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .forma-legacy-shell .legacy-action-grid {
    grid-template-columns: 1fr !important;
  }
  .forma-legacy-shell .legacy-section-heading {
    grid-template-columns: 1fr !important;
  }
}
