/* ==========================================================================
   The Roulette Reframe — Main Stylesheet
   The Insight Collective
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Brand Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colours */
  --color-red:        #B22222;
  --color-red-dark:   #8B1A1A;
  --color-white:      #FFFFFF;
  --color-frost:      #F9FAFB;
  --color-black:      #1D1E2C;
  --color-grey-light: #E5E7EB;
  --color-grey-mid:   #9CA3AF;
  --color-grey-dark:  #4B5563;

  /* Segment colours */
  --color-sage:       #E4EFE7;  /* HV/HVal — High Velocity, High Value */
  --color-blue:       #DCE6F2;  /* HV/LVal — High Velocity, Low Value  */
  --color-lilac:      #E4E1F5;  /* LV/HVal — Low Velocity, High Value  */
  --color-peach:      #FFF1EA;  /* LV/LVal — Low Velocity, Low Value   */

  /* Segment border/text colours (darker versions for contrast) */
  --color-sage-dark:  #5A8C68;
  --color-blue-dark:  #4A6EA8;
  --color-lilac-dark: #6B5EAD;
  --color-peach-dark: #C4714A;

  /* Typography */
  --font-headline:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:        'Libre Franklin', 'Helvetica Neue', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow:   500ms ease;

  /* Layout */
  --max-width:  1120px;
  --stage-padding: clamp(1rem, 5vw, 3rem);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

a {
  color: var(--color-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Stage visibility */
.stage {
  display: none;
  flex: 1;
}

.stage.active {
  display: block;
}

.stage-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--stage-padding);
}

/* --------------------------------------------------------------------------
   4. Progress Navigation
   -------------------------------------------------------------------------- */
.progress-nav {
  background: var(--color-frost);
  border-bottom: 1px solid var(--color-grey-light);
  padding: var(--space-md) var(--stage-padding);
  position: sticky;
  top: 0;
  z-index: 100;
}

.progress-steps {
  display: flex;
  gap: var(--space-xs);
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex: 1;
  position: relative;
}

.progress-step + .progress-step::before {
  content: '';
  position: absolute;
  left: -50%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: var(--color-grey-light);
  z-index: -1;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-grey-mid);
  background: var(--color-white);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.step-label {
  font-size: 0.75rem;
  color: var(--color-grey-mid);
  display: none;
  transition: color var(--transition-normal);
}

@media (min-width: 480px) {
  .step-label { display: block; }
}

.progress-step.active .step-number {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

.progress-step.active .step-label {
  color: var(--color-black);
  font-weight: 600;
}

.progress-step.completed .step-number {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.progress-step.completed .step-label {
  color: var(--color-grey-dark);
}

/* --------------------------------------------------------------------------
   5. Typography
   -------------------------------------------------------------------------- */
.stage-headline {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: var(--space-md);
}

.stage-headline .red {
  color: var(--color-red);
}

.stage-subheadline {
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-black);
  margin-bottom: var(--space-md);
}

.stage-body {
  font-size: 1.0625rem;
  color: var(--color-grey-dark);
  max-width: 640px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--color-grey-dark);
  text-decoration: none;
  color: var(--color-white);
}

.cta-btn:focus-visible {
  outline: 3px solid var(--color-red);
  outline-offset: 3px;
}

.cta-btn--primary {
  background: var(--color-red);
}

.cta-btn--primary:hover {
  background: var(--color-red-dark);
}

.cta-btn--secondary {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-grey-light);
}

.cta-btn--secondary:hover {
  background: var(--color-frost);
  color: var(--color-black);
}

.cta-btn--ghost {
  background: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
}

.cta-btn--ghost:hover {
  background: var(--color-red);
  color: var(--color-white);
}

.cta-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   7. Preset Selector
   -------------------------------------------------------------------------- */
