:root {
  --bg:           #09090f;
  --bg-card:      #111118;
  --bg-card2:     #17171f;
  --border:       #1e1e2c;
  --border-light: #2a2a3a;
  --accent:       #7c3aed;
  --accent-mid:   #9f5cff;
  --accent-light: #c4b5fd;
  --accent-glow:  rgba(124,58,237,.18);
  --text:         #ededf5;
  --text-dim:     #9090b0;
  --text-muted:   #55556a;
  --success:      #22c55e;
  --error:        #ef4444;
  --r:            14px;
  --r-lg:         22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,15,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-size: 1.15rem; font-weight: 700; letter-spacing: -.5px; }
.logo-ai { color: var(--accent-light); }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: .9rem; color: var(--text-dim); transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* ── Hero ── */
.hero {
  padding: 88px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.22) 0%, transparent 70%);
  pointer-events: none;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: var(--bg-card2);
  font-size: .8rem;
  color: var(--accent-light);
  margin-bottom: 24px;
  letter-spacing: .3px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-social-proof {
  margin-top: 24px;
  font-size: .85rem;
  color: var(--text-muted);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent-mid);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card2);
  color: var(--text-dim);
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .2s;
}
.btn-secondary:hover { background: var(--border); color: var(--text); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  background: transparent;
  color: var(--text);
  font-size: .92rem;
  font-weight: 500;
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--bg-card2); border-color: var(--accent); }

.btn-full { width: 100%; }

/* ── Tool section ── */
.tool-section { padding: 16px 0 60px; }

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}

/* Input toggle */
.input-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 4px;
  width: fit-content;
}
.toggle-btn {
  padding: 7px 18px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-dim);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.toggle-btn.active {
  background: var(--bg-card);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* Textarea / URL input */
textarea, input[type="url"] {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  padding: 14px 16px;
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
textarea:focus, input[type="url"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
textarea::placeholder, input[type="url"]::placeholder { color: var(--text-muted); }

input[type="url"] { height: 50px; }

.char-count {
  text-align: right;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.input-hint {
  font-size: .83rem;
  color: var(--text-dim);
  margin-top: 8px;
}

/* Niche pills */
.niche-selector { margin: 20px 0; }
.niche-selector label {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.niche-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text-dim);
  font-size: .83rem;
  cursor: pointer;
  transition: all .2s;
}
.pill.active, .pill:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent-light);
}

/* Spinner */
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.tool-disclaimer {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── Results ── */
.results-section { padding: 0 0 60px; }

.error-box {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--r);
  padding: 14px 18px;
  color: #fca5a5;
  font-size: .92rem;
  margin-bottom: 20px;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.results-header h2 { font-size: 1.4rem; font-weight: 700; }
.results-header p  { font-size: .85rem; color: var(--text-dim); margin-top: 4px; }

/* Hook cards */
.hooks-list { display: flex; flex-direction: column; gap: 10px; }

.hook-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  user-select: none;
}
.hook-card:hover {
  border-color: var(--accent);
  background: var(--bg-card2);
  box-shadow: 0 0 0 1px var(--accent-glow);
}
.hook-card.copied { border-color: var(--success); }

.hook-tipo {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--accent-light);
  background: var(--accent-glow);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  margin-top: 2px;
  flex-shrink: 0;
}
.hook-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
}
.copy-hint {
  font-size: .75rem;
  color: var(--text-muted);
  margin-left: auto;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Paywall */
.paywall-box {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.paywall-preview { padding: 20px; background: var(--bg-card); }
.paywall-preview .preview-item {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 10px;
}
.paywall-preview .preview-item:last-child { margin-bottom: 0; }
.preview-label { font-size: .78rem; font-weight: 600; color: var(--text-dim); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .4px; }
.preview-text  { font-size: .9rem; color: var(--text-muted); }

.blurred { filter: blur(5px); pointer-events: none; }

.paywall-cta {
  padding: 24px;
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.paywall-price { margin-bottom: 16px; }
.price-amount { font-size: 2.2rem; font-weight: 800; }
.price-desc { display: block; font-size: .8rem; color: var(--text-dim); margin-top: 2px; }

.paywall-includes {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: .8rem;
  color: var(--text-dim);
}

/* Full results */
.result-section {
  margin-bottom: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.result-section-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.result-section-header h3 { font-size: .95rem; font-weight: 600; }
.result-section-body { padding: 20px; }

.section-badge {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 400;
}

.script-text {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: .93rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 12px;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-dim);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.copy-btn:hover { background: var(--border); color: var(--text); }
.copy-btn.copied { color: var(--success); border-color: var(--success); }

.hashtag-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.hashtag {
  padding: 5px 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: 999px;
  font-size: .82rem;
  color: var(--accent-light);
}

.cta-grid { display: flex; flex-direction: column; gap: 10px; }
.cta-item {
  padding: 14px 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cta-item:hover { border-color: var(--accent); }
.cta-item.copied { border-color: var(--success); }
.cta-tipo {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-glow);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-text { font-size: .93rem; color: var(--text); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.two-col > div {
  padding: 20px;
}
.two-col > div:first-child {
  border-right: 1px solid var(--border);
}

/* ── Features ── */
.features-section { padding: 72px 0; }
.section-title { font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 48px; letter-spacing: -.02em; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--accent-glow);
  border: 1px solid rgba(124,58,237,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: var(--accent-light);
  margin-bottom: 16px;
}
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step p  { font-size: .88rem; color: var(--text-dim); line-height: 1.6; }

/* ── Pricing ── */
.pricing-section { padding: 72px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 660px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}
.plan-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--accent-light);
  background: var(--accent-glow);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.plan-name { font-size: .9rem; color: var(--text-dim); margin-bottom: 8px; }
.plan-price { font-size: 2rem; font-weight: 800; margin-bottom: 20px; }
.plan-price span { font-size: .9rem; font-weight: 400; color: var(--text-dim); }
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li { font-size: .88rem; color: var(--text-dim); padding: 6px 0; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border: none; }

/* ── Niche section ── */
.niche-section { padding: 48px 0 72px; }
.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all .2s;
  display: block;
  text-decoration: none;
}
.niche-card:hover { border-color: var(--accent); background: var(--bg-card2); transform: translateY(-2px); }
.niche-icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.niche-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.niche-card p { font-size: .85rem; color: var(--text-dim); line-height: 1.5; margin-bottom: 12px; }
.niche-link { font-size: .82rem; color: var(--accent-light); }

/* ── FAQ ── */
.faq-section { padding: 72px 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}
.faq-question .icon { flex-shrink: 0; font-style: normal; font-size: 1.2rem; color: var(--accent-light); transition: transform .25s; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 20px 20px; }
.faq-answer p { font-size: .92rem; color: var(--text-dim); line-height: 1.75; }
.faq-answer strong { color: var(--text); }
.faq-more { text-align: center; margin-top: 28px; font-size: .88rem; color: var(--text-dim); }
.faq-more a { color: var(--accent-light); }

/* ── Breadcrumb ── */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--border); }
.breadcrumb ol { list-style: none; display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-muted); }
.breadcrumb ol li:not(:last-child)::after { content: '›'; margin-left: 8px; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--text); }

