* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --purple: #7C3AED;
  --purple-light: #8B5CF6;
  --purple-pale: #F5F3FF;
  --purple-mid: #EDE9FE;
  --text: #0F0D1A;
  --text-2: #4B4869;
  --text-3: #9491AB;
  --bg: #FAFAF8;
  --bg-2: #FFFFFF;
  --surface: #F0EDF8;
  --border: #E8E4F2;
  --border-2: #D4CEEC;
  --green: #059669;
  --amber: #D97706;
  --red: #DC2626;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(90, 60, 180, .06), 0 1px 2px rgba(90, 60, 180, .04);
  --shadow: 0 4px 16px rgba(90, 60, 180, .08), 0 1px 4px rgba(90, 60, 180, .06);
  --shadow-lg: 0 12px 40px rgba(90, 60, 180, .12), 0 4px 12px rgba(90, 60, 180, .08);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-family: var(--font-body);
}

.app-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 24px;
}
/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px
}
@media (min-width: 768px) {
  .navbar {
    padding: 18px 40px;
  }
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--purple);
  letter-spacing: -.5px;
  flex-shrink: 0
}

.logo span {
  color: var(--text)
}

.nav-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer
}

.nav-search-icon {
  color: var(--text-3);
  font-size: 16px;
  flex-shrink: 0
}

.nav-search-text {
  font-size: 13px;
  color: var(--text-3)
}

.nav-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0
}

.nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-2);
  font-size: 17px;
  position: relative
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg)
}

/* HERO */
.hero {
  padding: 24px 16px 20px;
  position: relative;
  overflow: hidden
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-mid);
  color: var(--purple);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 14px
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite
}
.hero-content {
  max-width: 580px;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .6;
    transform: scale(.8)
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.8px;
  color: var(--text);
  margin-bottom: 10px
}

.hero h1 em {
  font-style: normal;
  color: var(--purple)
}

.hero-sub {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 320px
}

.hero-ctas {
  display: flex;
  gap: 10px;
  margin-bottom: 20px
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body)
}

.btn-secondary {
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body)
}

.hero-trust {
  display: flex;
  gap: 16px
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--text-2)
}

.trust-chip .icon {
  font-size: 14px
}

.hero-card-stack {
  position: relative;
  margin: 0 -16px;
  padding: 16px;
  overflow: hidden
}

.product-hero-card {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  transform: translateY(0);
  transition: transform .3s ease
}

.product-hero-card:nth-child(2) {
  transform: translateY(6px) scale(.97);
  opacity: .7;
  margin-top: -60px;
  position: relative;
  z-index: -1
}

.phc-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px
}

.phc-content {
  flex: 1;
  min-width: 0
}

.phc-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.phc-creator {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 4px
}

.phc-row {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.phc-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--purple);
  font-family: var(--font-display)
}

.phc-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--text-3)
}

.stars {
  color: #F59E0B;
  font-size: 12px
}

.phc-badge {
  background: var(--purple-mid);
  color: var(--purple);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 600
}

/* SECTION HEADERS */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 14px
}

.section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.4px
}

.section-link {
  font-size: 13px;
  color: var(--purple);
  font-weight: 600;
  cursor: pointer
}

/* =========================================
   MODERN CATEGORY BROWSING
========================================= */

.cats-section {
  padding: 36px 0 20px;
  position: relative;
}

.cats-sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* =========================================
   SCROLL CONTAINER
========================================= */

.cats-scroll {
  display: flex;
  gap: 14px;

  overflow-x: auto;
  overflow-y: visible;

  padding: 10px 16px 8px;

  scrollbar-width: none;
  -ms-overflow-style: none;

  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.cats-scroll::-webkit-scrollbar {
  display: none;
}

/* =========================================
   CATEGORY TILE
========================================= */

.cat-card {
  position: relative;

  width: 185px;
  min-height: 88px;

  flex-shrink: 0;
  scroll-snap-align: start;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px;

  border-radius: 24px;

  background:
    linear-gradient(to bottom right,
      rgba(255,255,255,.92),
      rgba(255,255,255,.76));

  border: 1px solid rgba(255,255,255,.45);

  box-shadow:
    0 10px 30px rgba(15,23,42,.05);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;

  cursor: pointer;

  overflow: hidden;
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(255,255,255,.18),
      transparent 45%);

  pointer-events: none;
}

