:root {
  /* Colors */
  --canvas: #ffffff;
  --primary: #111111;
  --primary-active: #242424;
  --brand-accent: #3b82f6;

  --surface-soft: #f8f9fa;
  --surface-card: #f5f5f5;
  --surface-strong: #e5e7eb;
  --surface-dark: #101010;
  --surface-dark-elevated: #1a1a1a;

  --hairline: #e5e7eb;
  --hairline-soft: #f3f4f6;

  --ink: #111111;
  --body: #374151;
  --muted: #6b7280;
  --muted-soft: #898989;

  --on-primary: #ffffff;
  --on-dark: #ffffff;
  --on-dark-soft: #a1a1aa;

  /* Semantic */
  --error: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;

  /* Badges */
  --badge-orange: #fb923c;
  --badge-pink: #ec4899;
  --badge-violet: #8b5cf6;
  --badge-emerald: #34d399;

  /* Spacing */
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-section: 96px;

  /* Radii */
  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-pill: 9999px;
  --rounded-full: 50%;

  /* Type */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--canvas);
  color: var(--body);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
.display-xl,
.display-lg,
.display-md,
.display-sm,
.title-lg,
.title-md,
.title-sm {
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}

/* Simulate Cal Sans with Inter -0.04em */
.display-xl {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -2px;
}

