:root {
  --ink: #111116;
  --muted: #5f6068;
  --line: #202027;
  --soft-line: #e9e9ee;
  --panel: #ffffff;
  --lavender: #8146f5;
  --lavender-soft: #f5ecff;
  --surface: #f7f7fb;
  --shadow: 0 14px 34px rgba(28, 24, 39, 0.08);
  --shadow-strong: 0 24px 55px rgba(28, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 12%, rgba(129, 70, 245, 0.12), transparent 23rem),
    radial-gradient(circle at 86% 10%, rgba(66, 153, 225, 0.08), transparent 21rem),
    linear-gradient(180deg, #fbfbfd 0%, #fff 42%, #f8f8fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(129, 70, 245, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 70, 245, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 62%);
  animation: gridDrift 18s linear infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 96px);
  border-bottom: 1px solid rgba(32, 32, 39, 0.1);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.brand,
.main-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: clamp(20px, 1.6vw, 25px);
  font-weight: 900;
}

.brand img {
  display: block;
  max-width: min(46vw, 210px);
  width: auto;
  height: clamp(50px, 5vw, 62px);
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(145deg, #efc8ff 0%, #873ff2 64%, #7737df 100%);
  box-shadow: 0 8px 18px rgba(129, 70, 245, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  padding: 9px;
  border: 1px solid rgba(32, 32, 39, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(28, 24, 39, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(32, 32, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #373842;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.main-nav a:hover {
  color: var(--ink);
  background: #f0edf8;
}

.header-actions {
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
}

.header-search {
  width: clamp(170px, 14vw, 230px);
}

.header-search label {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(32, 32, 39, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(28, 24, 39, 0.06);
}

.header-search svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex: 0 0 auto;
}

.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.header-search input::placeholder {
  color: #8b8c95;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: #fff;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 10px 20px rgba(17, 17, 22, 0.12);
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.nav-cta:hover {
  background: var(--lavender);
  transform: translateY(-1px);
}

.icon-button,
.search-submit,
.outline-button,
.category-pill,
.popular-searches button {
  cursor: pointer;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(32, 32, 39, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(28, 24, 39, 0.06);
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(70px, 8vw, 112px) 22px 54px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(32, 32, 39, 0.16);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(28, 24, 39, 0.06);
  animation: floatIn 620ms ease both;
}

.hero-badge svg {
  width: 21px;
  height: 21px;
}

.hero h1 {
  max-width: 820px;
  margin: 32px 0 20px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.15;
  font-weight: 900;
  animation: riseIn 700ms ease 90ms both;
}

.hero h1 span {
  color: var(--lavender);
}

.hero p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.5;
  font-weight: 500;
  animation: riseIn 700ms ease 180ms both;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(240px, 650px) auto;
  gap: 14px;
  align-items: center;
  width: min(100%, 820px);
  margin-top: 38px;
  padding: 8px;
  border: 1px solid rgba(32, 32, 39, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(28, 24, 39, 0.09);
  animation: riseIn 720ms ease 260ms both;
}

.search-field input {
  width: 100%;
  height: 50px;
  padding: 0 22px;
  color: var(--ink);
  border: 0;
  border-radius: 12px;
  outline: 0;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
}

.catalog-page {
  min-height: calc(100vh - 78px);
}

.catalog-page .section-heading h1 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 900;
}

.catalog-search {
  width: min(100%, 360px);
}

.catalog-search input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(32, 32, 39, 0.14);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  outline: 0;
  box-shadow: 0 10px 22px rgba(28, 24, 39, 0.05);
}

.catalog-search input:focus {
  border-color: rgba(129, 70, 245, 0.55);
  box-shadow: 0 0 0 4px rgba(129, 70, 245, 0.12);
}

.search-field input:focus {
  box-shadow: 0 0 0 4px rgba(129, 70, 245, 0.12);
}

.search-field input::placeholder {
  color: #9899a2;
}

.search-submit,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 900;
}

.search-submit {
  min-height: 50px;
  padding: 0 18px;
  color: #fff;
  border-radius: 12px;
  background: var(--ink);
}

.search-submit:hover {
  background: var(--lavender);
  transform: translateY(-1px);
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 620px);
  margin-top: 28px;
}

.hero-proof div {
  padding: 14px 16px;
  border: 1px solid rgba(32, 32, 39, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.hero-proof div:hover {
  border-color: rgba(129, 70, 245, 0.22);
  box-shadow: 0 14px 28px rgba(28, 24, 39, 0.08);
  transform: translateY(-3px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 15px;
  font-weight: 900;
}

.hero-proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.popular-searches span {
  color: #1f2026;
}

.popular-searches button {
  padding: 0 1px;
  border: 0;
  color: #20212a;
  background: transparent;
}

.popular-searches button:hover {
  color: var(--lavender);
}

.section-shell {
  padding: 70px clamp(22px, 7.6vw, 154px) 86px;
  background: linear-gradient(180deg, #fff 0%, #fafafe 100%);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.12;
  font-weight: 900;
}

.section-heading p {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.35;
  font-weight: 500;
}

.outline-button {
  min-width: 132px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(32, 32, 39, 0.16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(28, 24, 39, 0.06);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.outline-button:hover {
  border-color: rgba(129, 70, 245, 0.35);
  box-shadow: 0 16px 30px rgba(129, 70, 245, 0.12);
  transform: translateY(-2px);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 42px 0 34px;
}

.category-pill {
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(32, 32, 39, 0.1);
  border-radius: 999px;
  color: #2a2b31;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.category-pill:hover {
  border-color: rgba(129, 70, 245, 0.28);
  color: var(--lavender);
  transform: translateY(-1px);
}

.category-pill.is-active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 498px;
  flex-direction: column;
  padding: 34px 34px 32px;
  border: 1px solid rgba(32, 32, 39, 0.08);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(129, 70, 245, 0.11), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(129, 70, 245, 0.45);
  box-shadow: var(--shadow-strong);
  transform: translateY(-8px);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-card.is-hidden {
  display: none;
}

.product-card:nth-child(2),
.info-card:nth-child(2),
.stat-tile:nth-child(2) {
  transition-delay: 70ms;
}

.product-card:nth-child(3),
.info-card:nth-child(3),
.stat-tile:nth-child(3) {
  transition-delay: 140ms;
}

.product-card:nth-child(4),
.stat-tile:nth-child(4) {
  transition-delay: 210ms;
}

.product-media {
  position: relative;
  display: grid;
  height: 92px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(105deg, #fff 4%, #f7f3fb 48%, #f3e7ff 100%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.65), transparent 78%);
  opacity: 0;
  transform: translateX(-80%);
  transition:
    opacity 180ms ease,
    transform 420ms ease;
}

.product-card:hover .product-media,
.product-card:focus-within .product-media {
  background: linear-gradient(105deg, #fff 0%, #f3ecff 42%, #eadbff 100%);
  transform: scale(1.015);
}

.product-card:hover .product-media::after,
.product-card:focus-within .product-media::after {
  opacity: 1;
  transform: translateX(80%);
}

.category-label {
  margin: 31px 0 28px;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.product-card h3 {
  margin: 0 0 15px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.description {
  min-height: 56px;
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.rating-row,
.tag-row,
.card-link {
  display: flex;
  align-items: center;
}

.rating-row {
  gap: 8px;
  margin-top: 23px;
  font-size: 14px;
}

.rating-row svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.tag-row {
  gap: clamp(16px, 3vw, 37px);
  margin-top: 33px;
  color: #15161b;
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
}

.card-link {
  justify-content: space-between;
  margin-top: auto;
  padding-top: 25px;
  border-top: 2px solid #222;
  font-size: 15px;
  font-weight: 900;
  transition: color 180ms ease;
}

.card-link svg {
  width: 23px;
  height: 23px;
  transition: transform 180ms ease;
}

.card-link:focus-visible {
  outline: 3px solid rgba(129, 70, 245, 0.35);
  outline-offset: 5px;
}

.product-card:hover .card-link,
.product-card:focus-within .card-link {
  color: var(--lavender);
}

.product-card:hover .card-link svg,
.product-card:focus-within .card-link svg {
  transform: translate(4px, -4px);
}

.empty-state {
  display: none;
  margin: 48px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.empty-state.is-visible {
  display: block;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.pagination button {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(32, 32, 39, 0.14);
  border-radius: 10px;
  color: #272832;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(28, 24, 39, 0.05);
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.pagination button:hover,
.pagination button.is-active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-1px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
}

.back-link svg {
  width: 21px;
  height: 21px;
}

.details-shell {
  padding: 72px clamp(22px, 7.6vw, 154px) 88px;
  background:
    radial-gradient(circle at 12% 8%, rgba(129, 70, 245, 0.1), transparent 21rem),
    linear-gradient(180deg, #fff 0%, #fafafe 100%);
}

.details-hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding-bottom: 46px;
  border-bottom: 2px solid var(--line);
}

.details-media {
  min-height: 250px;
  border: 1px solid rgba(32, 32, 39, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.details-media .logo-notion,
.details-media .logo-slack,
.details-media .logo-vscode,
.details-media .logo-openai,
.details-media .logo-figma,
.details-media .logo-hubspot {
  transform: scale(1.25);
}

.details-copy h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 900;
}

.details-copy > p:last-of-type {
  max-width: 680px;
  margin: 0;
  color: #23242b;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

.details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(5, 5, 5, 0.16);
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.download-button:hover {
  background: var(--lavender);
  box-shadow: 0 16px 30px rgba(129, 70, 245, 0.24);
  transform: translateY(-2px);
}

.download-button svg {
  width: 21px;
  height: 21px;
}

.detail-outline {
  border: 1px solid rgba(32, 32, 39, 0.16);
}

.details-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 24px;
  margin-top: 34px;
}

.download-section {
  margin-top: 34px;
}

.download-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.download-tabs a {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(32, 32, 39, 0.1);
  border-radius: 12px;
  color: #363741;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(28, 24, 39, 0.05);
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.download-tabs a:hover {
  color: var(--lavender);
  border-color: rgba(129, 70, 245, 0.35);
  transform: translateY(-1px);
}

.download-card {
  padding: 30px;
  border: 1px solid rgba(32, 32, 39, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 0%, rgba(129, 70, 245, 0.09), transparent 20rem),
    #fff;
  box-shadow: var(--shadow);
}

.download-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.download-heading h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  font-weight: 900;
}

.download-heading span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #1f6e1f;
  background: #eaf8ea;
  font-size: 12px;
  font-weight: 900;
}

.download-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  margin: 0 0 28px;
  border: 1px solid rgba(32, 32, 39, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.download-stats div {
  padding: 15px 14px;
  text-align: center;
  border-right: 1px solid rgba(32, 32, 39, 0.08);
}

.download-stats div:last-child {
  border-right: 0;
}

.download-stats dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-stats dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.download-copy {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.download-copy h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
}

.download-copy p {
  margin: 0;
  color: #30313a;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.mirror-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 24px 0 30px;
}

.mirror-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  color: #fff;
  background: #2f7d22;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(47, 125, 34, 0.2);
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.mirror-button:hover {
  background: var(--lavender);
  transform: translateY(-2px);
}

.mirror-button svg {
  width: 19px;
  height: 19px;
}

.download-pending {
  width: 100%;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(129, 70, 245, 0.18);
  border-radius: 14px;
  color: #4d3c7a;
  background: var(--lavender-soft);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.download-notes {
  padding-top: 24px;
  border-top: 1px solid var(--soft-line);
}

.download-notes h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
}

.download-notes ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.download-notes li {
  color: #30313a;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.details-panel {
  padding: 28px;
  border: 1px solid rgba(32, 32, 39, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.details-panel h2 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.details-panel p,
.details-panel li,
.product-facts dd {
  color: #2d2e35;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.details-panel p {
  margin: 0;
}

.details-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.product-facts {
  display: grid;
  gap: 16px;
  margin: 0;
}

.product-facts div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--soft-line);
}

.product-facts div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
}

.compact-footer {
  padding-top: 28px;
}

.admin-shell {
  padding: 72px clamp(22px, 7.6vw, 154px) 88px;
  background:
    radial-gradient(circle at 12% 8%, rgba(129, 70, 245, 0.1), transparent 21rem),
    linear-gradient(180deg, #fff 0%, #fafafe 100%);
}

.admin-gate {
  display: grid;
  min-height: calc(100vh - 78px);
  place-items: center;
  padding: 72px clamp(22px, 7.6vw, 154px);
  background:
    radial-gradient(circle at 12% 8%, rgba(129, 70, 245, 0.12), transparent 21rem),
    linear-gradient(180deg, #fff 0%, #fafafe 100%);
}

.admin-gate.is-hidden,
.admin-shell.is-locked {
  display: none;
}

.gate-card {
  width: min(100%, 560px);
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(32, 32, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.gate-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.gate-form label {
  display: grid;
  gap: 8px;
  color: #282932;
  font-size: 13px;
  font-weight: 900;
}

.gate-form input {
  height: 48px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(32, 32, 39, 0.14);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  outline: 0;
}

.gate-form input:focus {
  border-color: rgba(129, 70, 245, 0.55);
  box-shadow: 0 0 0 4px rgba(129, 70, 245, 0.12);
}

.admin-lock {
  background: #fff;
}

.admin-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.admin-heading h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 900;
}

.admin-heading p:last-child {
  margin: 18px 0 0;
  color: #2d2e35;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 26px;
  align-items: start;
}

.admin-form,
.admin-panel {
  border: 1px solid rgba(32, 32, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.admin-form {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: #282932;
  font-size: 13px;
  font-weight: 900;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 32, 39, 0.14);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  outline: 0;
}

.admin-form input[type="file"] {
  height: auto;
  padding: 12px;
}

.admin-form input,
.admin-form select {
  height: 46px;
  padding: 0 14px;
}

.admin-form input[type="file"] {
  height: auto;
}

.admin-form textarea {
  resize: vertical;
  padding: 13px 14px;
  line-height: 1.55;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: rgba(129, 70, 245, 0.55);
  box-shadow: 0 0 0 4px rgba(129, 70, 245, 0.12);
}

.wide-field {
  grid-column: 1 / -1;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.logo-preview-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.logo-preview {
  display: grid;
  width: 120px;
  height: 86px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(32, 32, 39, 0.2);
  border-radius: 16px;
  background: #fff;
}

.logo-preview span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.form-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: var(--lavender);
  font-size: 14px;
  font-weight: 800;
}

.admin-panel {
  padding: 22px;
}

.admin-panel-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-panel-heading h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.danger-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(218, 54, 51, 0.22);
  border-radius: 999px;
  color: #b42318;
  background: #fff5f5;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.catalog-link-manager {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--soft-line);
}

.catalog-link-manager h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.catalog-link-manager p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.catalog-link-list {
  display: grid;
  gap: 12px;
}

.catalog-link-item {
  display: grid;
  gap: 7px;
  color: #282932;
  font-size: 12px;
  font-weight: 900;
}

.catalog-link-item input {
  height: 42px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid rgba(32, 32, 39, 0.14);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  outline: 0;
}

.catalog-link-item input:focus {
  border-color: rgba(129, 70, 245, 0.55);
  box-shadow: 0 0 0 4px rgba(129, 70, 245, 0.12);
}

.admin-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(32, 32, 39, 0.08);
  border-radius: 16px;
  background: #fff;
}

.admin-list-item h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 900;
}

.admin-list-item p,
.empty-admin {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.admin-list-item a {
  color: var(--lavender);
  font-size: 13px;
  font-weight: 900;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
  padding: 76px clamp(22px, 7.6vw, 154px);
  border-top: 1px solid rgba(32, 32, 39, 0.08);
  border-bottom: 1px solid rgba(32, 32, 39, 0.08);
  background:
    radial-gradient(circle at 86% 20%, rgba(129, 70, 245, 0.12), transparent 18rem),
    linear-gradient(120deg, rgba(129, 70, 245, 0.08), transparent 42%),
    #f8f8fc;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lavender);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 900;
}

.feature-copy > p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: #20212a;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-tile,
.info-card {
  border: 1px solid rgba(32, 32, 39, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
}

.stat-tile {
  min-height: 132px;
  padding: 24px;
  border-radius: 18px;
}

.stat-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 900;
}

.stat-tile span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.about-section {
  padding: 76px clamp(22px, 7.6vw, 154px) 86px;
  background: linear-gradient(180deg, #fff 0%, #f8f8fb 100%);
}

.compact-heading {
  margin-bottom: 34px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card {
  padding: 28px;
  border-radius: 18px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.info-card:hover {
  border-color: rgba(129, 70, 245, 0.32);
  box-shadow: var(--shadow-strong);
  transform: translateY(-5px);
}

.info-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--lavender);
  border: 2px solid rgba(129, 70, 245, 0.18);
  border-radius: 12px;
  background: var(--lavender-soft);
}

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

.info-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.info-card p {
  margin: 0;
  color: #2d2e35;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.site-footer {
  padding: 52px clamp(22px, 7.6vw, 154px) 26px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(129, 70, 245, 0.26), transparent 21rem),
    #09090d;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand .brand {
  display: inline-flex;
  padding: 0;
  background: transparent;
}

.footer-brand .brand img {
  height: 72px;
  max-width: 250px;
}

.footer-brand p {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-links h3 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 900;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.logo-notion {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 5px solid #020202;
  border-radius: 7px;
  color: #050505;
  background: #fff;
  box-shadow: -7px -6px 0 #050505;
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 900;
}

.logo-slack {
  position: relative;
  width: 70px;
  height: 70px;
}

.logo-slack i {
  position: absolute;
  width: 18px;
  height: 42px;
  border-radius: 10px;
}

.logo-slack i:nth-child(1) {
  left: 10px;
  top: 2px;
  background: #35c5f0;
  transform: rotate(90deg);
}

.logo-slack i:nth-child(2) {
  right: 9px;
  top: 10px;
  background: #2eb67d;
}

.logo-slack i:nth-child(3) {
  left: 11px;
  bottom: 9px;
  background: #e01e5a;
}

.logo-slack i:nth-child(4) {
  right: 2px;
  bottom: 15px;
  background: #ecb22e;
  transform: rotate(90deg);
}

.logo-vscode {
  position: relative;
  width: 76px;
  height: 72px;
}

.logo-vscode::before,
.logo-vscode::after {
  content: "";
  position: absolute;
  inset: 10px 12px;
  background: #3d89cf;
  clip-path: polygon(0 35%, 22% 22%, 54% 50%, 22% 78%, 0 65%, 32% 50%);
}

.logo-vscode::after {
  inset: 0 0 0 24px;
  background: #5aa4e8;
  clip-path: polygon(0 50%, 74% 0, 100% 12%, 100% 88%, 74% 100%);
}

.logo-openai {
  width: 70px;
  height: 70px;
  border: 6px solid #050505;
  border-radius: 50%;
  box-shadow:
    0 -18px 0 -10px #050505,
    16px -9px 0 -10px #050505,
    16px 9px 0 -10px #050505,
    0 18px 0 -10px #050505,
    -16px 9px 0 -10px #050505,
    -16px -9px 0 -10px #050505;
}

.logo-figma {
  display: grid;
  grid-template-columns: repeat(2, 24px);
  grid-auto-rows: 24px;
}

.logo-figma i {
  width: 24px;
  height: 24px;
}

.logo-figma i:nth-child(1) { background: #f24e1e; border-radius: 12px 0 0 12px; }
.logo-figma i:nth-child(2) { background: #ff7262; border-radius: 0 12px 12px 0; }
.logo-figma i:nth-child(3) { background: #a259ff; border-radius: 12px 0 0 12px; }
.logo-figma i:nth-child(4) { background: #1abcfe; border-radius: 50%; }
.logo-figma i:nth-child(5) { background: #0acf83; border-radius: 12px 0 12px 12px; }

.logo-hubspot {
  position: relative;
  width: 76px;
  height: 76px;
}

.logo-hubspot::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 23px;
  width: 38px;
  height: 38px;
  border: 7px solid #ff5c35;
  border-radius: 50%;
}

.logo-hubspot::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 7px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ff5c35;
  box-shadow: -31px -3px 0 -3px #ff5c35, -22px 16px 0 0 #ff5c35;
}

.logo-yt-saver,
.logo-camtasia,
.logo-mobaxterm,
.logo-app-builder,
.logo-perfectly-clear,
.logo-topaz,
.logo-smart-defrag,
.logo-pdfelement,
.logo-screenpresso,
.logo-ef-commander {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 16px 30px rgba(28, 24, 39, 0.15);
  font-weight: 900;
}

.logo-yt-saver {
  background: linear-gradient(145deg, #5f8df7, #245bd5);
}

.logo-yt-saver::before {
  content: "";
  width: 46px;
  height: 30px;
  border-radius: 9px;
  background: #fff;
}

.logo-yt-saver::after {
  content: "";
  position: absolute;
  top: 27px;
  border-top: 19px solid #2f68e6;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
}

.logo-camtasia {
  background: linear-gradient(145deg, #b4e14a, #5a9a24);
}

.logo-camtasia::before {
  content: "";
  width: 42px;
  height: 42px;
  border: 12px solid #fff;
  border-right-color: transparent;
  clip-path: polygon(0 0, 100% 0, 72% 28%, 36% 28%, 36% 72%, 72% 72%, 100% 100%, 0 100%);
}

.logo-mobaxterm {
  background: #fff;
}

.logo-mobaxterm::before {
  content: ">_";
  display: grid;
  width: 46px;
  height: 38px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: #2b2f35;
  font-size: 22px;
  letter-spacing: 0;
}

.logo-mobaxterm::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 9px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #ef4d4d 0 35%, #4f83ff 35% 62%, #9ad84a 62%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.logo-app-builder {
  background: linear-gradient(145deg, #262a33, #f3a91c);
}

.logo-app-builder::before {
  content: "App";
  position: absolute;
  top: 19px;
  color: #fff;
  font-size: 18px;
}

.logo-app-builder::after {
  content: "Builder";
  position: absolute;
  top: 41px;
  color: #1c1d22;
  font-size: 11px;
}

.logo-perfectly-clear {
  background: #fff;
  border: 1px solid rgba(32, 32, 39, 0.12);
}

.logo-perfectly-clear::before {
  content: "";
  width: 42px;
  height: 42px;
  border: 5px solid #2d74c4;
  border-radius: 50%;
  box-shadow:
    0 0 0 7px rgba(45, 116, 196, 0.12),
    10px 10px 0 -6px #f7b500;
}

.logo-perfectly-clear::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 38px;
  border-radius: 999px;
  background: #8d99a8;
  transform: rotate(28deg);
}

.logo-topaz {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 40%),
    linear-gradient(145deg, #2c77d5, #0b223d);
}

.logo-topaz::before {
  content: "";
  width: 52px;
  height: 38px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 52%, #ffffff 53% 58%, transparent 59%),
    linear-gradient(145deg, #9ed8ff, #2063a2);
}

.logo-topaz::after {
  content: "AI";
  position: absolute;
  right: 13px;
  bottom: 11px;
  color: #fff;
  font-size: 13px;
}

.logo-smart-defrag {
  background: linear-gradient(145deg, #1f2530, #06070a);
}

.logo-smart-defrag::before {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid #21a8ff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(33, 168, 255, 0.14);
}

.logo-smart-defrag::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #21a8ff;
  box-shadow:
    14px 4px 0 -2px #21a8ff,
    -11px 9px 0 -3px #21a8ff;
}

.logo-pdfelement {
  background: linear-gradient(145deg, #f3f7ff, #ffffff);
  color: #2054cc;
}

.logo-pdfelement::before {
  content: "PDF";
  font-size: 19px;
}

.logo-pdfelement::after {
  content: "";
  position: absolute;
  inset: 15px 18px;
  border: 3px solid #2054cc;
  border-radius: 5px;
  transform: rotate(-4deg);
}

.logo-screenpresso {
  background: linear-gradient(145deg, #fff, #eceff5);
  color: #22242b;
}

.logo-screenpresso::before {
  content: "PRO";
  position: absolute;
  left: 13px;
  top: 17px;
  font-size: 13px;
}

.logo-screenpresso::after {
  content: "";
  width: 32px;
  height: 32px;
  margin-left: 18px;
  border: 5px solid #d84545;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #fff;
}

.logo-ef-commander {
  background: linear-gradient(145deg, #8a3ffc, #5d1bba);
}

.logo-ef-commander::before {
  content: "EF";
  font-size: 24px;
}

.logo-ef-commander::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(145deg, #ffffff, #c8f34b);
  transform: rotate(12deg);
}

.logo-treesize,
.logo-ultrasearch,
.logo-cinema4d,
.logo-valentina,
.logo-mediahuman,
.logo-tubemate,
.logo-audio-converter {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(28, 24, 39, 0.15);
  font-weight: 900;
}

.logo-treesize {
  background: linear-gradient(145deg, #ffffff, #eef7ef);
}

.logo-treesize::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #58b95f;
  box-shadow:
    0 0 0 9px rgba(88, 185, 95, 0.16),
    inset 0 -11px 0 rgba(0, 0, 0, 0.08);
}

.logo-treesize::after {
  content: "";
  position: absolute;
  bottom: 18px;
  width: 32px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  clip-path: polygon(0 65%, 22% 35%, 42% 58%, 64% 18%, 100% 65%, 100% 100%, 0 100%);
}

.logo-ultrasearch {
  background: #50bd61;
}

.logo-ultrasearch::before {
  content: "";
  width: 31px;
  height: 31px;
  border: 6px solid #fff;
  border-radius: 50%;
  transform: translate(-3px, -3px);
}

.logo-ultrasearch::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 24px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: left center;
}

.logo-cinema4d {
  background:
    radial-gradient(circle at 34% 34%, #eef6ff 0 12%, transparent 13%),
    linear-gradient(145deg, #26394d, #07111f);
}

.logo-cinema4d::before {
  content: "C4D";
  color: #fff;
  font-size: 19px;
  letter-spacing: 0;
}

.logo-cinema4d::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
}

.logo-valentina {
  background: linear-gradient(145deg, #101827, #1d2440);
}

.logo-valentina::before {
  content: "SQL";
  color: #fff;
  font-size: 18px;
}

.logo-valentina::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3fb6ff, #8d63ff, #60d394);
}

.logo-mediahuman {
  background: #fff;
  color: #24262c;
}

.logo-mediahuman::before {
  content: "";
  width: 32px;
  height: 42px;
  border: 5px solid #24262c;
  border-radius: 18px 18px 12px 12px;
}

.logo-mediahuman::after {
  content: "";
  position: absolute;
  bottom: 14px;
  width: 42px;
  height: 24px;
  border: 5px solid #24262c;
  border-top: 0;
  border-radius: 0 0 22px 22px;
}

.logo-tubemate {
  background: linear-gradient(145deg, #fff, #fff3df);
  color: #9a1919;
}

.logo-tubemate::before {
  content: "Tube";
  position: absolute;
  top: 20px;
  font-size: 16px;
}

.logo-tubemate::after {
  content: "M";
  position: absolute;
  bottom: 17px;
  color: #f3b61f;
  font-size: 24px;
  text-shadow: 10px 0 0 #9a1919;
}

.logo-audio-converter {
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.22) 49% 58%, transparent 59%),
    linear-gradient(145deg, #ff9c3a, #4e6ee9);
}

.logo-audio-converter::before {
  content: "";
  width: 24px;
  height: 34px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 12px 8px 0 -4px #fff;
}

.logo-audio-converter::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 19px;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.custom-logo {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #fff;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(145deg, #2d2d35, var(--lavender));
  box-shadow: 0 14px 28px rgba(129, 70, 245, 0.2);
  font-size: 20px;
  font-weight: 900;
}

.uploaded-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 16px;
}

.details-uploaded-logo {
  width: 118px;
  height: 118px;
}

@media (max-width: 1280px) {
  .nav-cta {
    display: none;
  }
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .details-hero,
  .details-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .main-nav {
    display: none;
  }

  .site-header.menu-open .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(18px, 4vw, 96px);
    left: clamp(18px, 4vw, 96px);
    z-index: 20;
    display: grid;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-strong);
  }

  .site-header.menu-open .main-nav a {
    min-height: 42px;
    border-radius: 12px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 78px;
  }

  .brand img {
    max-width: 180px;
    height: 50px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    gap: 12px;
    font-size: 14px;
  }

  .header-search {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero h1 {
    margin-top: 24px;
  }

  .search-panel {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .search-submit {
    min-height: 44px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading .outline-button,
  .catalog-search {
    width: 100%;
  }

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

  .feature-band,
  .about-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .details-shell {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .admin-shell {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .admin-gate {
    min-height: calc(100vh - 78px);
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .details-media {
    min-height: 190px;
  }

  .download-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-stats div {
    border-right: 1px solid rgba(32, 32, 39, 0.08);
    border-bottom: 1px solid rgba(32, 32, 39, 0.08);
  }

  .catalog-page .section-heading h1 {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
    font-size: 18px;
  }

  .brand img {
    max-width: 178px;
    height: 48px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .header-actions {
    display: none;
  }

  .site-header.menu-open .main-nav {
    right: 16px;
    left: 16px;
  }

  .hero {
    padding: 42px 16px;
  }

  .hero-badge {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .search-field input {
    height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 48px 16px 58px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .product-card {
    min-height: auto;
    padding: 20px;
    border-radius: 16px;
  }

  .product-media {
    height: 84px;
  }

  .category-label {
    margin: 22px 0 18px;
    font-size: 13px;
  }

  .product-card h3 {
    font-size: 19px;
  }

  .description {
    min-height: auto;
    font-size: 14px;
  }

  .rating-row {
    margin-top: 18px;
  }

  .tag-row {
    gap: 10px;
    margin-top: 22px;
    font-size: 12px;
  }

  .card-link {
    margin-top: 22px;
    padding-top: 20px;
  }

  .category-strip {
    flex-wrap: nowrap;
    gap: 8px;
    margin: 28px -16px 28px;
    padding: 0 16px 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-strip::-webkit-scrollbar {
    display: none;
  }

  .category-pill {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 13px;
    font-size: 12px;
  }

  .feature-band,
  .about-section,
  .details-shell,
  .admin-shell,
  .admin-gate,
  .site-footer {
    padding-inline: 16px;
  }

  .admin-heading h1 {
    font-size: 32px;
  }

  .admin-heading p:last-child {
    font-size: 14px;
  }

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

  .admin-form,
  .admin-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .admin-list-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .admin-actions,
  .admin-actions .download-button,
  .admin-actions .outline-button {
    width: 100%;
  }

  .details-copy h1 {
    font-size: 32px;
  }

  .details-copy > p:last-of-type {
    font-size: 14px;
  }

  .details-actions {
    flex-direction: column;
  }

  .details-hero {
    gap: 26px;
    padding-bottom: 30px;
  }

  .details-panel {
    padding: 20px;
  }

  .download-card {
    padding: 20px;
    border-radius: 18px;
  }

  .download-heading {
    flex-direction: column;
  }

  .download-stats {
    grid-template-columns: 1fr;
  }

  .download-stats div {
    text-align: left;
    border-right: 0;
  }

  .download-copy {
    text-align: left;
  }

  .download-copy h3 {
    font-size: 21px;
  }

  .mirror-buttons {
    flex-direction: column;
  }

  .mirror-button {
    width: 100%;
  }

  .download-button,
  .detail-outline {
    width: 100%;
  }

  .feature-copy h2 {
    font-size: 28px;
  }

  .feature-copy > p:last-child {
    font-size: 14px;
  }

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

  .stat-tile {
    min-height: 112px;
  }

  .footer-main {
    gap: 34px;
  }

  .footer-brand .brand {
    width: fit-content;
    max-width: 100%;
  }

  .footer-brand .brand img {
    max-width: 220px;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 66px;
    gap: 8px;
    padding: 0 12px;
  }

  .brand img {
    max-width: 170px;
    height: 44px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .back-link {
    gap: 6px;
    font-size: 0;
  }

  .back-link svg {
    width: 22px;
    height: 22px;
  }

  .site-header.menu-open .main-nav {
    right: 12px;
    left: 12px;
  }

  .hero h1 {
    font-size: 25px;
  }

  .hero-badge {
    font-size: 12px;
  }

  .search-field input {
    padding: 0 14px;
  }

  .outline-button {
    min-width: 0;
    width: 100%;
  }

  .pagination {
    gap: 6px;
  }

  .pagination button {
    min-width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .download-tabs {
    grid-template-columns: 1fr;
  }

  .logo-yt-saver,
  .logo-camtasia,
  .logo-mobaxterm,
  .logo-app-builder,
  .logo-perfectly-clear,
  .logo-topaz,
  .logo-smart-defrag,
  .logo-pdfelement,
  .logo-screenpresso,
  .logo-ef-commander,
  .logo-treesize,
  .logo-ultrasearch,
  .logo-cinema4d,
  .logo-valentina,
  .logo-mediahuman,
  .logo-tubemate,
  .logo-audio-converter,
  .logo-vscode,
  .logo-hubspot,
  .logo-slack,
  .logo-openai {
    transform: scale(0.88);
  }
}

@media (max-width: 700px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 68px;
    padding: 0 14px;
  }

  .site-header .brand {
    min-width: 0;
    overflow: hidden;
  }

  .site-header .brand img {
    display: block;
    width: auto !important;
    max-width: min(180px, 62vw) !important;
    height: 46px !important;
    object-fit: contain;
  }

  .site-header .header-actions {
    display: none !important;
  }

  .site-header .nav-toggle {
    display: inline-grid !important;
    flex: 0 0 auto;
  }

  .site-header.menu-open .main-nav {
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
  }
}

@media (max-width: 380px) {
  .site-header .brand img {
    max-width: 150px !important;
    height: 40px !important;
  }
}
