h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

/* WordPress admin bar: push fixed header below the 32px admin bar */
body.admin-bar header {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px !important;
  }
}

/* Constrain the logo anchor so h-full on img elements resolves correctly */
header .site-logo {
  max-height: 100%;
  width: auto;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background: #644392;
  border-radius: 3px;
}

/* Glow pulse on CTA */
@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 134, 225, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(255, 134, 225, 0.7);
  }
}

.btn-glow {
  animation: glow-pulse 2.8s ease-in-out infinite;
}

/* Step connector line */
.step-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, #644392, transparent);
}

/* Competitor card */
.comp-detail {
  display: none;
}

.comp-card:hover {
  background-color: rgba(100, 67, 146, 0.14);
  border-color: rgba(100, 67, 146, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 67, 146, 0.22);
}

.comp-card.active {
  border-color: #644392;

  & .comp-detail {
    display: block;
  }
}

/* Misc */
.table-wrap {
  overflow-x: auto;
}

.grad-text {
  background: linear-gradient(135deg, #FF86E1 0%, #89BCFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero cards */
.hero-cards-wrap {
  perspective: 1200px;
}

.hero-card {
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, z-index 0s;
  will-change: transform;
}

.hero-card-left {
  transform: rotate(-3deg) translateY(30px);

  &:hover {
    transform: rotate(-1deg) translateY(-5px) scale(1.04);
    box-shadow: 0 28px 56px rgba(100, 67, 146, 0.45);
  }
}

.hero-card-right {
  transform: rotate(3deg) translateY(14px);

  &:hover {
    transform: rotate(1deg) translateY(-5px) scale(1.04);
    box-shadow: 0 28px 56px rgba(100, 67, 146, 0.45);
  }
}

.hero-card-center {
  transform: translateX(-50%);

  &:hover {
    transform: translateX(-50%) translateY(-7px) scale(1.06);
    box-shadow: 0 32px 64px rgba(100, 67, 146, 0.55);
  }
}

/* Step image hover (composes with Tailwind transforms via standalone properties) */
.step-img {
  transition: translate 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              scale 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.35s ease,
              filter 0.35s ease;
  will-change: translate, scale;
}

.step-img:hover {
  translate: 0 -6px;
  scale: 1.04;
  box-shadow: 0 24px 48px rgba(100, 67, 146, 0.45) !important;
  filter: brightness(1.04);
}

/* Step decorative shapes */
.step-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Competitor logos */
.comp-logo {
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

/* Site logo variants */
.site-logo-light {
  display: none;
}

.site-logo-dark {
  display: block;
}

/* Theme toggle icons */
html:not(.light) #icon-sun {
  display: none;
}

/* Glow backgrounds (dark mode defaults) */
.bg-hero-glow{
  background-image: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(100, 67, 146, 0.35) 0%, transparent 70%);
}

.bg-how-glow {
  background-image: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(100, 67, 146, 0.15) 0%, transparent 70%);
}

/* ════════════════════════════════════════
   POST CONTENT TYPOGRAPHY  (.sw-content)
   ════════════════════════════════════════ */
.sw-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.sw-content > * + * {
  margin-top: 1.5em;
}

.sw-content h1,
.sw-content h2,
.sw-content h3,
.sw-content h4,
.sw-content h5,
.sw-content h6 {
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.sw-content h1 { font-size: 2.25rem; margin-top: 2.5em; }
.sw-content h2 { font-size: 1.75rem; margin-top: 2.25em; }
.sw-content h3 { font-size: 1.375rem; margin-top: 2em; }
.sw-content h4 { font-size: 1.125rem; margin-top: 1.75em; }

.sw-content h2 + *,
.sw-content h3 + *,
.sw-content h4 + * {
  margin-top: 0.75em;
}

.sw-content a {
  color: #89BCFF;
  text-decoration: underline;
  text-decoration-color: rgba(137, 188, 255, 0.3);
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.sw-content a:hover {
  color: #FF86E1;
  text-decoration-color: rgba(255, 134, 225, 0.5);
}

.sw-content strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.sw-content em {
  font-style: italic;
}

.sw-content blockquote {
  border-left: 3px solid #644392;
  padding: 1rem 1.5rem;
  margin-left: 0;
  margin-right: 0;
  background: rgba(100, 67, 146, 0.08);
  border-radius: 0 0.75rem 0.75rem 0;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

.sw-content blockquote p {
  margin-top: 0;
}

.sw-content blockquote cite {
  display: block;
  margin-top: 0.75em;
  font-size: 0.8125rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.4);
}

.sw-content ul,
.sw-content ol {
  padding-left: 1.5em;
}

.sw-content ul {
  list-style-type: disc;
}

.sw-content ol {
  list-style-type: decimal;
}

.sw-content li {
  margin-top: 0.5em;
}

.sw-content li::marker {
  color: #644392;
}

.sw-content code {
  font-size: 0.875em;
  background: rgba(100, 67, 146, 0.18);
  border: 1px solid rgba(100, 67, 146, 0.3);
  padding: 0.15em 0.4em;
  border-radius: 0.375rem;
  color: #FF86E1;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.sw-content pre {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.7;
}

.sw-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: inherit;
}

.sw-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(100, 67, 146, 0.4), transparent);
  margin: 3rem 0;
}