.cat-card:hover {
  transform: translateY(-4px);

  border-color: rgba(124,58,237,.14);

  box-shadow:
    0 18px 40px rgba(15,23,42,.08),
    0 10px 24px rgba(124,58,237,.06);
}

/* featured active category */

.cat-card.active {
  background:
    linear-gradient(135deg,
      rgba(124,58,237,.10),
      rgba(236,72,153,.08)),
    rgba(255,255,255,.88);

  border-color:
    rgba(124,58,237,.16);
}

/* =========================================
   ICON WRAP
========================================= */

.cat-icon-wrap {
  position: relative;

  width: 58px;
  height: 58px;

  border-radius: 18px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;

  border: 1px solid rgba(255,255,255,.55);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

/* layered gradients */

.cat-icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    linear-gradient(135deg,
      rgba(255,255,255,.45),
      transparent 55%);

  pointer-events: none;
}

/* individual category tones */

.cat-icon-wrap.reels {
  background:
    linear-gradient(135deg,
      rgba(124,58,237,.16),
      rgba(99,102,241,.12));
}

.cat-icon-wrap.canva {
  background:
    linear-gradient(135deg,
      rgba(236,72,153,.14),
      rgba(244,114,182,.10));
}

.cat-icon-wrap.ai {
  background:
    linear-gradient(135deg,
      rgba(16,185,129,.16),
      rgba(52,211,153,.10));
}

.cat-icon-wrap.luts {
  background:
    linear-gradient(135deg,
      rgba(245,158,11,.16),
      rgba(251,191,36,.10));
}

.cat-icon-wrap.social {
  background:
    linear-gradient(135deg,
      rgba(59,130,246,.16),
      rgba(96,165,250,.10));
}

.cat-icon-wrap.courses {
  background:
    linear-gradient(135deg,
      rgba(139,92,246,.16),
      rgba(168,85,247,.10));
}

.cat-icon-wrap.web {
  background:
    linear-gradient(135deg,
      rgba(14,165,233,.16),
      rgba(56,189,248,.10));
}

.cat-icon-wrap.money {
  background:
    linear-gradient(135deg,
      rgba(34,197,94,.16),
      rgba(74,222,128,.10));
}

.cat-card:hover .cat-icon-wrap {
  transform: scale(1.05);

  box-shadow:
    0 12px 26px rgba(124,58,237,.12);
}

/* =========================================
   CONTENT
========================================= */

.cat-content {
  min-width: 0;
}

.cat-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.2px;
  color: var(--text);

  margin-bottom: 3px;
}

.cat-meta {
  font-size: 12px;
  color: var(--text-3);

  white-space: nowrap;
}

/* =========================================
   DESKTOP WRAP
========================================= */

@media (min-width: 1200px) {

  .cats-scroll {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 16px;

    overflow: visible;

    padding: 10px 0 0;
  }

  .cat-card {
    width: 210px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

  .cat-card {
    width: 190px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .cats-section {
    padding: 28px 0 10px;
  }

  .cats-sub {
    font-size: 13px;
  }

  .cats-scroll {
    gap: 12px;
    padding: 10px 16px 8px;
  }

  .cat-card {
    width: 170px;
    min-height: 82px;

    padding: 12px;

    border-radius: 22px;
  }

  .cat-icon-wrap {
    width: 52px;
    height: 52px;

    border-radius: 16px;

    font-size: 24px;
  }

  .cat-name {
    font-size: 14px;
  }

  .cat-meta {
    font-size: 11px;
  }
}
/* PRODUCTS SCROLL */
.products-section {
  padding: 0 0 8px
}

.products-scroll {
  display: flex;
  gap: 12px;
  padding: 4px 16px 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory
}

.products-scroll::-webkit-scrollbar {
  display: none
}

/* PRODUCT CARD */
.product-card {
  width: clamp(180px, 22vw, 260px);
  flex-shrink: 0;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: all .25s ease
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px)
}
@media (min-width: 992px) {

  .products-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    overflow: visible;
    padding: 0 40px;
  }

  .product-card {
    width: 100%;
  }
}