.preset-selector {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.preset-btn {
  padding: 0.625rem 1.25rem;
  background: var(--color-white);
  color: var(--color-black);
  border: 2px solid var(--color-grey-light);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.preset-btn:hover {
  border-color: var(--color-black);
}

.preset-btn.active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.preset-btn--custom {
  color: var(--color-red);
  border-color: var(--color-red);
}

.preset-btn--custom.active {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.preset-btn:focus-visible {
  outline: 3px solid var(--color-red);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   8. Wheel Layout
   -------------------------------------------------------------------------- */
.wheel-single {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--space-xl) auto;
  max-width: 360px;
}

.wheel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.roulette-svg {
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.22));
  border-radius: 50%;
}

.wheel-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-grey-dark);
  text-align: center;
}

/* Four-wheel grid */
.wheel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

@media (min-width: 600px) {
  .wheel-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (min-width: 960px) {
  .wheel-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

.wheel-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-frost);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.wheel-cell:hover,
.wheel-cell:focus-within {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.wheel-cell:focus-visible {
  outline: 3px solid var(--color-red);
  outline-offset: 3px;
}

.wheel-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --------------------------------------------------------------------------
   9. Tooltip
   -------------------------------------------------------------------------- */
.wheel-tooltip {
  position: absolute;
  bottom: calc(100% + var(--space-sm));
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.5;
  min-width: 200px;
  max-width: 260px;
  z-index: 50;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.wheel-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-black);
}

.wheel-tooltip strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.wheel-tooltip p {
  color: #CBD5E1;
  margin-bottom: var(--space-sm);
  font-size: 0.8125rem;
}

.wheel-tooltip ul {
  list-style: disc;
  padding-left: var(--space-md);
}

.wheel-tooltip li {
  font-size: 0.8125rem;
  color: #E2E8F0;
  margin-bottom: 2px;
}

/* Mobile: tooltips appear below on small screens */
@media (max-width: 599px) {
  .wheel-tooltip {
    position: static;
    transform: none;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin-top: var(--space-sm);
  }
  .wheel-tooltip::after { display: none; }
}

/* --------------------------------------------------------------------------
   10. Custom Data Form
   -------------------------------------------------------------------------- */
.custom-form {
  background: var(--color-frost);
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.custom-form.hidden {
  display: none;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.field-group label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-black);
}

.field-group input[type="number"],
.field-group input[type="email"],
.field-group input[type="text"] {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-grey-light);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  width: 100%;
}

.field-group input:focus {
  outline: none;
  border-color: var(--color-black);
}

.field-group input:invalid:not(:placeholder-shown) {
  border-color: var(--color-red);
}

.optional {
  font-size: 0.75rem;
  color: var(--color-grey-mid);
  font-weight: 400;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--color-grey-mid);
  font-style: italic;
  margin-top: calc(-1 * var(--space-sm));
  margin-bottom: var(--space-lg);
}

.form-error {
  color: var(--color-red);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  background: #FEF2F2;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-red);
  margin-bottom: var(--space-md);
}

.form-fields-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 var(--space-xl);
}

@media (min-width: 600px) {
  .form-fields-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   11. Allocation Comparison Bars
   -------------------------------------------------------------------------- */
.allocation-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
  padding: var(--space-xl);
  background: var(--color-frost);
  border-radius: var(--radius-lg);
}

@media (min-width: 640px) {
  .allocation-comparison {
    grid-template-columns: 1fr 1fr;
  }
}

.alloc-col h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-grey-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.alloc-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
}

.alloc-bar-track {
  flex: 1;
  height: 8px;
  background: var(--color-grey-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.alloc-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--color, var(--color-grey-dark));
  width: var(--pct, 0%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.alloc-bar-label {
  min-width: 120px;
  color: var(--color-grey-dark);
}

.alloc-bar-value {
  min-width: 36px;
  text-align: right;
  font-weight: 600;
  color: var(--color-black);
}

/* --------------------------------------------------------------------------
   12. LTV Stats
   -------------------------------------------------------------------------- */
.ltv-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}

.stat-item {
  font-size: 0.8125rem;
  color: var(--color-grey-dark);
  display: block;
}

.stat-change--up   { color: #16A34A; }
.stat-change--down { color: var(--color-red); }

.ltv-alloc {
  margin-top: var(--space-xs);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--color-grey-light);
}

.ltv-alloc strong {
  color: var(--color-black);
}

/* --------------------------------------------------------------------------
   13. LTV Overlay
   -------------------------------------------------------------------------- */
.overlay-trigger {
  text-align: center;
  margin: var(--space-xl) 0 var(--space-lg);
}

.insight-panel {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.insight-panel.hidden {
  display: none;
}

.insight-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #E2E8F0;
}

.insight-text .red {
  color: #F87171;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   14. Summary Card
   -------------------------------------------------------------------------- */
.summary-view {
  padding-bottom: var(--space-3xl);
}

#summary-card {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.summary-header {
  margin-bottom: var(--space-xl);
}

.summary-brand {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-red);
  display: block;
  margin-bottom: var(--space-sm);
}

