:root {
  --yellow: #f7be39;
  --dark: #2e2e2e;
  --text: #202631;
  --muted: #667085;
  --border: #e7eaee;
  --soft: #f7f8fa;
  --green: #20ad55;
  --blue: #39afe0;
  --shadow: 0 18px 50px rgba(20, 28, 38, 0.09);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}
.navbar {
  background: var(--dark);
  padding: 0.9rem 0;
}
.navbar-brand {
  color: var(--yellow) !important;
  font-weight: 950;
  font-style: italic;
  font-size: 1.7rem;
}
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}
.navbar-toggler-icon {
  filter: invert(1);
}
.btn-mj {
  background: var(--yellow);
  border: 1px solid var(--yellow);
  color: #111;
  font-weight: 850;
  border-radius: 5px;
  padding: 0.85rem 1.25rem;
}
.btn-mj:hover {
  background: #e8a714;
  border-color: #e8a714;
  color: #111;
}
.btn-outline-mj {
  background: #fff;
  border: 1px solid #2d333b;
  color: #202631;
  font-weight: 800;
  border-radius: 5px;
  padding: 0.85rem 1.25rem;
}
.btn-outline-mj:hover {
  background: #202631;
  color: #fff;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.8rem, 9vw, 8.5rem) 0 5rem;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(248, 183, 34, 0.22),
      transparent 27%
    ),
    radial-gradient(
      circle at 92% 75%,
      rgba(57, 175, 224, 0.13),
      transparent 23%
    ),
    linear-gradient(135deg, #fff, #f6f7f8);
}
.eyebrow {
  color: #f7be39;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
  max-width: 950px;
}
.hero .lead {
  max-width: 760px;
  color: #4d596b;
  line-height: 1.72;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}
.intro h2,
.category-header h2 {
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  padding: 10px 0;
  color: #2e2e2e;
  text-align: left;
}
.intro h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.intro p,
.category-header p {
  color: var(--muted);
  line-height: 1.7;
}
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.category-header p {
  max-width: 640px;
  margin: 0.6rem 0 0;
}
.category-count {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  white-space: nowrap;
}
.feature-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 1.55rem;
  box-shadow: 0 8px 30px rgba(20, 28, 38, 0.045);
  transition: 0.25s;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 183, 34, 0.8);
  box-shadow: 0 20px 45px rgba(20, 28, 38, 0.1);
}
.feature-card:after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: var(--tint, rgba(248, 183, 34, 0.09));
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--iconbg, rgba(248, 183, 34, 0.15));
  color: var(--iconcolor, #b97900);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}
.product-tag {
  display: inline-flex;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #f1f3f5;
  color: #596273;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  margin-bottom: 0.85rem;
}
.tag-popular {
  background: rgba(248, 183, 34, 0.18);
  color: #926400;
}
.tag-new {
  background: rgba(30, 175, 93, 0.11);
  color: #148746;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #2e2e2e;
}
.feature-card p {
  color: #555555;
  line-height: 1.62;
  font-size: 15px;
  min-height: 74px;
  margin-bottom: 10px;
}
.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
}
.feature-list li {
  display: flex;
  gap: 0.5rem;
  color: #555555;
}
.feature-list li:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}
.feature-link {
  font-weight: 850;
  font-size: 0.91rem;
}
.feature-link:hover {
  color: #c48700;
}
.featured {
  overflow: hidden;
  border-radius: 10px;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(248, 183, 34, 0.22),
      transparent 25%
    ),
    var(--dark);
  color: #fff;
  box-shadow: 0 0px 65px rgba(0, 0, 0, 0.5);
}
.featured-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
}
.featured-copy h2 {
  font-weight: 900;
  letter-spacing: -0.04em;
  text-align: left;
  padding: 0;
}
.featured-copy p {
  color: rgba(255, 255, 255, 0.72);
}
.featured-ui {
  min-height: 420px;
  padding: 2rem;
  display: flex;
  align-items: center;
}
.mock-window {
  width: 100%;
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(-3deg);
}
.mock-bar {
  border-bottom: 1px solid #edf0f3;
  padding-bottom: 0.8rem;
}
.riskrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid #edf0f3;
  padding: 0.7rem 0;
  font-size: 0.84rem;
}
.riskdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.scorebox {
  background: #f7f8fa;
  border-radius: 0.85rem;
  padding: 1rem;
}
.ring {
  width: 96px;
  height: 96px;
  margin: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) 0 93%, #dfe5e8 93%);
  position: relative;
}
.ring:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
}
.ring strong {
  position: relative;
  font-size: 1.35rem;
}
.workflow {
  background: var(--soft);
}
.workflow-step {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.workflow-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #f7be39;
  font-weight: 900;
  margin-bottom: 1rem;
}
.workflow-step h3 {
  font-size: 1.08rem;
  font-weight: 850;
}
.workflow-step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.cta {
  border-radius: 10px;
  padding: clamp(2.3rem, 6vw, 5rem);
  background: radial-gradient(
      circle at top right,
      rgba(248, 183, 34, 0.31),
      transparent 30%
    ),
    linear-gradient(135deg, #171717, #292929);
  color: #fff;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
  letter-spacing: -0.04em;
}
.cta p {
  color: rgba(255, 255, 255, 0.72);
}
.product-item {
	margin-bottom: 30px;
}
.product-item.is-hidden {
  display: none !important;
}
.no-results {
  display: none;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}
@media (max-width: 991px) {
  .category-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .mock-window {
    transform: none;
  }
  .featured-ui {
    min-height: auto;
    padding-top: 0;
  }
  .navbar-collapse {
    padding: 1rem 0;
  }
}
@media (max-width: 767px) {
  .browse-shell {
    margin-top: -1.4rem;
  }
  .feature-card p {
    min-height: 0;
  }
  .hero {
    padding-top: 4rem;
  }
}


@media (max-width: 575px){
	.btn-outline-light{
		margin-top: 10px;
	}
}
@media (min-width: 576px) {
	.btn-outline-light {
		margin-left: 10px;
	}
}