.pc-thumb {
  width: 100%;
  height: 185px; /* increased from 130px */
  overflow: hidden;
  position: relative;
  border-radius: 18px 18px 0 0;
  background: #f3f4f6;
}
.pc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pc-title {
  min-height: 38px;
}
.pc-overlay {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.pc-wishlist {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .6)
}

.pc-tag {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(8px)
}

.pc-tag.sale {
  background: rgba(220, 38, 38, .85);
  color: #fff
}

.pc-tag.new {
  background: rgba(124, 58, 237, .85);
  color: #fff
}

.pc-tag.hot {
  background: rgba(217, 119, 6, .85);
  color: #fff
}

.pc-body {
  padding: 12px;
}

.pc-creator {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px
}

.pc-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #EC4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0
}

.pc-creator-name {
  font-size: 11px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 3px
}

.verified {
  color: var(--purple);
  font-size: 11px
}

.pc-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 6px;
  overflow: hidden;
  display: -webkit-box;
   white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}

.pc-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 7px
}

.pc-rating .stars {
  font-size: 11px
}

.pc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.pc-price-group {
  display: flex;
  flex-direction: column
}

.pc-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--purple);
  line-height: 1
}

.pc-orig {
  font-size: 11px;
  color: var(--text-3);
  text-decoration: line-through
}

.pc-add {
  width: 30px;
  height: 30px;
  background: var(--purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s
}

.pc-add:hover {
  background: #6D28D9;
  transform: scale(1.08)
}

.pc-downloads {
  font-size: 10.5px;
  color: var(--text-3)
}

/* =========================================
   PREMIUM FEATURED BUNDLE
========================================= */

.featured-section {
  padding: 28px 0;
}

.featured-card {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left,
      rgba(124, 58, 237, .12),
      transparent 32%),
    radial-gradient(circle at bottom right,
      rgba(236, 72, 153, .10),
      transparent 28%),
    var(--bg-2);

  border: 1px solid rgba(255, 255, 255, .08);

  box-shadow:
    0 20px 60px rgba(15, 23, 42, .08),
    0 2px 10px rgba(15, 23, 42, .04);

  transition:
    transform .45s ease,
    box-shadow .45s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 80px rgba(15, 23, 42, .12),
    0 8px 30px rgba(124, 58, 237, .10);
}

/* subtle glow */
.featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg,
      rgba(255,255,255,.08),
      transparent 35%);
}

/* =========================================
   DESKTOP LAYOUT
========================================= */

@media (min-width: 992px) {

  .featured-card {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    min-height: 560px;
  }
}

/* =========================================
   LEFT CONTENT
========================================= */

