/* ============================================================
   VoiceClaw — Landing Page Design System
   ============================================================ */

/* 1. Reset & CSS Variables
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  /* Brand colors — derived from app icon */
  --primary: #F5A623;          /* Golden-yellow (icon bg) */
  --primary-light: #FFBC42;
  --primary-dark: #E09000;
  --accent: #E8553A;           /* Coral-red (lobster body) */
  --accent-light: #FF6F55;
  --teal: #4BBBAD;             /* Teal (headphones) */
  --teal-light: #6DD5C8;

  /* Backgrounds */
  --bg-deep: #050510;
  --bg-surface: #0A0A1A;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: var(--primary);

  /* Spacing */
  --section-spacing: 120px;
  --container-width: 1140px;
  --nav-height: 64px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* 2. Ambient Background (Floating Gradient Orbs)
   ------------------------------------------------------------ */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: float-orb 20s ease-in-out infinite;
}

.ambient-bg .orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.ambient-bg .orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -15%;
  left: -10%;
  animation-delay: -7s;
}

.ambient-bg .orb-3 {
  width: 350px;
  height: 350px;
  background: var(--teal);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -14s;
  opacity: 0.2;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(30px, -40px) scale(1.05); }
  50%      { transform: translate(-20px, 20px) scale(0.95); }
  75%      { transform: translate(15px, 30px) scale(1.02); }
}


/* 3. Navigation
   ------------------------------------------------------------ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  background: rgba(5, 5, 16, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition-fast);
}


/* 4. Hero Section
   ------------------------------------------------------------ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.hero-content {
  max-width: 680px;
}

.hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  margin: 0 auto 40px;
  animation: icon-float 4s ease-in-out infinite;
  box-shadow:
    0 20px 60px rgba(245, 166, 35, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--teal));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Platform pills */
.platform-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.platform-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.platform-pill svg {
  width: 18px;
  height: 18px;
}

/* App Store badges */
.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--text-primary);
  color: var(--bg-deep);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  color: var(--bg-deep);
}

.store-badge svg {
  width: 22px;
  height: 22px;
}


/* 5. Features Section
   ------------------------------------------------------------ */
.features-section {
  position: relative;
  z-index: 1;
  padding: var(--section-spacing) 24px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  background: rgba(245, 166, 35, 0.1);
}

.feature-card:nth-child(2) .feature-icon { background: rgba(232, 85, 58, 0.1); }
.feature-card:nth-child(3) .feature-icon { background: rgba(75, 187, 173, 0.1); }
.feature-card:nth-child(4) .feature-icon { background: rgba(99, 102, 241, 0.1); }
.feature-card:nth-child(5) .feature-icon { background: rgba(245, 166, 35, 0.1); }
.feature-card:nth-child(6) .feature-icon { background: rgba(52, 199, 89, 0.1); }

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* 6. CTA Section
   ------------------------------------------------------------ */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 0 24px var(--section-spacing);
}

.cta-card {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 72px 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  background: linear-gradient(135deg,
    rgba(245, 166, 35, 0.12),
    rgba(232, 85, 58, 0.08),
    rgba(75, 187, 173, 0.06)
  );
  border: 1px solid rgba(245, 166, 35, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-card h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-card p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.4);
  color: white;
}

.cta-button svg {
  width: 20px;
  height: 20px;
}


/* 7. Footer
   ------------------------------------------------------------ */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}

.footer-top {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
}


/* 8. Legal Pages (Terms / Privacy)
   ------------------------------------------------------------ */
.legal-page {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.legal-content {
  max-width: 740px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.legal-content .legal-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary);
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}


/* 9. Responsive Breakpoints
   ------------------------------------------------------------ */

/* Tablet */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 44px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-spacing: 80px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  /* Mobile menu */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-icon {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    margin-bottom: 32px;
  }

  .platform-pills {
    flex-wrap: wrap;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .cta-card {
    padding: 48px 28px;
  }

  .cta-card h2 {
    font-size: 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-content h1 {
    font-size: 30px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
  }
}


/* 10. Setup Guide Page
   ------------------------------------------------------------ */
.setup-page {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.setup-content {
  max-width: 740px;
  margin: 0 auto;
}

.setup-header {
  text-align: center;
  margin-bottom: 56px;
}

.setup-header h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.setup-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* Step Cards */
.step-card {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  position: relative;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(245, 166, 35, 0.12);
  border: 2px solid rgba(245, 166, 35, 0.25);
  flex-shrink: 0;
}

.step-number-done {
  background: rgba(52, 199, 89, 0.15);
  border-color: rgba(52, 199, 89, 0.3);
  color: #34C759;
  font-size: 18px;
}

.step-connector {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: linear-gradient(180deg, rgba(245, 166, 35, 0.25), rgba(245, 166, 35, 0.05));
  margin-top: 8px;
}

.step-final .step-connector {
  display: none;
}

.step-body {
  flex: 1;
  padding-bottom: 32px;
}

.step-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  line-height: 40px; /* align with step number */
}

.step-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.step-hint {
  font-size: 14px !important;
  color: var(--text-muted) !important;
  margin-top: 4px;
}

/* Command Blocks */
.command-block {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.command-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.command-prompt {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--text-secondary);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  color: var(--primary);
}

.copy-btn svg {
  flex-shrink: 0;
}

.command-block pre {
  padding: 14px 16px;
  margin: 0;
  overflow-x: auto;
}

.command-block code {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', Menlo, Consolas, monospace;
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.5;
}

/* Terminal Output */
.terminal-output {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
  overflow-x: auto;
}

.terminal-output pre {
  margin: 0;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.terminal-interactive pre {
  color: var(--text-secondary);
}

.term-highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Token display in terminal */
.token-slot {
  color: var(--text-muted);
  letter-spacing: 2px;
}

.token-slot.token-filled {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(245, 166, 35, 0.4);
}

/* Token info box */
.token-info-box {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  margin-top: 4px;
  transition: all var(--transition-base);
}

.token-info-active {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.08);
  animation: token-pulse 3s ease-in-out infinite;
}

@keyframes token-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(245, 166, 35, 0.06); }
  50%      { box-shadow: 0 0 36px rgba(245, 166, 35, 0.15); }
}

.token-info-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.token-info-text {
  flex: 1;
}

.token-info-text p {
  font-size: 14px;
  margin-bottom: 10px;
}

.token-display-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.token-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.token-value {
  font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 4px;
  text-shadow: 0 0 12px rgba(245, 166, 35, 0.3);
}

.copy-btn-sm {
  padding: 3px 8px;
}

/* Nav active link */
.nav-active {
  color: var(--primary) !important;
}

/* Setup page responsive */
@media (max-width: 768px) {
  .setup-header h1 {
    font-size: 30px;
  }

  .step-card {
    gap: 16px;
  }

  .step-number {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .step-body h2 {
    font-size: 19px;
    line-height: 34px;
  }

  .command-block code {
    font-size: 13px;
  }

  .token-value {
    font-size: 16px;
    letter-spacing: 3px;
  }
}

@media (max-width: 400px) {
  .step-indicator {
    display: none;
  }

  .step-card {
    gap: 0;
  }

  .step-body h2::before {
    content: attr(data-step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(245, 166, 35, 0.12);
    margin-right: 10px;
    vertical-align: middle;
  }
}
