:root {
    --bg: #F7F5F0;
    --bg-dark: #1A1A18;
    --text: #1A1A18;
    --text-muted: #6B6B60;
    --green: #2D6A4F;
    --green-light: #D8EDDF;
    --green-bright: #52C788;
    --amber: #E9762B;
    --amber-light: #FEF3E2;
    --red: #C1121F;
    --red-light: #FFE8E8;
    --border: #E2DDD5;
    --card: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
  }

  /* NAV */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 64px;
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: #fff;
  }

  .logo span { color: var(--green-bright); }

  nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  nav ul a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
  }

  nav ul a:hover { color: #fff; }

  .nav-cta {
    background: var(--green-bright);
    color: var(--bg-dark) !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .nav-cta:hover { opacity: 0.9; }

  /* HERO - dark top section */
  .hero-dark {
    background: var(--bg-dark);
    padding: 80px 64px 0;
  }

  .hero-dark-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-end;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-bright);
    background: rgba(82,199,136,0.12);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 24px;
  }

  .hero-dark h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    font-weight: 400;
    color: #fff;
  }

  .hero-dark h1 em {
    font-style: italic;
    color: var(--green-bright);
  }

  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 440px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 64px;
  }

  .btn-primary {
    background: var(--green-bright);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .btn-primary:hover { opacity: 0.9; }

  .btn-ghost {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }

  .btn-ghost:hover { color: rgba(255,255,255,0.8); }

  /* HERO WIDGET - sits at bottom of dark section, overlaps */
  .hero-widget-wrap {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-widget {
    background: #242420;
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 24px;
    color: #fff;
  }

  .widget-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 14px;
  }

  .widget-headline {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .widget-headline strong { color: var(--green-bright); }

  .widget-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
  }

  .widget-metric label {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: 3px;
  }

  .widget-metric .val {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
  }

  .widget-metric .val.red { color: #FF6B6B; }
  .widget-metric .val.amber { color: #FFB347; }

  .widget-flags { display: flex; flex-direction: column; gap: 6px; }

  .flag {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 9px 12px;
  }

  .flag-text { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.4; }
  .flag-text span { display: block; font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 2px; }

  .flag-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    margin-left: 12px;
    margin-top: 1px;
    flex-shrink: 0;
  }

  .flag-badge.high { background: rgba(193,18,31,0.25); color: #FF8A8A; }
  .flag-badge.medium { background: rgba(233,118,43,0.25); color: #FFB07A; }

  /* HERO WHITE BARS */
  .hero-bars {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 28px 64px;
    display: flex;
    justify-content: center;
  }

  .hero-bars-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
  }

  .hero-bar {
    padding: 22px 24px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .hero-bar:last-child { border-right: none; }

  .hero-bar-val {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .hero-bar-val.green { color: var(--green); }
  .hero-bar-val.red { color: var(--red); }

  .hero-bar-label {
    font-size: 13px;
    color: var(--text);
    font-weight: 400;
    line-height: 1.4;
  }

  .hero-bar-sub {
    font-size: 11px;
    color: var(--text-muted);
  }



  /* SECTIONS */
  .section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 64px;
  }

  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  .section-label.green { color: var(--green); }

  h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin-bottom: 16px;
  }

  h2 em { font-style: italic; color: var(--green); }

  .section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 48px;
  }

  /* PAIN */
  .pain-body {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 12px;
  }

  .pain-emphasis {
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 48px;
  }

  .pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .pain-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pain-card-top {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2px;
  }

  .pain-card-icon { display: none; }

  .pain-card h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
  }

  .pain-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
  }

  .pain-card .stat {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--red);
    background: var(--red-light);
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    line-height: 1.4;
  }

  .pain-card .stat-muted {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--amber);
    background: var(--amber-light);
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    line-height: 1.4;
  }

  .pain-card .stat-neutral {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    background: #F0EDE8;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    line-height: 1.4;
  }

  /* INTEGRATIONS STRIP */
  .integrations-strip {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 64px;
  }

  .integrations-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .integrations-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .integration-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .chip {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
  }

  /* WEDGE */
  .wedge-bg {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 72px 0;
    border-bottom: 1px solid var(--border);
  }

  .stage:last-child { border-bottom: none; }
  .stage.reverse { direction: rtl; }
  .stage.reverse > * { direction: ltr; }

  .stage-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
  }

  .stage h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .stage > div > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .stage-bullets { display: flex; flex-direction: column; gap: 8px; }

  .stage-bullet {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
  }

  .stage-bullet::before {
    content: '→';
    color: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* PROPOSAL PREVIEW */
  .proposal-preview {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
  }

  .preview-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
  }

  .preview-badge {
    font-size: 10px;
    background: var(--green-light);
    color: var(--green);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
  }

  .preview-body { padding: 16px; }

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

  .match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
  }

  .match-name { font-size: 12px; font-weight: 500; }
  .match-meta { color: var(--text-muted); font-size: 11px; margin-top: 2px; }

  .match-pct {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-light);
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
  }

  .preview-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
  .preview-meta-top { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }

  .preview-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .preview-row:last-child { border-bottom: none; }
  .preview-row label { color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
  .preview-row .val { font-weight: 500; text-align: right; }
  .preview-row .val .sub { font-size: 11px; color: var(--green); font-weight: 400; display: block; }

  .flag-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--amber);
    background: var(--amber-light);
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 12px;
  }

  /* FLYWHEEL */
  .flywheel-section { background: var(--bg); }

  .flywheel-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
  }

  .flywheel-item:last-child { border-bottom: none; }

  .flywheel-item.reverse { direction: rtl; }
  .flywheel-item.reverse > * { direction: ltr; }

  .flywheel-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .flywheel-item h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .flywheel-item h3 em { font-style: italic; color: var(--green); }

  .flywheel-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
  }

  /* APP SCREENSHOTS (CSS-only recreations) */
  .app-mock {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  }

  .app-mock-header {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* CAPACITY MOCK */
  .capacity-mock { font-size: 12px; }

  .capacity-scenario {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
  }

  .scenario-pill {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid var(--border);
    color: var(--text-muted);
  }

  .scenario-pill.active {
    background: var(--bg-dark);
    color: #fff;
    border-color: var(--bg-dark);
  }

  .signal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    gap: 12px;
  }

  .signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
  }

  .signal-dot.red { background: #C1121F; }
  .signal-dot.amber { background: var(--amber); }
  .signal-dot.green { background: var(--green-bright); }

  .signal-left { display: flex; gap: 10px; align-items: flex-start; flex: 1; }
  .signal-title { font-size: 12px; font-weight: 600; margin-bottom: 2px; }
  .signal-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

  .signal-action { font-size: 11px; color: var(--text-muted); text-align: right; flex-shrink: 0; }

  .staffing-grid { padding: 12px 14px; }

  .staffing-row {
    display: grid;
    grid-template-columns: 120px repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 6px;
    align-items: center;
    font-size: 11px;
  }

  .staffing-name { font-weight: 500; font-size: 11px; }
  .staffing-role { font-size: 10px; color: var(--text-muted); }

  .staffing-cell {
    height: 24px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
  }

  .staffing-cell.full { background: #3B82F6; }
  .staffing-cell.over { background: #EF4444; }
  .staffing-cell.partial { background: #F59E0B; }
  .staffing-cell.empty { background: #E5E7EB; color: var(--text-muted); }
  .staffing-cell.pipeline { background: repeating-linear-gradient(45deg, #ddd, #ddd 3px, #eee 3px, #eee 8px); color: var(--text-muted); }

  /* MARGIN MOCK */
  .margin-big {
    padding: 20px 18px;
    background: var(--bg-dark);
    color: #fff;
  }

  .margin-big-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
  .margin-big-val { font-size: 48px; font-weight: 700; color: var(--green-bright); line-height: 1; margin-bottom: 4px; }
  .margin-big-sub { font-size: 12px; color: rgba(255,255,255,0.4); }

  .margin-bars { padding: 14px 18px; }

  .margin-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .margin-bar-label { width: 100px; flex-shrink: 0; }

  .margin-bar-track {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
  }

  .margin-bar-fill {
    height: 100%;
    border-radius: 3px;
  }

  .margin-bar-fill.green { background: var(--green); }
  .margin-bar-fill.amber { background: var(--amber); }
  .margin-bar-fill.red { background: var(--red); }

  .margin-bar-val { font-size: 12px; font-weight: 600; width: 36px; text-align: right; flex-shrink: 0; }

  /* PIPELINE MOCK */
  .pipeline-detected { padding: 12px 14px; }

  .pipeline-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }

  .pipeline-item:last-child { margin-bottom: 0; }

  .pipeline-icon {
    width: 28px;
    height: 28px;
    background: #F0EDE8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
  }

  .pipeline-left { display: flex; gap: 10px; flex: 1; }
  .pipeline-title { font-size: 12px; font-weight: 600; margin-bottom: 2px; }
  .pipeline-desc { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

  .pipeline-chips { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 6px; }
  .pipeline-chip {
    font-size: 10px;
    background: white;
    border: 1px solid var(--border);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--text-muted);
  }

  .confidence-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .confidence-badge.high { background: var(--green-light); color: var(--green); }
  .confidence-badge.low { background: var(--amber-light); color: var(--amber); }

  .pipeline-actions { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
  .pipeline-btn {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
  }
  .pipeline-btn.primary { background: var(--bg-dark); color: #fff; }
  .pipeline-btn.ghost { border: 1px solid var(--border); color: var(--text-muted); }

  /* CTA */
  .cta-section {
    background: var(--bg-dark);
    padding: 96px 64px;
  }

  .cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .cta-section h2 { color: #fff; font-size: 44px; margin-bottom: 16px; }
  .cta-section h2 em { color: var(--green-bright); }

  .cta-section p {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 36px;
  }

  .cta-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }

  .btn-cta {
    background: var(--green-bright);
    color: var(--bg-dark);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .btn-cta:hover { opacity: 0.9; }

  .cta-sub { font-size: 13px; color: rgba(255,255,255,0.3); letter-spacing: 0.03em; }

  /* FOOTER */
  footer {
    padding: 28px 64px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    background: var(--bg-dark);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content { animation: fadeUp 0.6s ease forwards; }
  .hero-widget { animation: fadeUp 0.7s ease 0.1s both; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    nav ul { display: none; }

    .hero-dark { padding: 48px 24px 0; }
    .hero-dark-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-dark h1 { font-size: 36px; }
    .hero-sub { font-size: 15px; }
    .hero-actions { padding-bottom: 32px; }
    .hero-widget-wrap { display: none; }

    .hero-bars-inner { grid-template-columns: 1fr 1fr; max-width: 100%; }

    .section-wrap { padding: 64px 24px; }
    .wedge-bg .section-wrap { padding-bottom: 0; }

    h2 { font-size: 32px; }
    .section-sub { font-size: 14px; }

    .pain-cards { grid-template-columns: 1fr; }

    .integrations-strip { padding: 16px 24px; }
    .integrations-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .integration-chips { flex-wrap: wrap; }

    .stage { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
    .stage.reverse { direction: ltr; }

    .flywheel-item { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
    .flywheel-item.reverse { direction: ltr; }

    .cta-section { padding: 64px 24px; }
    .cta-section h2 { font-size: 32px; }

    footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
  }