.fc-header {
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.fc-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.fc-category {
  background: rgba(124, 58, 237, .10);
  color: var(--purple);
  border: 1px solid rgba(124, 58, 237, .12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.fc-badge {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

.fc-title {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -2.4px;
  font-weight: 900;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 18px;
}

.fc-title .highlight {
  background: linear-gradient(135deg,#7C3AED,#EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fc-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 620px;
  margin-bottom: 28px;
}

/* =========================================
   CREATOR ROW
========================================= */

.fc-creator-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.fc-creator-avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    linear-gradient(135deg,#7C3AED,#EC4899);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 800;
  color: #fff;

  box-shadow:
    0 10px 24px rgba(124,58,237,.25);
}

.fc-creator-info {
  flex: 1;
}

.fc-creator-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.fc-creator-sub {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.fc-price-chip {
  position: relative;
  padding: 14px 18px;
  border-radius: 18px;

  background:
    linear-gradient(135deg,#7C3AED,#8B5CF6 40%,#EC4899);

  color: #fff;

  min-width: 118px;

  box-shadow:
    0 14px 35px rgba(124,58,237,.28);

  text-align: center;
}

.fc-price-label {
  font-size: 11px;
  opacity: .8;
  margin-bottom: 2px;
}

.fc-price {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.5px;
}

/* =========================================
   CTA ROW
========================================= */

.fc-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fc-btn-primary {
  height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 16px;

  background:
    linear-gradient(135deg,#7C3AED,#8B5CF6);

  color: #fff;
  font-weight: 700;
  font-size: 15px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;

  box-shadow:
    0 14px 30px rgba(124,58,237,.22);

  transition: all .25s ease;
}

.fc-btn-primary:hover {
  transform: translateY(-2px);
}

.fc-inline-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-3);
  font-size: 13px;
}

/* =========================================
   IMAGE SHOWCASE
========================================= */

.fc-showcase {
  position: relative;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-thumbs {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fc-thumb-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);

  min-height: 220px;

  transform: translateY(0);

  transition:
    transform .45s ease,
    box-shadow .45s ease;
}

.fc-thumb-item:nth-child(1) {
  transform: rotate(-2deg);
}

.fc-thumb-item:nth-child(2) {
  transform: rotate(2deg);
}

.fc-thumb-item:nth-child(3) {
  transform: rotate(1deg);
}

.fc-thumb-item:nth-child(4) {
  transform: rotate(-1deg);
}

.featured-card:hover .fc-thumb-item {
  transform: translateY(-4px);
}

.fc-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform .6s ease;
}

.featured-card:hover .fc-thumb-item img {
  transform: scale(1.05);
}

/* image overlays */

.fc-thumb-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0,0,0,.55),
      rgba(0,0,0,.10),
      transparent 60%);
}

.fc-thumb-content {
  position: absolute;
  inset-inline: 14px;
  bottom: 14px;
  z-index: 2;
}

.fc-thumb-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 12px;

  border-radius: 999px;

  background: rgba(255,255,255,.92);

  backdrop-filter: blur(10px);

  color: var(--text);
  font-size: 12px;
  font-weight: 700;

  margin-bottom: 10px;
}

.fc-thumb-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================
   STATS
========================================= */

.fc-stats {
  margin-top: 34px;

  display: grid;
  grid-template-columns: repeat(4,1fr);

  gap: 12px;
}

.fc-stat {
  background: rgba(255,255,255,.55);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,.35);

  border-radius: 20px;

  padding: 18px 16px;
}

.fc-stat-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.fc-stat-label {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

  .featured-card {
    border-radius: 28px;
  }

  .fc-header {
    padding: 26px 22px;
  }

  .fc-title {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .fc-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .fc-showcase {
    padding: 0 18px 18px;
  }

  .fc-thumbs {
    gap: 10px;
  }

  .fc-thumb-item {
    min-height: 160px;
    border-radius: 20px;
  }

  .fc-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .fc-stat {
    padding: 16px;
  }

  .fc-stat-num {
    font-size: 20px;
  }

  .fc-price-chip {
    min-width: 100px;
  }

  .fc-price {
    font-size: 22px;
  }
}

/* TRUST SECTION */

/* =========================================
   PREMIUM TRUST SECTION
========================================= */

.trust-section {
  position: relative;
  padding: 90px 16px;
  overflow: hidden;

  background:
    radial-gradient(circle at top left,
      rgba(124,58,237,.08),
      transparent 30%),

    radial-gradient(circle at bottom right,
      rgba(236,72,153,.06),
      transparent 28%),

    linear-gradient(to bottom,
      var(--purple-pale),
      rgba(255,255,255,.92));
}

/* ambient glows */

.trust-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: .5;
}

.trust-bg-glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(124,58,237,.12);
  top: -60px;
  left: -80px;
}

.trust-bg-glow-2 {
  width: 240px;
  height: 240px;
  background: rgba(236,72,153,.10);
  right: -60px;
  bottom: -60px;
}

/* =========================================
   HEADER
========================================= */

