:root {
  --bg: #fafaf9;
  --surface: #ffffff;
  --surface-alt: #f5f5f4;
  --border: #e7e5e4;
  --text: #1c1917;
  --muted: #78716c;
  --accent: #d97706;
  --accent-hover: #b45309;
  --code-bg: #f5f5f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.logo img {
  width: 34px;
  height: 34px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.75rem;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.15s;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

.bubble-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 1rem 1.5rem;
  pointer-events: none;
  z-index: 100;
}

.bubble-menu.home-page {
  justify-content: space-between;
}

.bubble-menu:not(.home-page) .logo-bubble {
  display: none;
}

.bubble-menu .bubble {
  --bubble-size: 48px;
  width: var(--bubble-size);
  height: var(--bubble-size);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.bubble-menu .logo-bubble {
  width: auto;
  min-height: var(--bubble-size);
  height: var(--bubble-size);
  max-width: calc(100% - 120px);
  padding: 0 14px;
  border-radius: calc(var(--bubble-size) / 2);
  gap: 8px;
}

.bubble-menu .logo-content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bubble-menu .logo-content {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}

.bubble-menu .bubble-logo {
  width: 28px;
  height: 28px;
}

.bubble-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bubble-menu .menu-btn,
.bubble-menu .sidebar-toggle-bubble {
  border: none;
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  padding: 0;
}

.bubble-menu .menu-btn {
  flex-direction: column;
}

.bubble-menu .sidebar-toggle-bubble svg {
  display: block;
}

.bubble-menu .menu-line {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.25s ease;
  transform-origin: center;
}

.bubble-menu .menu-line + .menu-line {
  margin-top: 6px;
}

.bubble-menu .menu-line.short {
  width: 16px;
}

.bubble-menu .menu-btn.open .menu-line {
  width: 24px;
}

.bubble-menu .menu-btn.open .menu-line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.bubble-menu .menu-btn.open .menu-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.bubble-menu-items {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 99;
}

.bubble-menu-items .pill-list {
  list-style: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 4px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: auto;
  justify-content: stretch;
}

.bubble-menu-items .pill-list .pill-col {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
}

.bubble-menu-items .pill-list .pill-col:nth-child(4):nth-last-child(2) {
  margin-left: calc(100% / 6);
}

.bubble-menu-items .pill-list .pill-col:nth-child(4):last-child {
  margin-left: calc(100% / 3);
}

.bubble-menu-items .pill-link {
  --item-rot: 0deg;
  --hover-bg: var(--accent);
  --hover-color: #fff;
  width: 100%;
  min-height: 140px;
  padding: clamp(1.5rem, 3vw, 5rem) 0;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
  will-change: transform;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
}

@media (min-width: 900px) {
  .bubble-menu-items .pill-link {
    transform: rotate(var(--item-rot));
  }

  .bubble-menu-items .pill-link:hover {
    transform: rotate(var(--item-rot)) scale(1.06);
    background: var(--hover-bg);
    color: var(--hover-color);
  }

  .bubble-menu-items .pill-link:active {
    transform: rotate(var(--item-rot)) scale(0.94);
  }
}

@media (max-width: 899px) {
  .bubble-menu-items {
    align-items: center;
    padding-top: 0;
  }

  .bubble-menu-items .pill-list {
    max-width: none;
    padding: 0 12px;
  }

  .bubble-menu-items .pill-link {
    min-height: 80px;
    font-size: clamp(1rem, 3.5vw, 1.8rem);
    padding: clamp(0.5rem, 1.5vw, 1rem) 0;
    transform: rotate(var(--item-rot));
  }

  .bubble-menu-items .pill-link:hover {
    transform: rotate(var(--item-rot)) scale(1.06);
  }

  .bubble-menu-items .pill-link:active {
    transform: rotate(var(--item-rot)) scale(0.94);
  }
}

.bubble-menu-items .pill-link.active {
  background: var(--surface-alt);
  color: var(--accent);
}

.bubble-menu-items .pill-label {
  display: inline-block;
  will-change: transform, opacity;
  height: 1.2em;
  line-height: 1.2;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem;
}

.hero {
  text-align: center;
  padding: 5rem 1rem 4rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 6rem);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.hero h1 .period {
  color: var(--accent);
}

.hero p {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 560px;
  margin: 1.5rem auto 2rem;
}

.cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, border-color 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--muted);
}

section {
  margin: 4rem 0;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  color: var(--accent);
  margin: 2rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  color: var(--muted);
  margin: 0 0 1rem;
}

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

a:hover {
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5rem;
  color: var(--text);
}

li {
  margin: 0.4rem 0;
}

code {
  font-family: ui-monospace, 'Cascadia Code', 'Fira Code', Consolas, monospace;
  background: var(--code-bg);
  padding: 0.15rem 0.35rem;
  border-radius: 0.3rem;
  font-size: 0.95em;
  color: var(--text);
}

pre {
  background: var(--code-bg);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  margin: 1rem 0;
}