.sw-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sw-content figure {
  margin: 2em 0;
}

.sw-content figcaption {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.75em;
  font-style: italic;
}

.sw-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.sw-content table th {
  text-align: left;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1rem;
  border-bottom: 2px solid rgba(100, 67, 146, 0.3);
  background: rgba(100, 67, 146, 0.08);
}

.sw-content table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
}

.sw-content table tr:hover td {
  background: rgba(100, 67, 146, 0.06);
}

.sw-content .wp-block-image,
.sw-content .wp-block-gallery {
  margin-top: 2em;
  margin-bottom: 2em;
}

.sw-content .wp-block-separator {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(100, 67, 146, 0.4), transparent);
}

/* ════════════════════════════════════════
   POST CONTENT — LIGHT MODE OVERRIDES
   ════════════════════════════════════════ */
html.light .sw-content {
  color: rgba(18, 8, 42, 0.7);
}

html.light .sw-content h1,
html.light .sw-content h2,
html.light .sw-content h3,
html.light .sw-content h4,
html.light .sw-content h5,
html.light .sw-content h6 {
  color: #12082a;
}

html.light .sw-content a {
  color: #2563c7;
  text-decoration-color: rgba(37, 99, 199, 0.3);
}

html.light .sw-content a:hover {
  color: #b5259e;
  text-decoration-color: rgba(181, 37, 158, 0.4);
}

html.light .sw-content strong {
  color: rgba(18, 8, 42, 0.88);
}

html.light .sw-content blockquote {
  background: rgba(100, 67, 146, 0.05);
  color: rgba(18, 8, 42, 0.6);
}

html.light .sw-content blockquote cite {
  color: rgba(18, 8, 42, 0.35);
}

html.light .sw-content code {
  background: rgba(100, 67, 146, 0.08);
  border-color: rgba(100, 67, 146, 0.15);
  color: #9333ea;
}

html.light .sw-content pre {
  background: rgba(18, 8, 42, 0.04);
  border-color: rgba(18, 8, 42, 0.1);
}

html.light .sw-content pre code {
  color: rgba(18, 8, 42, 0.75);
}

html.light .sw-content img {
  border-color: rgba(18, 8, 42, 0.08);
}

html.light .sw-content figcaption {
  color: rgba(18, 8, 42, 0.4);
}

html.light .sw-content table th {
  color: rgba(18, 8, 42, 0.8);
  border-bottom-color: rgba(100, 67, 146, 0.2);
  background: rgba(100, 67, 146, 0.05);
}

html.light .sw-content table td {
  color: rgba(18, 8, 42, 0.6);
  border-bottom-color: rgba(18, 8, 42, 0.06);
}

html.light .sw-content table tr:hover td {
  background: rgba(100, 67, 146, 0.03);
}

html.light .sw-content li::marker {
  color: #644392;
}

/* ════════════════════════════════════════
   LIGHT MODE OVERRIDES
   ════════════════════════════════════════ */