.trust-head {
  position: relative;
  z-index: 2;

  max-width: 760px;
  margin: 0 auto 38px;

  text-align: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  height: 38px;
  padding: 0 16px;

  border-radius: 999px;

  background: rgba(255,255,255,.72);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,.4);

  color: var(--text);

  font-size: 12px;
  font-weight: 700;

  margin-bottom: 20px;

  box-shadow:
    0 8px 24px rgba(15,23,42,.05);
}

.trust-title {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  letter-spacing: -2.5px;
  font-weight: 900;

  color: var(--text);

  margin-bottom: 18px;
}

.trust-title span {
  background:
    linear-gradient(135deg,#7C3AED,#EC4899);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-2);

  max-width: 680px;
  margin: 0 auto;
}

/* =========================================
   TRUST METRICS
========================================= */

.trust-metrics {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3,1fr);

  gap: 16px;

  max-width: 860px;
  margin: 0 auto 40px;
}

.trust-metric {
  background: rgba(255,255,255,.7);

  backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,.4);

  border-radius: 24px;

  padding: 24px;

  text-align: center;

  box-shadow:
    0 12px 40px rgba(15,23,42,.05);
}

.tm-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.tm-label {
  font-size: 13px;
  color: var(--text-3);
}

/* =========================================
   GRID
========================================= */

.trust-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3,1fr);

  gap: 18px;

  max-width: 1240px;
  margin: 0 auto;
}

/* =========================================
   CARDS
========================================= */

.trust-item {
  position: relative;

  padding: 26px;

  border-radius: 30px;

  background:
    linear-gradient(to bottom right,
      rgba(255,255,255,.85),
      rgba(255,255,255,.72));

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,.45);

  overflow: hidden;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

  box-shadow:
    0 12px 40px rgba(15,23,42,.05);
}

.trust-item::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(255,255,255,.18),
      transparent 35%);

  pointer-events: none;
}

.trust-item:hover {
  transform: translateY(-6px);

  border-color: rgba(124,58,237,.18);

  box-shadow:
    0 24px 60px rgba(15,23,42,.08),
    0 10px 30px rgba(124,58,237,.08);
}

/* featured card */

.trust-item.featured {
  background:
    linear-gradient(135deg,
      rgba(124,58,237,.10),
      rgba(236,72,153,.08)),
    rgba(255,255,255,.82);

  border: 1px solid rgba(124,58,237,.18);

  transform: scale(1.02);
}

.trust-featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;

  background:
    linear-gradient(135deg,#7C3AED,#EC4899);

  color: #fff;

  height: 28px;
  padding: 0 12px;

  border-radius: 999px;

  display: inline-flex;
  align-items: center;

  font-size: 11px;
  font-weight: 700;

  box-shadow:
    0 10px 24px rgba(124,58,237,.22);
}

/* =========================================
   ICONS
========================================= */

.ti-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;
}

.ti-icon {
  width: 62px;
  height: 62px;

  border-radius: 20px;

  background:
    linear-gradient(135deg,
      rgba(124,58,237,.12),
      rgba(236,72,153,.10));

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.6),
    0 12px 28px rgba(124,58,237,.10);
}

.ti-chip {
  height: 30px;
  padding: 0 12px;

  border-radius: 999px;

  background: rgba(255,255,255,.75);

  border: 1px solid rgba(255,255,255,.45);

  backdrop-filter: blur(10px);

  display: inline-flex;
  align-items: center;

  font-size: 11px;
  font-weight: 700;

  color: var(--text-2);
}

/* =========================================
   TYPOGRAPHY
========================================= */

.ti-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);

  letter-spacing: -.5px;

  margin-bottom: 10px;
}

.ti-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-2);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .trust-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 767px) {

  .trust-section {
    padding: 64px 16px;
  }

  .trust-title {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1.6px;
  }

  .trust-sub {
    font-size: 14px;
    line-height: 1.7;
  }

  .trust-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-item {
    padding: 22px;
    border-radius: 24px;
  }

  .ti-title {
    font-size: 18px;
  }

  .tm-num {
    font-size: 28px;
  }

  .trust-item.featured {
    transform: none;
  }
}

/* =========================================
   AUTHENTIC TESTIMONIALS
========================================= */