pre code {
  background: transparent;
  padding: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.keyword { color: #b45309; }
.builtin { color: #d97706; }
.string { color: #15803d; }
.number { color: #be123c; }
.comment { color: #a8a29e; font-style: italic; }
.period { color: #d97706; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.6rem;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
}

.docs-layout {
  display: flex;
  min-width: 100%;
  min-height: calc(100vh - 70px);
  max-width: none;
  padding: 0;
  margin: 0;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 0 1.25rem 1.25rem;
  overflow-y: auto;
  z-index: 50;
}

@media (min-width: 861px) {
  .bubble-menu:not(.home-page) {
    left: auto;
    right: 1rem;
    top: 1rem;
    width: auto;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .bubble-menu .sidebar-toggle-bubble {
    display: none;
  }

  .sidebar {
    padding: 1.25rem;
  }
}

.sidebar h4 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  margin: 0.1rem 0;
}

.sidebar a {
  display: block;
  padding: 0.4rem 0.6rem;
  border-radius: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.sidebar a:hover,
.sidebar a.active {
  background: var(--surface-alt);
  color: var(--accent);
}

.docs-content {
  margin-left: 220px;
  padding: 2rem 2.5rem 3rem;
  min-width: 0;
  flex: 1;
}

.docs-content h1 {
  margin-top: 0;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step {
  position: relative;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 1.5rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
}

.code-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.code-output {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 1.25rem;
  min-height: 180px;
}

.code-output-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }

.code-output-body {
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  background: var(--surface);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 3rem 2rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-shapes .shape {
  position: absolute;
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.08;
  user-select: none;
}

.hero-shapes .shape-1 { top: 5%; left: 8%; }
.hero-shapes .shape-2 { top: 35%; right: 10%; }
.hero-shapes .shape-3 { bottom: 5%; left: 25%; }

.hero > *:not(.hero-shapes) {
  position: relative;
  z-index: 1;
}

#stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

#performance {
  text-align: center;
}

#performance .chart-wrapper {
  position: relative;
  max-width: 640px;
  height: 340px;
  margin: 2rem auto 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}

#performance .chart-note {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 640px;
  margin: 0 auto;
}

.marquee {
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  padding: 1.25rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-set {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
  padding-right: 3rem;
}

.marquee-set span {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: ui-monospace, 'Cascadia Code', 'Fira Code', Consolas, monospace;
  letter-spacing: 0;
  white-space: nowrap;
}

.tabs {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.tab-list {
  position: relative;
  display: inline-flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.tab-btn {
  position: relative;
  z-index: 1;
  padding: 0.55rem 1.1rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: color 0.15s;
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--accent);
}

.tab-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--surface-alt);
  border-radius: 0.45rem;
  z-index: 0;
}

.tab-panels {
  position: relative;
  overflow: hidden;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel pre {
  margin: 0;
}

.horizontal-section {
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  height: 100vh;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

header,
.bubble-menu {
  transition: transform 0.35s ease;
}

header.nav-hidden,
.bubble-menu.nav-hidden {
  transform: translateY(-120%);
}

.horizontal-track {
  display: flex;
  height: 100%;
  gap: 0.5rem;
  will-change: transform;
}

.h-panel {
  width: 85vw;
  height: 100%;
  flex-shrink: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.h-panel h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.h-panel p {
  max-width: 620px;
  font-size: 1.05rem;
}

.h-panel pre {
  max-width: 720px;
  width: 100%;
  text-align: left;
  margin: 1.5rem auto 1rem;
}

.h-panel p {
  margin: 0;
}

@media (max-width: 800px) {
  .horizontal-section {
    height: auto;
    overflow: visible;
  }
  .horizontal-track {
    flex-direction: column;
  }
  .h-panel {
    width: 100%;
    height: auto;
    padding: 3rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .h-panel:last-child {
    border-bottom: none;
  }
}

footer {
  text-align: center;
  padding: 2.5rem 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  max-width: 1200px;
  margin: 0 auto;
}

.docs-content footer {
  max-width: none;
  margin: 4rem -2.5rem -3rem;
  padding: 2.5rem 2.5rem;
}

/* Finish install page */
.finish-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 140px);
  padding: 2rem 1rem;
}

.finish-card {
  max-width: 640px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.finish-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.finish-card h1 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.finish-card > p {
  color: var(--muted);
  margin: 0 0 2rem;
}

.finish-card > p a {
  color: var(--accent);
  text-decoration: underline;
}

.finish-next {
  text-align: left;
  background: var(--surface-alt);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.finish-next h2 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.finish-next ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text);
}

.finish-next li {
  margin-bottom: 0.5rem;
}

.finish-next a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.finish-next a:hover {
  text-decoration: underline;
}

.finish-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 860px) {
  .docs-layout {
    display: block;
  }
  .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.25rem;
  }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding: 1.25rem;
    z-index: 200;
    background: var(--surface);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  body.sidebar-open .sidebar {
    transform: translateX(0);
  }
  .sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  body.sidebar-open .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .docs-content {
    margin-left: 0;
    padding: 1.5rem;
  }
  .docs-content footer {
    margin: 3rem -1.5rem -1.5rem;
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 861px) {
  .sidebar-toggle,
  .sidebar-overlay {
    display: none;
  }
}

@media (max-width: 640px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  nav a {
    margin: 0 0.6rem;
  }
  main {
    padding: 1rem;
  }
  .hero {
    padding: 3rem 1rem 2rem;
  }
  .code-showcase {
    grid-template-columns: 1fr;
  }
  #stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .tab-list {
    display: flex;
    width: 100%;
  }
  .tab-btn {
    flex: 1;
    padding: 0.55rem 0.5rem;
  }
  .finish-card {
    padding: 1.75rem 1.25rem;
  }
  .finish-actions {
    flex-direction: column;
  }
  .finish-actions .btn {
    width: 100%;
  }
}

/* Code block copy button */
pre {
  position: relative;
}

.copy-code-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

pre:hover .copy-code-button {
  opacity: 1;
}

.copy-code-button:hover {
  background: var(--surface-alt);
}

.copy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}

.copy-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.copy-success {
  color: #22c55e;
}
