/* ══════════════════════════════════════════
   WithLore — Proposal / Scope of Work Styles
   Dark theme, extends concept page palette
   ══════════════════════════════════════════ */

/* Reuse concept palette (already defined in concept.css, repeated here for standalone use) */
:root {
  --cp-black: #0b0b0b;
  --cp-black-warm: #111110;
  --cp-surface: #181817;
  --cp-surface-elevated: #1f1f1d;
  --cp-border: #2a2a27;
  --cp-border-subtle: #222220;
  --cp-yellow: #FFB800;
  --cp-yellow-dim: #C89200;
  --cp-yellow-glow: rgba(255, 184, 0, 0.125);
  --cp-text: #f0efe8;
  --cp-text-secondary: #a09f94;
  --cp-text-tertiary: #6b6a62;
  --cp-white: #faf9f5;
}

/* ── Page body ── */
body.proposal-body {
  background-color: var(--cp-black);
  color: var(--cp-text);
}

body.proposal-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── Password Gate ── */
.pw-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--cp-black);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pw-fadeIn 0.3s ease;
}

.pw-gate__inner {
  text-align: center;
  max-width: 400px;
  padding: 0 24px;
}

.pw-gate__logo {
  width: 100px;
  height: auto;
  opacity: 0.6;
  margin-bottom: 48px;
}

.pw-gate__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--cp-text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.pw-gate__sub {
  font-size: 14px;
  color: var(--cp-text-tertiary);
  margin-bottom: 32px;
}

.pw-gate__input {
  width: 100%;
  padding: 16px 20px;
  background: var(--cp-surface);
  border: 1.5px solid var(--cp-border);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cp-text);
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
  letter-spacing: 0.02em;
}

.pw-gate__input::placeholder {
  color: var(--cp-text-tertiary);
}

.pw-gate__input:focus {
  border-color: var(--cp-yellow);
}

.pw-gate__input--error {
  border-color: #e8380d;
  animation: pw-shake 0.4s ease;
}

.pw-gate__error {
  font-size: 13px;
  color: #e8380d;
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

.pw-gate__error.visible {
  opacity: 1;
}

@keyframes pw-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pw-fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes pw-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ── Client Logo (shared between nav and hero) ── */
.proposal-nav__client-logo {
  display: flex;
  align-items: center;
  height: 28px;
}

.proposal-nav__client-logo img {
  height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

.proposal-hero__client-logo {
  margin-bottom: 32px;
  animation: cp-fade 0.8s ease both;
  animation-delay: 0.1s;
}

.proposal-hero__client-logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.5;
  filter: brightness(0) invert(1);
}

/* ── Proposal Nav (reuses concept nav) ── */
.proposal-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34, 34, 32, 0.5);
}

.proposal-nav__brand {
  display: flex;
  align-items: center;
}

.proposal-nav__icon {
  width: 100px;
  height: auto;
  opacity: 0.9;
}

.proposal-nav__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--cp-black);
  background: var(--cp-yellow);
  padding: 10px 22px;
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
}

.proposal-nav__cta:hover {
  background: #ffc52e;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .proposal-nav { padding: 20px 40px; }
}

/* ── Hero ── */
.proposal-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 128px 24px 64px;
  position: relative;
  overflow: hidden;
}

.proposal-hero__glow {
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.proposal-hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.proposal-hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cp-yellow);
  margin-bottom: 24px;
  animation: cp-rise 0.8s ease both;
  animation-delay: 0.2s;
}

.proposal-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--cp-text);
  margin-bottom: 32px;
  animation: cp-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}

.proposal-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--cp-text-secondary);
  animation: cp-fade 0.8s ease both;
  animation-delay: 0.6s;
}

.proposal-hero__meta p {
  font-size: 15px;
}

.proposal-hero__meta .name {
  color: var(--cp-text);
  font-weight: 500;
}

.proposal-hero__meta .dim {
  color: var(--cp-text-tertiary);
}

.proposal-hero__meta .dot {
  display: none;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cp-text-tertiary);
}

.proposal-hero__bottom-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
}

@media (min-width: 640px) {
  .proposal-hero { padding: 128px 40px 96px; }
  .proposal-hero__meta {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .proposal-hero__meta .dot { display: block; }
}

/* ── Reuse divider from concept ── */
.proposal-divider {
  padding: 0 24px;
}

.proposal-divider__line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--cp-yellow-dim) 20%, var(--cp-yellow) 50%, var(--cp-yellow-dim) 80%, transparent 100%);
  opacity: 0.3;
}

@media (min-width: 640px) {
  .proposal-divider { padding: 0 40px; }
}