/* ── Niche hero variant ── */
.hero-niche { padding: 64px 0 56px; }

/* ── Intro section ── */
.intro-section { padding: 48px 0; }
.intro-content h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 16px; }
.intro-content h3 { font-size: 1rem; font-weight: 600; margin: 24px 0 12px; }
.intro-content p { font-size: .95rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 14px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { font-size: .9rem; color: var(--text-dim); padding: 10px 14px; background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--r); }
.feature-list li strong { color: var(--text); }

/* ── Related section ── */
.related-section { padding: 48px 0 72px; }
.related-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.related-card {
  display: block;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: .88rem;
  color: var(--text-dim);
  transition: all .2s;
  text-decoration: none;
}
.related-card:hover { border-color: var(--accent); color: var(--text); background: var(--bg-card2); }

/* ── Guide article ── */
.guide-article { padding: 0 0 72px; }
.guide-header { padding: 48px 0 32px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.guide-header h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.guide-intro { font-size: 1rem; color: var(--text-dim); line-height: 1.7; max-width: 620px; margin-bottom: 14px; }
.guide-meta { font-size: .8rem; color: var(--text-muted); display: flex; gap: 20px; flex-wrap: wrap; }
.guide-section { margin-bottom: 48px; }
.guide-section h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.guide-section p { font-size: .94rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 14px; }
.guide-section ul { margin-left: 0; }
.guide-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.guide-list li { font-size: .9rem; color: var(--text-dim); padding: 10px 14px 10px 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); position: relative; }
.guide-list li::before { content: '✓'; position: absolute; left: 14px; color: var(--accent-light); font-weight: 700; }
.guide-list li strong { color: var(--text); }
.guide-step { display: grid; grid-template-columns: 48px 1fr; gap: 20px; margin-bottom: 32px; }
.guide-step-num { width: 48px; height: 48px; background: var(--accent-glow); border: 1px solid rgba(124,58,237,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 800; color: var(--accent-light); flex-shrink: 0; }
.guide-step-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; margin-top: 10px; }
.guide-step-body p { font-size: .9rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 10px; }
.guide-tip { background: var(--accent-glow); border: 1px solid rgba(124,58,237,.25); border-radius: var(--r); padding: 12px 16px; font-size: .87rem; color: var(--text-dim); margin-top: 12px; }
.guide-tip strong { color: var(--accent-light); }
.script-structure { display: flex; flex-direction: column; gap: 10px; margin: 14px 0; }
.structure-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 16px; }
.structure-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; color: var(--accent-light); letter-spacing: .4px; margin-right: 8px; }
.structure-time { font-size: .75rem; color: var(--text-muted); }
.structure-item p { font-size: .88rem; color: var(--text-dim); margin-top: 6px; margin-bottom: 0; }
.guide-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .85rem; }
.guide-table th { text-align: left; padding: 10px 12px; background: var(--bg-card2); border: 1px solid var(--border); color: var(--text-dim); font-weight: 600; }
.guide-table td { padding: 10px 12px; border: 1px solid var(--border); color: var(--text-dim); }
.guide-tool-cta { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; margin: 40px 0 0; text-align: center; }
.guide-tool-cta h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.guide-tool-cta p { font-size: .92rem; color: var(--text-dim); line-height: 1.6; max-width: 500px; margin: 0 auto; }
.guide-related { margin-top: 48px; }
.guide-related h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; }

/* ── Footer links ── */
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { font-size: .82rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--text-dim); }

/* ── Responsive extras ── */
@media (max-width: 640px) {
  .niche-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .guide-step { grid-template-columns: 36px 1fr; gap: 14px; }
  .guide-table { font-size: .78rem; }
  .guide-table th, .guide-table td { padding: 8px; }
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
footer p { text-align: center; font-size: .83rem; color: var(--text-muted); }
footer a { color: var(--text-dim); }
footer a:hover { color: var(--text); }

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

/* ── Responsive ── */
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col > div:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  nav .nav-links { display: none; }
  .hero { padding: 60px 0 48px; }
  .tool-card { padding: 20px 16px; }
  .niche-pills { gap: 6px; }
}
