/*
  Kai Website Stylesheet
  A cyberpunk inspired palette with neon accents and modern typography.
*/

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Ensure content starts below banner + fixed header */
body {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: #e5e7eb;
  /* Apply an immersive 3D background across the entire site */
  background-image: url('images/background_holo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* Dark overlay to enhance contrast */
  background-color: rgba(10, 10, 15, 0.75);
  background-blend-mode: overlay;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Layout variables (after base to avoid specificity issues) */
:root {
  --banner-h: 0px;   /* promo banner height if present */
  --header-h: 120px; /* default header height */
}
@media (max-width: 767px) {
  :root { --header-h: 150px; }
}

/* push content below fixed header */
body { padding-top: calc(var(--banner-h) + var(--header-h)); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #06b6d4;
  text-decoration: none;
}

/* Utility Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(90deg, #06b6d4 0%, #a855f7 100%);
  color: #0a0a0f;
  border: none;
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-secondary {
  background: transparent;
  color: #06b6d4;
  border: 1px solid #06b6d4;
}

.btn-secondary:hover {
  background: rgba(6, 182, 212, 0.1);
}

.btn-outline {
  padding: 0.5rem 1rem;
  border: 1px solid #a855f7;
  border-radius: 9999px;
  color: #a855f7;
  transition: background 0.3s;
}

.btn-outline:hover {
  background: rgba(168, 85, 247, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  height: 100%;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: calc(var(--header-h) - 37px);
  width: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .logo-img { height: 143px; }
}

@media (max-width: 767px) {
  .logo-img { height: 107px; }
}

/* Navigation Links */
.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 2rem;
  margin: 0;
}

.nav-links a:not(.nav-cta) {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
}

.nav-links a:not(.nav-cta):hover {
  color: #06b6d4;
}

/* Nav CTA buttons */
.nav-cta {
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem !important;
  margin-left: 1rem;
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
}

/* Mobile nav behaviour */
@media (max-width: 767px) {
  .nav-content { padding: 0.75rem 1rem; }
  
  .hamburger { display: flex; }
  
  .nav-links {
    position: fixed;
    top: calc(var(--banner-h) + var(--header-h) + 8px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    z-index: 999;
  }
  
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; }
  .nav-links .btn { width: 100%; text-align: center; }
  
  /* Logo adjustments handled in main logo styles */
}

/* Hero Section - body padding accounts for header; add local spacing */
.hero-section {
  padding: 2rem 0 4rem;
  position: relative;
  overflow: hidden;
  /* Use the global background for a seamless flow */
  background: transparent;
}
.hero-section::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(60% 60% at 50% 10%, rgba(0,0,0,.35), rgba(0,0,0,.65));
  pointer-events:none;
}

/* Optional: tune for wide screens if desired
@media (min-width: 1024px) {
  .hero-section { padding-top: calc(var(--banner-h) + var(--header-h) + 3rem); }
}
*/

/* No mobile override; header offset handled globally */

/* Small introductory tagline below the hero title */
.hero-intro {
  font-size: 1rem;
  color: #a855f7;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

/* Brand inline styling to avoid misaligned unicode/superscripts */
.brand-kai {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-byoneeko {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.9em;
  vertical-align: baseline;
  opacity: 0.95;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: repeat(12, 1fr); align-items: center; }
  .hero-left { grid-column: span 7; }
  .hero-right { grid-column: span 5; justify-self:end }
}

/* Hero media (illustration) */
.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  filter: brightness(1.12) contrast(1.08);
}

.hero-visual { max-width: 420px; animation: heroPulse 8s ease-in-out infinite; }
@keyframes heroPulse { 0%,100% { opacity:.9 } 50% { opacity:1 } }