/* ── Section Shared ── */
.proposal-section {
  padding: 80px 24px;
}

.proposal-section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cp-yellow);
  margin-bottom: 24px;
}

.proposal-section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cp-text);
  margin-bottom: 24px;
}

.proposal-section__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cp-text-secondary);
  max-width: 720px;
}

@media (min-width: 640px) {
  .proposal-section { padding: 112px 40px; }
}

/* ── Executive Summary ── */
.proposal-summary__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: rgba(240, 239, 232, 0.9);
  font-weight: 300;
  letter-spacing: -0.01em;
  max-width: 800px;
}

/* ── Scope: Deliverable List ── */
.proposal-deliverables {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  max-width: 800px;
}

.proposal-deliverable {
  padding: 24px;
  background: var(--cp-surface);
  border: 1px solid var(--cp-border-subtle);
  transition: border-color 0.3s;
}

.proposal-deliverable:hover {
  border-color: var(--cp-yellow-dim);
}

.proposal-deliverable__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--cp-text);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.proposal-deliverable__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cp-text-secondary);
}

.proposal-deliverable__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.proposal-deliverable__tag {
  padding: 4px 10px;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.15);
  font-size: 11px;
  font-weight: 600;
  color: var(--cp-yellow);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── Scope: Table Format ── */
.proposal-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  max-width: 100%;
}

.proposal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.proposal-table th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cp-text-tertiary);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--cp-border);
}

.proposal-table td {
  font-size: 14px;
  color: var(--cp-text-secondary);
  padding: 16px;
  border-bottom: 1px solid var(--cp-border-subtle);
}

.proposal-table td:first-child {
  color: var(--cp-text);
  font-weight: 500;
}

.proposal-table tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

/* ── Scope: Phases ── */
.proposal-phases {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  max-width: 800px;
}

.proposal-phase {
  position: relative;
  padding-left: 32px;
}

.proposal-phase::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cp-yellow), var(--cp-border));
}

.proposal-phase__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.proposal-phase__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--cp-text);
  letter-spacing: -0.01em;
}

.proposal-phase__duration {
  font-size: 13px;
  color: var(--cp-yellow-dim);
  font-weight: 500;
}

.proposal-phase__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proposal-phase__item {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cp-text-secondary);
  padding-left: 16px;
  position: relative;
}

.proposal-phase__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--cp-yellow);
}

/* ── Scope: Storyboard (reuses concept scene cards) ── */
.proposal-scenes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 900px) {
  .proposal-scenes {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.proposal-scene {
  position: relative;
  background: var(--cp-surface);
  border: 1px solid var(--cp-border-subtle);
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.proposal-scene:hover {
  border-color: var(--cp-yellow-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(255, 184, 0, 0.08);
}

.proposal-scene__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.proposal-scene__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.proposal-scene:hover .proposal-scene__image img {
  transform: scale(1.03);
}

.proposal-scene__image::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--cp-surface) 0%, transparent 100%);
  pointer-events: none;
}

.proposal-scene__image--placeholder {
  background: var(--cp-surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proposal-scene__image--placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.12;
  color: var(--cp-text-tertiary);
}

.proposal-scene__number {
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cp-yellow);
  color: var(--cp-black);
  font-weight: 800;
  font-size: 14px;
  z-index: 2;
}

.proposal-scene__image-title {
  position: absolute;
  bottom: 12px; left: 16px; right: 16px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.proposal-scene__image-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--cp-text);
  letter-spacing: -0.02em;
}

.proposal-scene__image-title span {
  font-size: 12px;
  color: var(--cp-text-tertiary);
  font-family: monospace;
}

.proposal-scene__body {
  flex: 1;
  padding: 20px 20px 24px;
}

.proposal-scene__visual {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cp-text-secondary);
}

/* ── Timeline ── */
.proposal-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  max-width: 800px;
}

.proposal-timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--cp-border-subtle);
  position: relative;
}

.proposal-timeline__item:last-child {
  border-bottom: none;
}

.proposal-timeline__phase {
  font-size: 13px;
  font-weight: 600;
  color: var(--cp-yellow);
  letter-spacing: -0.01em;
}

.proposal-timeline__duration {
  font-size: 12px;
  color: var(--cp-text-tertiary);
  margin-top: 4px;
}

.proposal-timeline__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cp-text-secondary);
}

@media (max-width: 600px) {
  .proposal-timeline__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ── Investment / Pricing ── */
.proposal-investment {
  margin-top: 40px;
  max-width: 600px;
}

.proposal-investment__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proposal-investment__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--cp-border-subtle);
}