.testi-section {
  padding: 56px 0;
  position: relative;
}

.testi-header {
  margin-bottom: 24px;
  align-items: flex-end;
}

.testi-sub {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}

/* =========================================
   SCROLL
========================================= */

.testi-scroll {
  display: flex;
  gap: 16px;

  overflow-x: auto;
  overflow-y: visible;

  padding: 10px 16px 14px;

  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;

  scroll-snap-type: x proximity;
}

.testi-scroll::-webkit-scrollbar {
  display: none;
}

/* =========================================
   CARD
========================================= */

.testi-card {
  position: relative;

  width: 340px;
  min-height: 270px;

  flex-shrink: 0;
  scroll-snap-align: start;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 22px;

  border-radius: 28px;

  background:
    linear-gradient(to bottom right,
      rgba(255,255,255,.96),
      rgba(255,255,255,.88));

  border: 1px solid rgba(255,255,255,.5);

  box-shadow:
    0 10px 30px rgba(15,23,42,.04),
    0 1px 2px rgba(15,23,42,.03);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;

  overflow: hidden;
}

.testi-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(255,255,255,.18),
      transparent 45%);

  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(124,58,237,.12);

  box-shadow:
    0 24px 60px rgba(15,23,42,.08),
    0 10px 20px rgba(124,58,237,.05);
}

/* featured */

.testi-card.featured {
  background:
    linear-gradient(135deg,
      rgba(124,58,237,.06),
      rgba(236,72,153,.04)),
    rgba(255,255,255,.92);

  border-color:
    rgba(124,58,237,.10);
}

/* =========================================
   TOP
========================================= */

.tc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;
}

.tc-stars {
  display: flex;
  align-items: center;
  gap: 2px;

  color: #F59E0B;
  font-size: 15px;
}

.tc-platform {
  height: 28px;
  padding: 0 10px;

  border-radius: 999px;

  background:
    rgba(124,58,237,.08);

  color: var(--purple);

  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 11px;
  font-weight: 700;
}

.tc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}

/* =========================================
   REVIEW TEXT
========================================= */

.tc-text {
  font-size: 15px;
  line-height: 1.9;
  color: #374151;

  letter-spacing: -.1px;

  margin-bottom: 28px;
}

/* =========================================
   FOOTER
========================================= */

.tc-footer {
  padding-top: 18px;

  border-top:
    1px solid rgba(15,23,42,.06);
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 14px;
}

/* avatar */

.tc-avatar {
  width: 58px;
  height: 58px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
  font-weight: 800;
  color: #fff;

  flex-shrink: 0;

  box-shadow:
    0 12px 26px rgba(124,58,237,.14);
}

/* meta */

.tc-meta {
  min-width: 0;
}

.tc-name-row {
  display: flex;
  align-items: center;
  gap: 5px;

  margin-bottom: 4px;
}

.tc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.tc-verified {
  color: var(--purple);
  font-size: 15px;
}

.tc-role {
  font-size: 12px;
  color: var(--text-3);
}

/* product */

.tc-product {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 12px;
  font-weight: 600;

  color: var(--purple);
}

/* =========================================
   DESKTOP
========================================= */

@media (min-width: 1400px) {

  .testi-scroll {
    justify-content: center;
    flex-wrap: wrap;

    overflow: visible;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .testi-section {
    padding: 42px 0;
  }

  .testi-scroll {
    gap: 14px;
  }

  .testi-card {
    width: 300px;
    min-height: 250px;

    padding: 20px;

    border-radius: 24px;
  }

  .tc-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .tc-avatar {
    width: 52px;
    height: 52px;

    border-radius: 18px;

    font-size: 15px;
  }
}
/* PRICING */
.pricing-section {
  padding: 24px 16px
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: -.5px
}

.pricing-sub {
  font-size: 13px;
  color: var(--text-2);
  text-align: center;
  margin-bottom: 20px
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.pricing-card {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 16px
}

.pricing-card.popular {
  border-color: var(--purple);
  position: relative
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap
}

.plan-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px
}

.plan-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.8px;
  margin-bottom: 2px
}

