/* ClearTrace — Industrial precision, no compromise */
:root {
  --bg: #0d0d0f;
  --bg-alt: #111115;
  --bg-card: #161619;
  --bg-card-hover: #1c1c21;
  --fg: #f0f0f2;
  --fg-muted: #8a8a94;
  --fg-dim: #4a4a54;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --accent-secondary: #c8860e;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.proof-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}
.proof-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.visual-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.visual-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.constraint-display {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.constraint-bar { display: flex; flex-direction: column; gap: 0.35rem; }
.bar-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bar-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  width: 78%;
}
.bar-fill-secondary { background: #d97706; width: 54%; }
.bar-fill-tertiary { background: #b45309; width: 31%; }
.bar-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}
.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.metric-card {
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.metric-card:last-child { border-right: none; }
.metric-card-accent {
  background: var(--accent-dim);
}
.metric-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.metric-card-accent .metric-val { color: var(--accent); }
.metric-label {
  font-size: 0.65rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* SHARED SECTION STYLES */
.section-tag {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

/* PROBLEM */
.problem { padding: 5rem 2rem; background: var(--bg-alt); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-tag {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 1rem;
}
.problem-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.problem-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 720px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.problem-signals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 640px;
}
.signal-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
}
.signal-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signal-text {
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 500;
}

/* HOW */
.how { padding: 5rem 2rem; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: rgba(245, 166, 35, 0.2); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CONSTRAINT MAP */
.constraint-map { padding: 5rem 2rem; background: var(--bg-alt); }
.map-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.map-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-top: 1rem;
}
.constraint-nodes {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.node {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
}
.node-primary { border-left: 3px solid var(--accent); }
.node-secondary { border-left: 3px solid #d97706; }
.node-tertiary { border-left: 3px solid #b45309; }
.node-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}
.node-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--fg);
  min-width: 32px;
  text-align: right;
}
.node-primary .node-score { color: var(--accent); }
.node-secondary .node-score { color: #d97706; }
.node-bar {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.node-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  width: 100%;
}
.node-bar-fill-2 { background: #d97706; }
.node-bar-fill-3 { background: #b45309; }
.node-bar-fill-4 { background: #4a4a54; }

/* OUTCOMES */
.outcomes { padding: 5rem 2rem; }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3rem;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.outcome-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
}
.outcome-metric {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.outcome-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.outcome-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* METHOD */
.method {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  text-align: center;
}
.method-inner { max-width: 800px; margin: 0 auto; }
.method-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}
.badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.method-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.5;
  color: var(--fg);
  font-style: normal;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.method-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 1rem;
  font-weight: 400;
}
.method-standards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.standard-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* CLOSING */
.closing { padding: 6rem 2rem; text-align: center; }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 3rem;
}
.closing-cta { display: flex; justify-content: center; }
.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  border-radius: 10px;
  display: inline-block;
  text-align: left;
}
.cta-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.cta-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.closing-btn {
  display: inline-block;
  background: var(--accent);
  color: #0d0d0f;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 1.2rem;
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
}
.closing-btn:hover { background: #fbb03a; transform: translateY(-1px); }

/* FOOTER */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 400px;
}
.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-links span {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .map-inner { grid-template-columns: 1fr; gap: 2rem; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .problem-signals { grid-template-columns: 1fr; }
  .visual-metrics { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .problem, .how, .constraint-map, .outcomes, .method, .closing { padding: 3.5rem 1.25rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 1rem; }
  .footer-links { flex-direction: column; gap: 0.5rem; }
  .node { grid-template-columns: 1fr auto; }
  .node-bar { display: none; }
}

/* DIAGNOSTIC */
.diag-hero {
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}
.diag-hero-inner { max-width: 680px; margin: 0 auto; }

.diag-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.diag-section { display: flex; flex-direction: column; gap: 0.75rem; }

.diag-section-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.diag-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.diag-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--fg);
  transition: border-color 0.15s, background 0.15s;
}
.diag-option:hover { border-color: rgba(245,166,35,0.3); background: var(--bg-card-hover); }
.diag-option input[type="radio"],
.diag-option input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.diag-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.diag-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--fg);
  transition: border-color 0.15s, background 0.15s;
}
.diag-check:hover { border-color: rgba(245,166,35,0.3); }
.diag-check input { accent-color: var(--accent); flex-shrink: 0; }

.diag-submit-row { display: flex; justify-content: center; padding-top: 1rem; }

.btn-diagnostic {
  background: var(--accent);
  color: #0d0d0f;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.01em;
}
.btn-diagnostic:hover { background: #fbb03a; transform: translateY(-1px); }
.btn-diagnostic:active { transform: translateY(0); }

.btn-secondary {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  font-family: var(--font-display);
}
.btn-secondary:hover { border-color: rgba(245,166,35,0.3); background: var(--bg-card-hover); }

/* Results */
.hidden { display: none !important; }

.results-panel {
  max-width: 680px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.results-header {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.results-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-top: 0.75rem;
}

.sev-badge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sev-badge {
  display: inline-block;
  border: 1px solid;
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sev-score {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.results-top {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.top-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.top-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.top-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.results-bar-section {
  margin-bottom: 1.5rem;
}

.results-bar-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.res-bar-row {
  display: grid;
  grid-template-columns: 20px 1fr 120px 36px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.res-bar-row:last-child { border-bottom: none; }
.res-bar-top { background: var(--accent-dim); border-radius: 6px; padding: 0.5rem 0.75rem; margin-bottom: 0.25rem; border-bottom: none; }

.res-bar-rank { font-size: 0.7rem; color: var(--fg-muted); font-family: var(--font-display); font-weight: 700; }
.res-bar-name { font-size: 0.82rem; color: var(--fg); font-weight: 500; }
.res-bar-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.res-bar-fill { height: 100%; border-radius: 3px; transition: width 0.6s ease; }
.res-bar-score { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; text-align: right; }

.results-actions { margin-bottom: 1.5rem; }
.results-actions-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.actions-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.action-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.action-num {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--accent);
  margin-top: 0.1rem;
}
.action-item span:last-child { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

.results-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.results-note { font-size: 0.85rem; color: var(--fg-muted); }

/* Mobile */
@media (max-width: 600px) {
  .diag-check-grid { grid-template-columns: 1fr; }
  .res-bar-row { grid-template-columns: 20px 1fr 80px 30px; }
  .results-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}