.proposal-investment__item-name {
  font-size: 15px;
  color: var(--cp-text);
  font-weight: 500;
}

.proposal-investment__item-desc {
  font-size: 13px;
  color: var(--cp-text-tertiary);
  margin-top: 4px;
}

.proposal-investment__item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--cp-text);
  white-space: nowrap;
}

.proposal-investment__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 8px;
}

.proposal-investment__total-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cp-text-tertiary);
}

.proposal-investment__total-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--cp-yellow);
  letter-spacing: -0.03em;
}

.proposal-investment__notes {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--cp-text-tertiary);
  font-style: italic;
}

/* ── Terms ── */
.proposal-terms {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  max-width: 720px;
}

.proposal-term {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cp-text-secondary);
}

.proposal-term::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--cp-yellow);
  flex-shrink: 0;
  margin-top: 9px;
}

/* ── Linked Pages (concept, portfolio) ── */
.proposal-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
  max-width: 600px;
}

@media (min-width: 640px) {
  .proposal-links { grid-template-columns: repeat(2, 1fr); }
}

.proposal-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--cp-surface);
  border: 1px solid var(--cp-border-subtle);
  transition: border-color 0.3s, transform 0.3s;
}

.proposal-link-card:hover {
  border-color: var(--cp-yellow-dim);
  transform: translateY(-2px);
}

.proposal-link-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.15);
  flex-shrink: 0;
}

.proposal-link-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cp-yellow);
}

.proposal-link-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cp-text-tertiary);
}

.proposal-link-card__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--cp-text);
  margin-top: 2px;
}

/* ── Media Sections (images/video within proposal) ── */
.proposal-media {
  padding: 40px 0;
}

.proposal-media__image {
  max-width: 800px;
}

.proposal-media__image img {
  width: 100%;
  height: auto;
}

.proposal-media__video {
  max-width: 800px;
}

.proposal-media__video video {
  width: 100%;
  height: auto;
}

.proposal-media__caption {
  font-size: 13px;
  color: var(--cp-text-tertiary);
  margin-top: 12px;
  font-style: italic;
}

/* ── CTA (reuses concept CTA) ── */
.proposal-cta {
  padding: 96px 24px;
  max-width: 720px;
}

.proposal-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--cp-text);
  margin-bottom: 24px;
}

.proposal-cta__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--cp-text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
}

.proposal-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--cp-yellow);
  color: var(--cp-black);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

.proposal-cta__button:hover {
  background: #ffc52e;
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(255, 184, 0, 0.25);
}

.proposal-cta__button svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 640px) {
  .proposal-cta { padding: 128px 40px; }
}

/* ── Footer (reuses concept footer) ── */
.proposal-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--cp-border-subtle);
}

.proposal-footer__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proposal-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proposal-footer__brand-icon {
  width: 80px;
  height: auto;
  opacity: 0.7;
}

.proposal-footer__brand-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--cp-text);
}

.proposal-footer__brand-title {
  font-size: 13px;
  color: var(--cp-text-tertiary);
}

.proposal-footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.proposal-footer__link {
  font-size: 13px;
  color: var(--cp-text-secondary);
  transition: color 0.2s;
}

.proposal-footer__link:hover {
  color: var(--cp-yellow);
}

.proposal-footer__notice {
  color: rgba(107, 106, 98, 0.5);
  font-size: 11px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .proposal-footer { padding: 48px 40px; }
  .proposal-footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ── Markdown body content within proposal ── */
.proposal-body {
  padding: 0 24px 80px;
}

.proposal-body__inner {
  max-width: 720px;
}

.proposal-body__inner h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--cp-text);
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
}

.proposal-body__inner h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--cp-text);
  margin: 32px 0 12px;
}

.proposal-body__inner p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cp-text-secondary);
  margin-bottom: 16px;
}

.proposal-body__inner ul, .proposal-body__inner ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.proposal-body__inner li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cp-text-secondary);
  margin-bottom: 8px;
}

.proposal-body__inner strong {
  color: var(--cp-text);
  font-weight: 600;
}

.proposal-body__inner a {
  color: var(--cp-yellow);
  text-decoration: underline;
  text-decoration-color: rgba(255, 184, 0, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.proposal-body__inner a:hover {
  text-decoration-color: var(--cp-yellow);
}

@media (min-width: 640px) {
  .proposal-body { padding: 0 40px 112px; }
}

/* ── Animations ── */
@keyframes cp-rise {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cp-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Valid Until Badge ── */
.proposal-valid {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  font-size: 12px;
  color: var(--cp-text-tertiary);
  margin-top: 24px;
}

.proposal-valid__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}