.display-lg {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.display-md {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.display-sm {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.title-lg {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.title-md {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
}

.title-sm {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}

.body-md {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.body-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.caption {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.muted {
  color: var(--muted);
}

.muted-soft {
  color: var(--muted-soft);
}

.on-dark {
  color: var(--on-dark);
}

.ink {
  color: var(--ink);
}

/* Spacing Utilities */
.mt-xs {
  margin-top: var(--spacing-xs);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.center {
  text-align: center;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section-padding {
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
}

/* Nav */
.top-nav {
  height: 64px;
  background-color: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}

.top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--ink);
}

/* Buttons */
.button-primary {
  background-color: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  height: 40px;
  border-radius: var(--rounded-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.button-primary:hover,
.button-primary:active {
  background-color: var(--primary-active);
}

.button-primary:active {
  transform: scale(0.98);
}

.button-secondary {
  background-color: var(--canvas);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  height: 40px;
  border-radius: var(--rounded-md);
  border: 1px solid var(--hairline);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.15s ease;
}

.button-secondary:hover {
  border-color: var(--ink);
}

/* Inputs */
.text-input {
  background-color: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  padding: 10px 14px;
  height: 40px;
  border-radius: var(--rounded-md);
  border: 1px solid var(--hairline);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  width: 100%;
  max-width: 300px;
}

.text-input:focus {
  border-color: var(--ink);
}

/* Nav Pill Group */
.nav-pill-group {
  background-color: var(--surface-soft);
  padding: 6px;
  border-radius: var(--rounded-pill);
  display: inline-flex;
  gap: 4px;
}

.center-pill {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: fit-content;
}

.category-tab {
  padding: 8px 14px;
  border-radius: var(--rounded-md);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-tab:hover {
  color: var(--ink);
}

.category-tab-active {
  background-color: var(--canvas);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Hero */
.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.waitlist-form {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.hero-artifact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* App Mockup Card */
.hero-app-mockup-card {
  background-color: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-xl);
  padding: var(--spacing-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  width: 100%;
  max-width: 400px;
}

.mockup-img {
  width: 100%;
  height: auto;
  border-radius: var(--rounded-md);
  display: block;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.feature-card {
  background-color: var(--surface-card);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  transition: transform 0.2s ease;
}

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

.feature-img {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: var(--rounded-md);
  margin-bottom: var(--spacing-sm);
  border: 1px solid var(--hairline);
}

.feature-img.fit-contain {
  object-fit: contain;
  background-color: var(--surface-strong);
  /* Slight background to frame the pdf nicely */
}

/* CTA Band */
.cta-band-light {
  background-color: var(--surface-card);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xxl);
  text-align: center;
}

.center-form {
  justify-content: center;
}

/* Footer */
.footer {
  background-color: var(--surface-dark);
  color: var(--on-dark-soft);
  padding-top: 64px;
  padding-bottom: var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.logo-inverse {
  font-weight: 600;
  font-size: 20px;
  color: var(--on-dark);
  letter-spacing: -0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a {
  color: var(--on-dark-soft);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--on-dark);
}

.footer-bottom {
  border-top: 1px solid var(--surface-dark-elevated);
  padding-top: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .display-xl {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .display-lg {
    font-size: 32px;
    letter-spacing: -1px;
  }

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

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

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form .text-input {
    max-width: 100%;
  }

  .nav-links {
    display: none;
  }
}

/* Image Hover Notice */
.img-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}

.img-wrapper img {
  transition: filter 0.3s ease;
  display: block;
  width: 100%;
  height: auto;
}

.img-wrapper:hover img {
  filter: blur(4px);
}

.hover-notice {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 8px;
  pointer-events: none;
  /* So it doesn't interfere with click */
}

.img-wrapper:hover .hover-notice {
  opacity: 1;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  white-space: nowrap;
  background-color: var(--primary);
  color: var(--on-primary);
  text-align: center;
  border-radius: 4px;
  padding: 4px 8px;
  position: absolute;
  z-index: 1;
  top: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--primary) transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Scroll target spacing for sticky header */
#join,
#features,
#pricing,
#hero {
  scroll-margin-top: 88px;
}

/* Lightbox Modal & Zoom */
#lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#lightbox-img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  cursor: zoom-in;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center center;
  user-select: none;
}

#lightbox-img.zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}

/* Pricing Section Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  align-items: stretch;
}

.pricing-card {
  background-color: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08), 0 8px 16px -8px rgba(0, 0, 0, 0.05);
  border-color: var(--brand-accent);
}

.pricing-card.popular {
  border: 2px solid var(--brand-accent);
  background-color: var(--canvas);
  box-shadow: 0 20px 35px -10px rgba(59, 130, 246, 0.12), 0 10px 20px -8px rgba(59, 130, 246, 0.06);
}

.pricing-card.popular:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px -10px rgba(59, 130, 246, 0.18), 0 12px 24px -8px rgba(59, 130, 246, 0.1);
}

.badge-popular {
  position: absolute;
  top: -12px;
  right: var(--spacing-lg);
  background-color: var(--brand-accent);
  color: var(--on-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--rounded-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.pricing-header {
  margin-bottom: var(--spacing-md);
}

.pricing-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: var(--spacing-xs);
  min-height: 44px;
  line-height: 1.4;
}

.pricing-price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--hairline-soft);
  padding-bottom: var(--spacing-md);
}

.pricing-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  align-self: flex-start;
  margin-top: 2px;
  margin-right: 2px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1.5px;
}

.pricing-period {
  font-size: 14px;
  color: var(--muted);
  margin-left: var(--spacing-xxs);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex-grow: 1;
}

.pricing-feature-item {
  font-size: 14px;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  line-height: 1.4;
}

.pricing-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-button {
  width: 100%;
  padding: var(--spacing-sm);
  border-radius: var(--rounded-md);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  border: 1px solid var(--hairline);
  cursor: not-allowed;
  background-color: var(--surface-strong);
  color: var(--muted);
  transition: all 0.2s ease;
}

.pricing-button:disabled {
  opacity: 0.7;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.popular {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .pricing-card.popular {
    grid-column: span 1;
  }
}

/* ============================================================
   Trust Band — value proposition bar below hero
   ============================================================ */
.trust-band {
  background-color: var(--surface-soft);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  padding: var(--spacing-lg) 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xxl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.2px;
}

.trust-item svg {
  color: var(--brand-accent);
  flex-shrink: 0;
}

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

/* ============================================================
   How It Works — Badge
   ============================================================ */
.hiw-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--rounded-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   How It Works — Step Cards
   ============================================================ */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step-card {
  display: grid;
  grid-template-columns: 48px 1fr 320px;
  gap: var(--spacing-xl);
  align-items: start;
  padding: var(--spacing-xxl) 0;
  border-bottom: 1px solid var(--hairline-soft);
  position: relative;
}

.step-card:last-child {
  border-bottom: none;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--rounded-full);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: sticky;
  top: 88px;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-details {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.step-details li {
  font-size: 14px;
  color: var(--body);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.step-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: var(--rounded-full);
  background-color: var(--brand-accent);
}

.step-visual {
  border-radius: var(--rounded-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 88px;
}

.step-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   Why It Matters — Icon Grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.why-card {
  background-color: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-md);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.why-icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand-accent);
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-item:first-child {
  border-top: 1px solid var(--hairline);
}

.faq-question {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  padding: var(--spacing-lg) 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: var(--spacing-md);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-question:hover {
  color: var(--brand-accent);
}

.faq-answer {
  padding: 0 0 var(--spacing-lg) 0;
}

.faq-answer p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
}

/* ============================================================
   Responsive — How It Works Page
   ============================================================ */
@media (max-width: 1024px) {
  .step-card {
    grid-template-columns: 48px 1fr;
  }

  .step-visual {
    grid-column: 1 / -1;
    max-width: 320px;
    position: static;
  }

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

@media (max-width: 768px) {
  .step-card {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-xl) 0;
  }

  .step-number {
    position: static;
  }

  .step-visual {
    max-width: 100%;
    position: static;
  }

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

  .trust-grid {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .faq-question {
    font-size: 15px;
  }

  .feature-images {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .feature-images {
    grid-template-columns: 1fr !important;
  }
}

/* Target Audience 'For Whom' Section */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.audience-card {
  background-color: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-xl);
  padding: var(--spacing-xl);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.audience-icon-wrapper {
  background-color: var(--hairline);
  color: var(--primary);
  border-radius: var(--rounded-lg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.audience-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.audience-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}