.plan-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2)
}

.plan-desc {
  font-size: 12.5px;
  color: var(--text-2);
  margin-bottom: 14px
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2)
}

.plan-feature .check {
  color: var(--green);
  font-size: 14px
}

.plan-feature .cross {
  color: var(--text-3);
  font-size: 14px
}

.btn-plan {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all .2s
}

.btn-plan-outline {
  background: transparent;
  border: 1.5px solid var(--border-2);
  color: var(--text)
}

.btn-plan-primary {
  background: var(--purple);
  color: #fff
}

/* FAQ */
.faq-section {
  padding: 24px 16px
}

.faq-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -.5px
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  cursor: pointer
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px
}

.faq-question {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4
}

.faq-arrow {
  font-size: 16px;
  color: var(--text-3);
  transition: transform .3s;
  flex-shrink: 0
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg)
}

.faq-answer {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 10px;
  display: none
}

.faq-item.open .faq-answer {
  display: block
}

/* NEWSLETTER */
.newsletter-section {
  margin: 0 16px 24px;
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 50%, #DDD6FE 100%);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  border: 1px solid var(--border)
}

.nl-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.4px;
  margin-bottom: 6px
}

.nl-sub {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.nl-input {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  outline: none
}

.nl-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, .12)
}

.nl-input::placeholder {
  color: var(--text-3)
}

.btn-nl {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body)
}

/* FOOTER */
.footer {
  background: var(--text);
  padding: 28px 16px 100px
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px
}

.footer-logo span {
  color: var(--purple-light)
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 24px
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  cursor: pointer
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-legal {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .35)
}

.footer-social {
  display: flex;
  gap: 10px
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px
}

/* BOTTOM NAV */
.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  max-width: 430px;
}

.bn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 4px 0;
  transition: all .2s
}

.bn-icon {
  font-size: 22px;
  color: var(--text-3);
  transition: all .2s
}

.bn-label {
  font-size: 10px;
  color: var(--text-3);
  font-weight: 500;
  transition: all .2s
}

.bn-item.active .bn-icon {
  color: var(--purple)
}

.bn-item.active .bn-label {
  color: var(--purple)
}

.bn-item:nth-child(3) {
  position: relative
}

.bn-center {
  width: 50px;
  height: 50px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, .4);
  margin-top: -18px;
  border: 3px solid var(--bg);
  transition: all .2s
}

.bn-center:hover {
  transform: scale(1.08)
}

/* FLOATING CART */
.float-cart {
  position: fixed;
  bottom: 100px;
  right: 16px;
  width: 52px;
  height: 52px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 150;
  border: 3px solid var(--bg);
  transition: all .2s
}

.float-cart:hover {
  transform: scale(1.1)
}

.float-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #EF4444;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg)
}

/* VERIFIED BADGE */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--purple-mid);
  color: var(--purple);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 600
}

/* SECTION SPACING */
section {
  margin-bottom: 8px
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero {
  animation: fadeInUp .5s ease
}

.hero-badge {
  animation: fadeInUp .5s ease .1s both
}

.hero h1 {
  animation: fadeInUp .5s ease .15s both
}

.hero-ctas {
  animation: fadeInUp .5s ease .25s both
}

/* TOAST */
.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  background: var(--text);
  color: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  z-index: 500;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg)
}

.toast.show {
  transform: translateX(-50%) translateY(0)
}

/* CHECKOUT MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 300;
  display: none;
  align-items: flex-end;
  justify-content: center
}

.modal-overlay.open {
  display: flex
}

.checkout-modal {
  background: var(--bg-2);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 20px 16px 40px;
  width: 100%;
  max-width: 430px;
  max-height: 85vh;
  overflow-y: auto;
  animation: slideUp .35s cubic-bezier(.34, 1.56, .64, 1)
}

@keyframes slideUp {
  from {
    transform: translateY(100%)
  }

  to {
    transform: translateY(0)
  }
}

.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--border-2);
  border-radius: 2px;
  margin: 0 auto 16px
}

.modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -.4px
}