html.light {
  color-scheme: light;

  body {
    background-color: #f5f3fb;
    color: #12082a;
  }

  ::-webkit-scrollbar-track {
    background: #e4ddf5;
  }

  .hero-cards-fade {
    --hero-fade-color: #f5f3fb;
  }

  .comp-logo {
    filter: brightness(0);
  }

  .comp-card:hover {
    background-color: rgba(100, 67, 146, 0.09);
    border-color: rgba(100, 67, 146, 0.5);
    box-shadow: 0 6px 20px rgba(100, 67, 146, 0.14);
  }

  #icon-moon {
    display: none;
  }

  .site-logo-dark {
    display: none;
  }

  .site-logo-light {
    display: block;
  }

  /* Nav */
  header {
    background-color: rgba(245, 243, 251, 0.88) !important;
    border-bottom-color: rgba(18, 8, 42, 0.08) !important;

    nav a {
      color: rgba(18, 8, 42, 0.55);

      &:hover {
        color: #12082a;
      }
    }
  }

  #theme-toggle {
    border-color: rgba(18, 8, 42, 0.15) !important;
    color: rgba(18, 8, 42, 0.55) !important;

    &:hover {
      border-color: rgba(18, 8, 42, 0.3) !important;
      color: #12082a !important;
    }
  }

  /* Text */
  .grad-text {
    background-image: linear-gradient(135deg, #c0359e 0%, #3a7bd5 100%);
  }

  .text-brand-blue {
    color: #2563c7 !important;
  }

  .text-brand-pink {
    color: #b5259e !important;
  }

  .text-yellow-400 {
    color: #b45309 !important;
  }

  .text-green-400 {
    color: #15803d !important;
  }

  /* .text-white {
    color: #12082a !important;
  } */

  [class*="bg-brand-purple"] .text-white,
  [class*="bg-gradient-to-r"] .text-white,
  .text-white.bg-brand-purple,
  a.text-white[class*="bg-brand"],
  a.text-white[class*="bg-gradient"],
  button.text-white[class*="bg-gradient"] {
    color: #ffffff;
  }

  .text-white\/80 {
    color: rgba(18, 8, 42, 0.85) !important;
  }

  .text-white\/75 {
    color: rgba(18, 8, 42, 0.78) !important;
  }

  .text-white\/70 {
    color: rgba(18, 8, 42, 0.72) !important;
  }

  .text-white\/65 {
    color: rgba(18, 8, 42, 0.68) !important;
  }

  .text-white\/60 {
    color: rgba(18, 8, 42, 0.62) !important;
  }

  .text-white\/55 {
    color: rgba(18, 8, 42, 0.57) !important;
  }

  .text-white\/50 {
    color: rgba(18, 8, 42, 0.52) !important;
  }

  .text-white\/40 {
    color: rgba(18, 8, 42, 0.42) !important;
  }

  .text-white\/35 {
    color: rgba(18, 8, 42, 0.38) !important;
  }

  .text-white\/30 {
    color: rgba(18, 8, 42, 0.32) !important;
  }

  .text-white\/25 {
    color: rgba(18, 8, 42, 0.27) !important;
  }

  .text-white\/20 {
    color: rgba(18, 8, 42, 0.22) !important;
  }

  .hover\:text-white:hover {
    color: #12082a !important;
  }

  .bg-brand-dark-2 {
    background-color: #f5f3fb !important;
  }

  .bg-brand-dark-2\/80 {
    background-color: rgba(245, 243, 251, 0.88) !important;
  }

  .bg-white\/2 {
    background-color: rgba(18, 8, 42, 0.02) !important;
  }

  .bg-white\/3 {
    background-color: rgba(18, 8, 42, 0.03) !important;
  }

  .bg-white\/5 {
    background-color: rgba(18, 8, 42, 0.05) !important;
  }

  .bg-white\/6 {
    background-color: rgba(18, 8, 42, 0.06) !important;
  }

  .bg-white\/10 {
    background-color: rgba(18, 8, 42, 0.08) !important;
  }

  .bg-white\/20 {
    background-color: rgba(18, 8, 42, 0.14) !important;
  }

  .bg-brand-purple\/20 {
    background-color: rgba(100, 67, 146, 0.10) !important;
  }

  .bg-brand-purple\/10 {
    background-color: rgba(100, 67, 146, 0.07) !important;
  }

  .bg-gradient-to-r.from-brand-purple\/30 {
    background-image: linear-gradient(to right, rgba(100, 67, 146, 0.12), rgba(255, 134, 225, 0.08)) !important;
  }

  .hover\:bg-white\/2:hover {
    background-color: rgba(18, 8, 42, 0.025) !important;
  }

  .hover\:bg-white\/6:hover {
    background-color: rgba(18, 8, 42, 0.06) !important;
  }

  .hover\:bg-white\/20:hover {
    background-color: rgba(18, 8, 42, 0.14) !important;
  }

  /* Borders */
  .border-white\/10 {
    border-color: rgba(18, 8, 42, 0.10) !important;
  }

  .border-white\/8 {
    border-color: rgba(18, 8, 42, 0.08) !important;
  }

  .border-white\/5,
  .border-r.border-white\/5 {
    border-color: rgba(18, 8, 42, 0.05) !important;
  }

  .border-brand-purple\/30 {
    border-color: rgba(100, 67, 146, 0.25) !important;
  }

  .border-brand-pink\/30 {
    border-color: rgba(181, 37, 158, 0.3) !important;
  }

  /* Hero grid */
  .hero-grid {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2260%22%20height%3D%2260%22%3E%3Cpath%20d%3D%22M60%200H0v60%22%20fill%3D%22none%22%20stroke%3D%22rgba(18%2C8%2C42%2C0.06)%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E") !important;
    opacity: 1 !important;
  }

  /* Steps */
  .step-num {
    color: rgba(100, 67, 146, 0.12) !important;
  }

  .step-preview {
    &>.step-grad {
      background: linear-gradient(to bottom right, rgba(100, 67, 146, 0.18), rgba(245, 243, 251, 0.9), rgba(103, 89, 124, 0.12)) !important;
    }

    &>.step-grid {
      background-image: linear-gradient(rgba(18, 8, 42, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 8, 42, 0.05) 1px, transparent 1px) !important;
    }
  }

  /* Input */
  input[type="url"] {
    background-color: rgba(18, 8, 42, 0.04) !important;
    border-color: rgba(18, 8, 42, 0.15) !important;
    color: #12082a !important;

    &::placeholder {
      color: rgba(18, 8, 42, 0.3) !important;
    }

    &:focus {
      border-color: #644392 !important;
    }
  }

  /* Competitor panel */
  #comp-panel {
    background-color: rgba(100, 67, 146, 0.05) !important;
  }



  #comp-panel-name {
    color: #12082a !important;
  }

  /* Table */
  table {
    thead tr {
      background-color: rgba(18, 8, 42, 0.05) !important;
    }

    thead th {
      color: rgba(18, 8, 42, 0.5) !important;
    }

    tbody tr:hover {
      background-color: rgba(18, 8, 42, 0.025) !important;
    }

    td {
      color: rgba(18, 8, 42, 0.7) !important;
    }

    td.text-white\/25 {
      color: rgba(18, 8, 42, 0.28) !important;
    }

    /* ✗ marks */
  }

  /* Footer */
  footer {
    border-top-color: rgba(18, 8, 42, 0.08) !important;

    p {
      color: rgba(18, 8, 42, 0.2) !important;
    }
  }

  /* Speech bubble: keep dark in light mode */
  .hero-speech-bubble {
    background: #333 !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4) !important;

    .speech-tail-outer {
      border-bottom-color: rgba(0, 0, 0, 0.25) !important;
    }

    .speech-tail-inner {
      border-bottom-color: #333 !important;
    }

    .speech-bubble-inner {
      background: linear-gradient(135deg, #444 0%, #222 100%) !important;

      .text-purple-800\/80,
      .text-purple-900,
      .text-purple-900\/70 {
        color: rgba(255, 255, 255, 0.95) !important;
      }

      .text-purple-800\/50 {
        color: rgba(255, 255, 255, 0.5) !important;
      }

      .text-green-700 {
        color: #86efac !important;
      }

      .text-brand-pink {
        color: #FF86E1 !important;
      }

      .text-brand-blue {
        color: #89BCFF !important;
      }

      [class*="bg-purple-100"] {
        background-color: rgba(255, 255, 255, 0.08) !important;
        border-color: rgba(255, 255, 255, 0.12) !important;

        .text-purple-900 {
          color: rgba(255, 255, 255, 0.9) !important;
        }
      }

      .bg-green-500\/15 {
        background-color: rgba(34, 197, 94, 0.2) !important;
        border-color: rgba(34, 197, 94, 0.35) !important;
      }

      .bg-purple-200\/60 {
        background-color: rgba(255, 255, 255, 0.1) !important;

        .h-full {
          background: linear-gradient(90deg, #a78bfa, #FF86E1) !important;
        }
      }
    }
  }
}

/* ── Soon Modal ─────────────────────────────────────────────────── */
.soon-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: soon-fade-in 0.2s ease;
}

.soon-modal-overlay.hidden {
  display: none;
}

@keyframes soon-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.soon-modal-box {
  position: relative;
  background: #0f0f1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 640px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.25), 0 25px 50px rgba(0, 0, 0, 0.6);
  animation: soon-slide-up 0.25s ease;
}

@keyframes soon-slide-up {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.soon-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s;
}

.soon-modal-close:hover {
  color: rgba(255, 255, 255, 0.8);
}

.soon-modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(255, 134, 225, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soon-modal-icon svg {
  width: 26px;
  height: 26px;
  stroke: #a78bfa;
}

.soon-modal-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #a78bfa, #FF86E1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.soon-modal-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.soon-modal-body strong {
  color: #fff;
  font-weight: 700;
}

.soon-modal-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.soon-modal-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.soon-modal-input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s;
}

.soon-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.soon-modal-input:focus {
  border-color: #a78bfa;
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.2);
}

.soon-modal-btn {
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(90deg, #8b5cf6, #FF86E1);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.soon-modal-btn:hover {
  opacity: 0.88;
}

.soon-modal-fine {
  margin-top: 0.875rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}