.micro-urgency { margin-top:.5rem; color:#94a3b8; font-size:.9rem; }

/* Problem */
.problem-section { padding: 3rem 0; }
.problem-grid { display:grid; gap:2rem; grid-template-columns: 1fr; }
@media(min-width:768px){ .problem-grid{ grid-template-columns: 1fr 1fr; align-items:center } }
.notif-stack svg { display:block; margin-bottom:.25rem }
.mini-graph { filter: drop-shadow(0 6px 18px rgba(14,165,233,.2)); }

/* Demo */
.demo-section { padding:3rem 0 }
.demo-grid { display:grid; gap:1.5rem; grid-template-columns:1fr; }
@media(min-width:768px){ .demo-grid{ grid-template-columns:1fr 1fr } }
.demo-card { background: rgba(10,10,15,.7); border:1px solid rgba(148,163,184,.15); border-radius:12px; padding:1.25rem }
.demo-card h3 { margin-bottom:.5rem; font-weight:700; }
.demo-card ul { margin:0 0 1rem 1.25rem; color:#94a3b8 }
.demo-caption { text-align:center; color:#94a3b8; margin-top: .75rem }

/* Privacy band */
.privacy-band { padding:2.5rem 0; background: rgba(10,10,15,.6); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06) }
.band-sub { color:#94a3b8 }
.band-sub a { color:#0ea5e9 }

/* Artifacts */
.artifacts-section { padding:3rem 0 }
.artifacts-grid { display:grid; gap:1rem; grid-template-columns:1fr; }
@media(min-width:768px){ .artifacts-grid{ grid-template-columns: repeat(3,1fr) } }
.artifact-card { background: rgba(10,10,15,.7); border:1px solid rgba(148,163,184,.15); border-radius:12px; padding:1rem; text-align:center }
.artifact-svg { margin-bottom:.75rem }
.copy-artifact { font-size:.8rem }

/* Decision band */
.decision-band { padding:2rem 0; background:#0b0b12; border-top:1px solid rgba(255,255,255,.06) }
.decision-grid { display:flex; gap:1rem; align-items:center; justify-content:space-between; flex-wrap:wrap }
.decision-grid p { color:#e5e7eb; font-weight:600 }

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title { font-size: 3rem; }
}

.hero-subtitle {
  color: #9ca3af;
  margin-bottom: 2rem;
  font-size: clamp(0.95rem, 2.2vw, 1rem);
  max-width: 40rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .cta-buttons .btn { width: 100%; }
}

.stats-grid {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #06b6d4;
}

.stat-label {
  font-size: 0.8rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-graph {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#memoryGraph {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #cbd5e1;
  font-size: 0.75rem;
  max-width: 240px;
  z-index: 10;
}

.tooltip.hidden {
  display: none;
}

.live-stats {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 0.7rem;
  color: #94a3b8;
}

/* Memory Graph Section */
.memorygraph-section {
  padding: 4rem 0;
  /* Transparent so the global holographic background is visible */
  background: transparent;
}

.memorygraph-content {
  text-align: center;
}

.memorygraph-desc {
  color: #9ca3af;
  max-width: 700px;
  margin: 0.5rem auto 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.memorygraph-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
}

/* Floating heading for memory graph */
.memorygraph-title {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #06b6d4;
  background: rgba(10, 10, 15, 0.6);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(6, 182, 212, 0.4);
  z-index: 5;
  pointer-events: none;
}

.memorygraph-wrapper canvas {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-card img {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 5px #06b6d4);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Story Section */
.story-section {
  padding: 4rem 0;
}

/* Founder story replacement */
.founder-story {
  max-width: 800px;
  margin: 2rem auto 0;
  line-height: 1.6;
  font-size: 1rem;
  color: #cbd5e1;
}

.founder-story p {
  margin-bottom: 1rem;
}

/* Emphasis styles in founder story */
.story-dont-lose {
  font-size: 120%;
  font-weight: 700;
  font-style: italic;
}

.story-kai-cta {
  font-size: 1.6rem;
  font-weight: 800;
}

/* Company definition and mission sections */
.company-section,
.mission-section {
  padding: 4rem 0;
  text-align: center;
}

@media (max-width: 767px) {
  .company-section, .mission-section { padding: 2.5rem 0; }
}

.company-section p,
.mission-section p {
  max-width: 800px;
  margin: 0.5rem auto 1rem;
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
}

.company-section strong,
.mission-section strong {
  color: #e5e7eb;
}

.company-section .section-title,
.mission-section .section-title {
  margin-bottom: 1.5rem;
}

/* Legal pages (privacy, terms, security, eula) */
.legal-page {
  padding: 4rem 0;
  min-height: 60vh;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #e5e7eb;
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e5e7eb;
}

.legal-page p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #94a3b8;
}

.legal-page ul {
  margin: 0 0 1rem 1.5rem;
  list-style: disc;
  color: #94a3b8;
}

/* Legal links in footer */
.legal-links {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 0.25rem;
}

.legal-links .dot { margin: 0 0.35rem; color: #6b7280; }

@media (max-width: 767px) {
  .legal-links { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
  .legal-links .dot { display: none; }
}
.legal-links a:hover {
  text-decoration: underline;
}

.legal-links .separator {
  color: #94a3b8;
  margin: 0 0.25rem;
}

/* Slider for founder story */
.story-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .story-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

.story-slide {
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.story-slide:hover {
  transform: translateY(-4px);
}

.story-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.story-slide p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* System Section */
.system-section {
  padding: 4rem 0;
  background: transparent;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

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

.system-card {
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: transform 0.3s;
}

.system-card:hover {
  transform: translateY(-4px);
}

.system-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #a855f7;
}

.system-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.7;
}

.system-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Waitlist Section */
.waitlist-section {
  padding: 4rem 0;
}

.waitlist-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-desc {
  color: #9ca3af;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.waitlist-form input[type='email'] {
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(6, 182, 212, 0.4);
  background: rgba(10, 10, 15, 0.7);
  color: #e5e7eb;
  flex: 1 1 250px;
  min-width: 250px;
}

.waitlist-form input[type='email']::placeholder {
  color: #6b7280;
}

.waitlist-message {
  font-size: 0.9rem;
  color: #06b6d4;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .waitlist-form button.btn { width: 100%; }
}

/* Contact Form Modal */
/* Inline Contact Section */
.contact-section { padding: 4rem 0; }
.hidden { display: none !important; }

.contact-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #a855f7;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #e5e7eb;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #06b6d4;
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 2rem 0;
  background: #0a0a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-content a {
  color: #06b6d4;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

/* Inline brand suffix for better baseline alignment */
.section-title .brand-by {
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Brain-to-Brain Section */
.brain-section {
  padding: 4rem 0;
  background: transparent;
  text-align: center;
}

.brain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

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

.brain-card {
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.brain-card:hover {
  transform: translateY(-4px);
}

.brain-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #06b6d4;
}

.brain-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.brain-visual {
  position: relative;
  margin: 3rem auto 1rem;
  max-width: 600px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brain-human,
.brain-ai {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  filter: brightness(1.15) contrast(1.1) saturate(1.05);
}

/* Assign specific images to each brain sphere */
.brain-human {
  background-image: url('images/brain_left.png');
}

.brain-ai {
  background-image: url('images/chip_right.png');
}

.brain-link {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  margin: 0 1rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  color: #0a0a0f;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.sticky-cta:hover {
  transform: scale(1.05);
}

/* Mobile performance: avoid fixed backgrounds */
@media (max-width: 767px) {
  body { background-attachment: scroll; }
}
.hidden { display: none !important; }
.contact-section { padding: 4rem 0; }
.contact-form { margin-top: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display:block; margin-bottom:0.5rem; color:#a855f7; font-weight:600; }
/* Layout variables */
:root {
  --banner-h: 0px;   /* set to promo banner height if present */
  --header-h: 120px; /* header height; tweak as needed */
}
.form-group input, .form-group textarea { width:100%; padding:0.75rem; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:8px; color:#e5e7eb; }
.form-message { margin-top:0.75rem; font-size:0.95rem; }

.ornament, .floating, .pill, .bars, .spark, .sparkline, [data-decor] { display:none !important; }
/* ===== DIAGNOSTIC STYLES (temporary) ===== */
.navbar { border-top: 3px solid #ff3b3b !important; }
.btn-primary { border-radius: 0 !important; }
/* ===== END DIAGNOSTIC ===== */
.metrics-badges { display:flex; gap:.5rem; margin-top: .75rem; flex-wrap:wrap }
.badge { background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:9999px; padding:.35rem .6rem; font-size:.85rem; color:#e5e7eb }