.summary-insight {
  font-family: var(--font-headline);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
}

.summary-alloc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .summary-alloc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.summary-alloc-grid .alloc-col h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9CA3AF;
  margin-bottom: var(--space-md);
}

.summary-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.8125rem;
}

.summary-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.summary-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  width: var(--pct, 0%);
  background: var(--color, #9CA3AF);
}

.summary-bar-label {
  min-width: 100px;
  color: #CBD5E1;
  font-size: 0.75rem;
}

.summary-bar-value {
  min-width: 32px;
  text-align: right;
  font-weight: 600;
  color: var(--color-white);
}

.summary-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8125rem;
  color: #6B7280;
}

/* Summary card render target */
.summary-card-render {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  overflow: hidden;
  min-height: 320px;
}

.summary-meta {
  margin-top: var(--space-md);
  font-size: 0.75rem;
  color: #6B7280;
}

.text-fallback {
  background: var(--color-frost);
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.9375rem;
}

.text-fallback.hidden { display: none; }

/* --------------------------------------------------------------------------
   15. Email Capture
   -------------------------------------------------------------------------- */
.email-gate {
  background: var(--color-frost);
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.email-gate > p {
  font-size: 1.0625rem;
  color: var(--color-grey-dark);
  margin-bottom: var(--space-lg);
}

#email-form .field-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  max-width: 480px;
  margin: 0 auto var(--space-sm);
}

@media (min-width: 480px) {
  #email-form .field-group {
    flex-direction: row;
  }
}

#email-form input[type="email"] {
  flex: 1;
  width: 100%;
}

.consent-note {
  font-size: 0.75rem;
  color: var(--color-grey-mid);
  max-width: 400px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   16. Post-Capture CTA Block
   -------------------------------------------------------------------------- */
.post-capture {
  text-align: center;
}

.post-capture.hidden {
  display: none;
}

.post-capture #download-btn {
  margin-bottom: var(--space-xl);
}

.cta-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-xl);
  background: var(--color-frost);
  border-radius: var(--radius-lg);
}

.cta-primary {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-secondary {
  font-size: 0.9375rem;
  color: var(--color-grey-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   17. Stage-specific padding & spacing + eyebrow / annotation
   -------------------------------------------------------------------------- */
.stage-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
  margin-bottom: var(--space-sm);
}

.wheel-annotation {
  font-size: 0.9375rem;
  color: var(--color-grey-dark);
  text-align: center;
  font-style: italic;
  margin-top: calc(-1 * var(--space-md));
  margin-bottom: var(--space-xl);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.custom-form-title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: var(--space-xs);
}

.stage-inner > .cta-btn {
  margin-top: var(--space-xl);
}

.stage-divider {
  border: none;
  border-top: 1px solid var(--color-grey-light);
  margin: var(--space-2xl) 0;
}

.placeholder-text {
  color: var(--color-grey-mid);
  font-style: italic;
  font-size: 0.9375rem;
  text-align: center;
  padding: var(--space-xl);
}

/* --------------------------------------------------------------------------
   18. Responsive Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   19. Focus & Accessibility Utilities
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--color-red);
  outline-offset: 3px;
}

/* Remove default focus ring where custom is applied */
:focus:not(:focus-visible) {
  outline: none;
}

/* --------------------------------------------------------------------------
   20. Loading State
   -------------------------------------------------------------------------- */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-grey-mid);
  font-size: 0.9375rem;
  padding: var(--space-2xl);
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-grey-light);
  border-top-color: var(--color-black);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .spinner { animation: none; border-top-color: var(--color-grey-mid); }
}
