:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --panel: #edf3f8;
  --panel-strong: #dfe9f2;
  --text: #111318;
  --muted: #627083;
  --line: #dce4ec;
  --green: #23b06f;
  --mint: #d9fae6;
  --purple: #7337f2;
  --orange: #f7c886;
  --blue: #2e8df4;
  --shadow: 0 16px 44px rgba(45, 65, 92, 0.1);
  --page-width: 1360px;
  --page-gutter: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #eef5fb 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.topbar,
.storebar,
.hero-heading {
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.topbar,
.storebar,
.brand,
.primary-nav,
.store-nav,
.header-actions,
.filters,
.shelf-intro,
.shelf-controls,
.rating {
  display: flex;
  align-items: center;
}

.topbar {
  min-height: 48px;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  gap: 8px;
  white-space: nowrap;
}

.brand-logo-slot {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  overflow: visible;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border: 7px solid #ef314a;
  border-right-color: transparent;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff;
}

.brand-logo-img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.brand-wordmark-img {
  width: 170px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.primary-nav,
.store-nav {
  gap: clamp(16px, 3vw, 34px);
  color: #20242b;
  font-size: 14px;
  font-weight: 680;
}

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

.login-link {
  padding: 10px 8px;
  color: #20242b;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #20242b;
  font-weight: 760;
  cursor: pointer;
}

.language-trigger:hover,
.language-trigger:focus-visible {
  background: rgba(17, 19, 24, 0.06);
  outline: none;
}

.language-trigger svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solid-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 8px;
  font-weight: 780;
  white-space: nowrap;
}

.solid-button {
  background: #101114;
  color: #fff;
  box-shadow: 0 14px 24px rgba(17, 19, 24, 0.14);
}

.outline-button {
  border: 1px solid #101114;
  background: transparent;
  color: #101114;
}

.storebar {
  min-height: 58px;
  gap: 18px;
}

.store-nav {
  flex: 0 0 auto;
}

.download-storebar {
  justify-content: space-between;
}

.download-storebar .store-nav {
  flex: 1 1 auto;
  overflow-x: auto;
  white-space: nowrap;
}

.store-nav span {
  position: relative;
}

.store-nav span::after {
  content: "自营";
  position: absolute;
  right: -12px;
  bottom: 16px;
  padding: 2px 6px;
  border-radius: 99px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.search-box {
  position: relative;
  flex: 1 1 420px;
  min-width: 220px;
}

.search-box span {
  position: absolute;
  left: 18px;
  top: 50%;
  translate: 0 -50%;
  color: #8792a0;
  font-size: 13px;
}

.search-box input {
  width: 100%;
  min-height: 44px;
  padding: 0 18px 0 58px;
  border: 1.5px solid rgba(35, 176, 111, 0.75);
  border-radius: 8px;
  background: #f9fbfd;
  color: var(--text);
  outline: none;
}

.filters {
  gap: 8px;
}

.filters button,
.shelf-controls button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: #2c3440;
  cursor: pointer;
}

.filters button {
  padding: 0 14px;
}

.filters .icon-button,
.shelf-controls button {
  width: 42px;
  padding: 0;
  font-size: 20px;
}

.store-hero {
  padding: 28px 0 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(226, 237, 247, 0.95) 100%);
}

.hero-heading {
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(38px, 5.4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-heading p:last-child {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.path-grid,
.product-shelf {
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

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

.path-card {
  position: relative;
  min-height: 244px;
  padding: 64px 20px 20px;
  border-radius: 8px;
  background: #eef4f9;
  overflow: hidden;
}

.path-card.ready {
  background: var(--panel-strong);
}

.path-card .path-label,
.shelf-tab {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 26px 0 22px;
  border-radius: 8px 0 16px 0;
  color: #101114;
  font-size: 18px;
  font-weight: 850;
}

.path-card.beginner .path-label {
  background: var(--mint);
}

.path-card.ready .path-label,
.shelf-tab {
  background: var(--purple);
  color: #fff;
}

.path-card.active .path-label {
  background: var(--orange);
}

.path-card ul {
  margin: 0 0 30px;
  padding-left: 24px;
  line-height: 1.85;
  font-size: 16px;
  font-weight: 620;
}

.product-shelf {
  position: relative;
  margin-top: 12px;
  padding: 76px 20px 20px;
  border-radius: 8px;
  background: #dde8f2;
  box-shadow: var(--shadow);
}

.shelf-tab {
  min-height: 48px;
}

.shelf-intro {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.shelf-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.shelf-controls {
  gap: 8px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(146px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.product-card {
  min-width: 146px;
  padding: 12px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(45, 65, 92, 0.08);
}

.product-media {
  position: relative;
}

.product-art {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 7px;
  object-fit: cover;
  background: #edf3f8;
}

.product-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c83bd0, #ff4e9c);
  color: #fff;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(200, 59, 208, 0.22);
  white-space: nowrap;
}

.product-card h3 {
  min-height: 42px;
  margin: 10px 0 6px;
  font-size: 15px;
  line-height: 1.2;
}

.product-card p {
  margin-bottom: 10px;
  color: #228eb1;
  font-size: 13px;
}

.rating {
  gap: 5px;
  color: #ffae20;
  font-size: 12px;
}

.rating::before {
  content: "★";
}

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

.price {
  margin-top: 10px;
  padding: 8px;
  border-radius: 6px;
  background: #eef2f5;
  color: var(--green);
  text-align: center;
  font-weight: 850;
}

.price span {
  color: #98a2af;
  font-weight: 650;
  text-decoration: line-through;
}

.marketproof-section {
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) 0 clamp(58px, 8vw, 96px);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.proof-stats article,
.safety-panel {
  border-radius: 8px;
  background: #f1f6fa;
  box-shadow: 0 12px 32px rgba(45, 65, 92, 0.07);
}

.proof-stats article {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    ". label"
    "icon value";
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 10px 14px;
  min-height: 206px;
  padding: 24px;
}

.proof-stats p {
  grid-area: label;
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 760;
}

.proof-stats strong {
  grid-area: value;
  font-size: clamp(48px, 6vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

.proof-icon {
  grid-area: icon;
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 12px 24px rgba(115, 55, 242, 0.22);
}

.proof-icon::before,
.proof-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

.box-icon::before {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 4px;
  transform: rotate(45deg);
}

.box-icon::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(-2px) rotate(45deg);
}

.user-icon::before {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  translate: -50% -74%;
}

.user-icon::after {
  width: 22px;
  height: 13px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  translate: -50% 18%;
}

.download-icon::before {
  width: 2px;
  height: 22px;
  background: #fff;
}

.download-icon::after {
  width: 18px;
  height: 18px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  translate: -50% -30%;
  transform: rotate(45deg);
}

.safety-panel {
  padding: clamp(28px, 4vw, 48px);
}

.safety-panel h2 {
  margin-bottom: 30px;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.2;
  letter-spacing: 0;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 6vw, 90px);
}

.safety-item {
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) minmax(150px, 1fr);
  gap: 22px;
  align-items: center;
}

.safety-item p {
  margin-bottom: 18px;
  max-width: 210px;
  font-size: 18px;
  line-height: 1.35;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}

.sumsub-logo::before {
  content: "";
  width: 34px;
  height: 22px;
  margin-right: 8px;
  background:
    linear-gradient(90deg, #101114 0 5px, transparent 5px 9px, #101114 9px 14px, transparent 14px 20px, #101114 20px 25px, transparent 25px),
    linear-gradient(#101114 0 0) 6px 8px / 22px 5px no-repeat;
}

.nuvei-logo {
  font-weight: 900;
}

.safety-art {
  position: relative;
  min-height: 112px;
}

.safety-art span,
.safety-art b,
.safety-art::before,
.safety-art::after {
  content: "";
  position: absolute;
}

.safety-art::before {
  left: 8px;
  top: 14px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #050506;
}

.safety-art span {
  left: 28px;
  top: 26px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffbbb5 0 13%, transparent 14%),
    linear-gradient(135deg, #ff8b76, #fa344d);
  box-shadow: 0 12px 24px rgba(250, 52, 77, 0.18);
}

.safety-art b {
  right: 10px;
  top: 16px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a45, #ff3953);
  box-shadow: 0 18px 34px rgba(255, 57, 83, 0.22);
}

.seller-art span::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffcdc6;
}

.seller-art span::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 12px;
  width: 47px;
  height: 25px;
  border-radius: 48px 48px 20px 20px;
  background: #ffb1a5;
}

.seller-art b::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 29px;
  width: 29px;
  height: 18px;
  border-left: 8px solid #fff;
  border-bottom: 8px solid #fff;
  transform: rotate(-45deg);
}

.refund-art span {
  background:
    radial-gradient(circle at 50% 45%, #ffb5a6 0 18%, transparent 19%),
    linear-gradient(135deg, #ff765f, #f53b33);
}

.refund-art span::before {
  content: "$";
  position: absolute;
  left: 26px;
  top: 15px;
  color: #d23b2f;
  font-size: 44px;
  font-weight: 900;
}

.refund-art b::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 30px;
  width: 34px;
  height: 34px;
  border: 5px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
}

.review-strip {
  position: relative;
  margin-top: clamp(34px, 5vw, 52px);
  padding: 0 44px 28px;
}

.review-window {
  overflow: hidden;
}

.review-row {
  display: grid;
  grid-auto-columns: minmax(176px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-row::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 148px;
  padding: 14px 13px 13px;
  background: #fff;
  border: 1px solid rgba(223, 230, 238, 0.78);
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(47, 64, 88, 0.09);
  scroll-snap-align: start;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.stars span {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  background: #09a985;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.review-card h3 {
  display: -webkit-box;
  min-height: 32px;
  margin-bottom: 8px;
  overflow: hidden;
  color: #101820;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.review-card p {
  display: -webkit-box;
  min-height: 36px;
  margin: 0 0 18px;
  overflow: hidden;
  color: #1c2733;
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.review-card small {
  margin-top: auto;
  color: #4e5c6b;
  font-size: 11px;
  font-weight: 650;
}

.review-arrow {
  position: absolute;
  top: 60px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #d7e0e8;
  border-radius: 50%;
  background: #fff;
  color: #26313d;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(43, 57, 78, 0.1);
}

.review-arrow-prev {
  left: 0;
}

.review-arrow-next {
  right: 0;
}

.review-summary {
  margin: 0;
  color: #465160;
  text-align: center;
  font-size: 12px;
  font-weight: 650;
}

.review-summary strong {
  color: #17212c;
}

.bot-catalog-section {
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0 clamp(72px, 9vw, 110px);
}

.bot-catalog-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.bot-catalog-head > div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.bot-catalog-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.bot-catalog-head p {
  margin: 0;
  max-width: 600px;
  color: #8a97a5;
  font-size: 14px;
  font-weight: 700;
}

.info-dot {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #7a8795;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.catalog-count {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #202833;
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 8px 20px rgba(42, 58, 77, 0.06);
}

.bot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.bot-card {
  min-width: 0;
  padding: 15px 15px 17px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(48, 65, 86, 0.08);
}

.bot-cover {
  position: relative;
  min-height: 178px;
  margin-bottom: 14px;
  border-radius: 6px;
  background: #111926;
  color: #fff;
  isolation: isolate;
  perspective: 900px;
}

.bot-cover::before,
.bot-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bot-cover::before {
  opacity: 0.95;
}

.bot-cover::after {
  background:
    linear-gradient(transparent 58%, rgba(0, 0, 0, 0.58)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.06) 18px 19px);
}

.bot-cover b {
  position: relative;
  z-index: 1;
  padding: 18px 12px;
  font-size: 16px;
  line-height: 1.05;
  text-transform: uppercase;
}

.image-cover {
  display: block;
  background: #060707;
}

.bot-cover-flip {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
}

.bot-cover:hover .bot-cover-flip {
  transform: rotateY(180deg);
}

.bot-cover-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 6px;
  backface-visibility: hidden;
}

.bot-cover-front {
  background: #060707;
}

.bot-cover-back {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  padding: 18px 15px;
  transform: rotateY(180deg);
  background:
    linear-gradient(160deg, rgba(18, 23, 32, 0.96), rgba(13, 83, 116, 0.92)),
    radial-gradient(circle at 82% 12%, rgba(64, 221, 255, 0.35), transparent 30%);
}

.bot-cover-back strong {
  font-size: 17px;
  line-height: 1.1;
}

.bot-cover-back span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.image-cover img {
  display: block;
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.bot-tag {
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.bot-tag.hot {
  background: linear-gradient(135deg, #8854ff, #6238e8);
}

.bot-tag.fresh {
  background: linear-gradient(135deg, #35c4a5, #149a8d);
}

.bot-tag.score {
  background: linear-gradient(135deg, #ffb42c, #ff7a3a);
}

.bot-card h3 {
  display: -webkit-box;
  min-height: 38px;
  margin-bottom: 9px;
  overflow: hidden;
  color: #111821;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bot-card p {
  margin: 0 0 10px;
  overflow: hidden;
  color: #1fa1c9;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bot-rating {
  min-height: 18px;
  margin-bottom: 9px;
  color: #5d6b7a;
  font-size: 12px;
  font-weight: 700;
}

.bot-rating span {
  color: #ffb11a;
}

.bot-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 32px;
  border-radius: 7px;
  background: #eef2f4;
  color: #9aa5af;
  font-size: 13px;
  font-weight: 800;
}

.bot-price strong {
  color: #20b977;
  font-size: 16px;
}

.bot-price span {
  text-decoration: line-through;
}

.plugin-catalog-section {
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: 0 0 clamp(72px, 9vw, 110px);
}

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

.plugin-card {
  min-width: 0;
  padding: 14px 14px 15px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(48, 65, 86, 0.08);
}

.plugin-cover {
  position: relative;
  height: 152px;
  margin-bottom: 13px;
  border-radius: 7px;
  background: #eef3f7;
  perspective: 900px;
}

.plugin-cover-flip {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
}

.plugin-cover:hover .plugin-cover-flip {
  transform: rotateY(180deg);
}

.plugin-cover-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 7px;
  backface-visibility: hidden;
}

.plugin-cover-front img {
  display: block;
  width: 100%;
  height: 152px;
  object-fit: cover;
}

.plugin-cover-back {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  padding: 16px 14px;
  transform: rotateY(180deg);
  background:
    linear-gradient(160deg, rgba(16, 22, 31, 0.96), rgba(40, 111, 128, 0.9)),
    radial-gradient(circle at 78% 18%, rgba(88, 226, 194, 0.34), transparent 34%);
  color: #fff;
}

.plugin-cover-back strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
}

.plugin-cover-back span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.plugin-card h3 {
  display: -webkit-box;
  min-height: 38px;
  margin-bottom: 11px;
  overflow: hidden;
  color: #111821;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.plugin-card p {
  margin: 0 0 11px;
  overflow: hidden;
  color: #1fa1c9;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plugin-rating {
  min-height: 18px;
  color: #5d6b7a;
  font-size: 12px;
  font-weight: 700;
}

.plugin-rating span {
  color: #ffb11a;
}

.plugin-rating.muted {
  color: #22a866;
  font-weight: 850;
}

.site-footer {
  margin-top: clamp(18px, 4vw, 46px);
  border-top: 1px solid rgba(103, 119, 139, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(239, 246, 252, 0.98)),
    radial-gradient(circle at 16% 0%, rgba(35, 176, 111, 0.12), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(46, 141, 244, 0.12), transparent 34%);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) 2fr minmax(250px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) 0 34px;
}

.footer-brand p,
.footer-newsletter p {
  margin: 16px 0 0;
  color: #5d6b7a;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.footer-logo {
  width: fit-content;
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #4d5258;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-socials a:hover {
  color: #111821;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(35, 176, 111, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #1c7551;
  font-size: 12px;
  font-weight: 850;
}

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

.footer-links h3,
.footer-newsletter h3 {
  margin: 0 0 16px;
  color: #111821;
  font-size: 14px;
  font-weight: 900;
}

.footer-links a {
  display: block;
  margin-top: 12px;
  color: #5d6b7a;
  font-size: 13px;
  font-weight: 750;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #15965d;
}

.footer-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.footer-form label {
  display: block;
}

.footer-form label span {
  display: block;
  margin-bottom: 7px;
  color: #718095;
  font-size: 12px;
  font-weight: 850;
}

.footer-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #d7e2eb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: #111821;
  outline: none;
}

.footer-form input:focus {
  border-color: rgba(35, 176, 111, 0.58);
  box-shadow: 0 0 0 4px rgba(35, 176, 111, 0.12);
}

.footer-form button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: #111821;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(103, 119, 139, 0.16);
  color: #718095;
  font-size: 12px;
  font-weight: 750;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: 0 0 34px;
  color: #7b8898;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.7;
}

.footer-legal p {
  margin: 7px 0 0;
}

.download-hero,
.download-options-section,
.download-product-showcase,
.download-workflow-section,
.system-requirements-section,
.download-faq-section,
.authority-link-section {
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.download-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  padding: clamp(50px, 7vw, 92px) 0 clamp(34px, 5vw, 64px);
}

.download-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.download-hero-copy > p:last-of-type {
  max-width: 720px;
  margin: 22px 0 0;
  color: #526070;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 650;
  line-height: 1.75;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.download-device-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(103, 119, 139, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(229, 241, 250, 0.88)),
    radial-gradient(circle at 76% 16%, rgba(35, 176, 111, 0.22), transparent 32%);
  box-shadow: var(--shadow);
}

.device-window {
  position: absolute;
  top: 46px;
  left: 34px;
  right: 58px;
  min-height: 272px;
  overflow: hidden;
  border: 1px solid rgba(70, 88, 111, 0.16);
  border-radius: 8px;
  background: #111821;
  color: #fff;
  box-shadow: 0 22px 48px rgba(20, 34, 52, 0.22);
}

.device-window-bar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.device-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dfe9f2;
}

.device-window-bar span:first-child {
  background: #23b06f;
}

.device-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  min-height: 150px;
  padding: 28px 26px 10px;
}

.device-chart span {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #23b06f, #2e8df4);
}

.device-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 22px 22px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.device-stats strong {
  font-size: 20px;
}

.device-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.device-phone {
  position: absolute;
  right: 26px;
  bottom: 30px;
  display: grid;
  align-content: end;
  width: 150px;
  height: 226px;
  padding: 18px;
  border: 8px solid #101114;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fafc, #d9fae6);
  box-shadow: 0 22px 40px rgba(20, 34, 52, 0.2);
}

.device-phone span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: #101114;
  translate: -50% 0;
}

.device-phone strong {
  font-size: 22px;
}

.device-phone small {
  margin-top: 6px;
  color: #1c7551;
  font-size: 12px;
  font-weight: 850;
}

.download-platform-hero {
  display: block;
  padding: 22px 0 0;
}

.download-hero-heading {
  max-width: 880px;
  margin: 0 auto 24px;
  text-align: center;
}

.download-hero-heading h1 {
  margin: 0;
  color: #101418;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.08;
}

.download-hero-heading p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #526070;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 650;
  line-height: 1.7;
}

.platform-download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 24px;
  padding-top: 2px;
}

.platform-download-card {
  display: grid;
  justify-items: center;
  min-height: 238px;
  padding: 24px 18px 16px;
  border: 1px solid #b7bec7;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.platform-download-card h2 {
  margin: 10px 0 6px;
  color: #0f1216;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
}

.platform-download-card p {
  display: grid;
  align-content: center;
  min-height: 44px;
  margin: 0;
  color: #15191f;
  font-size: 14px;
  font-weight: 620;
  line-height: 1.25;
}

.platform-download-card p::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 16px 0 12px;
  background: #bfc5cc;
}

.platform-download-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 8px;
  background: #089a55;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.platform-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #b7b9bd;
  font-weight: 850;
}

.platform-icon-img {
  width: 76px;
  height: 76px;
  display: block;
  object-fit: contain;
}

.web-icon::before,
.desktop-icon::before,
.mac-icon::before {
  content: "";
  width: 50px;
  height: 42px;
  border: 2px solid currentColor;
}

.web-icon::after {
  content: "WWW";
  position: absolute;
  top: 8px;
  font-size: 11px;
  letter-spacing: 0;
}

.desktop-icon::before,
.mac-icon::before {
  height: 34px;
}

.desktop-icon::after,
.mac-icon::after {
  content: "";
  position: absolute;
  bottom: 9px;
  width: 34px;
  height: 10px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.mac-icon {
  font-size: 22px;
}

.mac-icon::before {
  content: "";
  font-size: 23px;
  line-height: 30px;
}

.android-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 46px solid currentColor;
}

.android-icon::after {
  content: "";
  position: absolute;
  left: 17px;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 29px solid #fff;
}

.apple-icon {
  font-size: 58px;
  line-height: 1;
}

.apple-icon::before {
  content: "";
}

.amazon-icon {
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.apk-icon::before {
  content: "APK";
  width: 38px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 3px;
  font-size: 10px;
  line-height: 31px;
}

.apk-icon::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 18px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  rotate: 45deg;
}

.huawei-icon {
  width: 62px;
  height: 62px;
  border: 2px solid currentColor;
  border-radius: 14px;
  font-size: 10px;
}

.samsung-icon::before {
  content: "";
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 14px;
}

.samsung-icon::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 26px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.samsung-card {
  grid-column: 2 / span 2;
  justify-self: center;
  width: calc(50% - 10px);
}

.download-market-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.download-market-tabs span:not(.tab-dot) {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 24px 0 18px;
  border-radius: 8px 8px 0 0;
  background: #fff;
  color: #20242b;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(45, 65, 92, 0.08);
  cursor: default;
}

.tab-dot {
  width: 29px;
  height: 29px;
  border-radius: 50%;
}

.indicator-dot {
  background: #49b58f;
}

.stats-dot {
  background: #6b3ef4;
}

.bot-dot {
  background: #ff5b22;
}

.download-options-section,
.download-product-showcase,
.download-workflow-section,
.system-requirements-section,
.download-faq-section {
  padding: clamp(34px, 5vw, 68px) 0 0;
}

.download-product-showcase {
  padding-top: 18px;
}

.download-product-panel {
  overflow: hidden;
  padding: 24px 28px 28px;
  border-radius: 8px;
  background: #f4f8fb;
}

.download-product-panel h2 {
  margin: 0 0 18px;
  color: #141a21;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 880;
  line-height: 1.35;
  text-align: center;
}

.download-product-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.download-product-card {
  min-width: 0;
  padding: 12px 12px 14px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(42, 58, 77, 0.08);
}

.download-product-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: #0b0e12;
  perspective: 900px;
  outline: none;
}

.download-product-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  backface-visibility: hidden;
  transition: transform 0.55s ease;
  transform-style: preserve-3d;
}

.download-product-front {
  transform: rotateY(0);
}

.download-product-back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(135deg, #14202c, #1b7f95);
  color: #fff;
  text-align: left;
  transform: rotateY(180deg);
}

.download-product-cover:hover .download-product-front,
.download-product-cover:focus .download-product-front,
.download-product-cover:focus-within .download-product-front {
  transform: rotateY(180deg);
}

.download-product-cover:hover .download-product-back,
.download-product-cover:focus .download-product-back,
.download-product-cover:focus-within .download-product-back {
  transform: rotateY(360deg);
}

.download-product-cover:focus-visible {
  box-shadow: 0 0 0 3px rgba(24, 167, 201, 0.32);
}

.download-product-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-product-front span {
  position: absolute;
  top: 9px;
  left: 9px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6bc1, #d83fa7);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.download-product-back strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.download-product-back span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.55;
}

.download-product-card h3 {
  display: -webkit-box;
  min-height: 42px;
  margin: 11px 0 7px;
  overflow: hidden;
  color: #121820;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.download-product-card p {
  margin: 0 0 9px;
  overflow: hidden;
  color: #29a7cb;
  font-size: 12px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-product-rating {
  min-height: 18px;
  margin-bottom: 9px;
  color: #536171;
  font-size: 12px;
  font-weight: 760;
}

.download-product-rating span {
  color: #ffb11a;
}

.download-product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 30px;
  border-radius: 7px;
  background: #eef2f4;
  color: #9aa5af;
  font-size: 12px;
  font-weight: 850;
}

.download-product-price strong {
  color: #18ad62;
  font-size: 14px;
}

.download-product-price span {
  text-decoration: line-through;
}

.download-product-next {
  position: absolute;
  top: 50%;
  right: -17px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #9aa5af;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(42, 58, 77, 0.16);
  translate: 0 -50%;
}

.download-platform-note {
  margin-top: 20px;
  padding: 24px 30px;
  border: 1px solid rgba(17, 24, 33, 0.28);
  border-radius: 20px;
  background: #fff;
  color: #141a21;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
}

.download-platform-note p {
  margin: 0;
}

.download-platform-note p + p {
  margin-top: 18px;
}

.download-platform-note a {
  color: #18a7c9;
  font-weight: 850;
}

.download-section-head {
  max-width: 820px;
  margin-bottom: 22px;
}

.download-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}

.download-section-head p:last-child {
  margin: 14px 0 0;
  color: #5d6b7a;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.7;
}

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

.download-card,
.workflow-grid article,
.requirements-table,
.faq-list details {
  border: 1px solid rgba(103, 119, 139, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(45, 65, 92, 0.08);
}

.download-card {
  position: relative;
  min-height: 354px;
  padding: 26px;
}

.download-card.featured {
  background: #111821;
  color: #fff;
}

.download-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #23b06f;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.download-card h3 {
  margin: 18px 0 0;
  font-size: 24px;
}

.download-card p {
  min-height: 76px;
  margin: 12px 0 0;
  color: #5d6b7a;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.download-card.featured p,
.download-card.featured li {
  color: rgba(255, 255, 255, 0.74);
}

.download-card ul {
  margin: 18px 0 24px;
  padding-left: 20px;
  color: #2f3a47;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.9;
}

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

.download-card.featured .solid-button {
  background: #fff;
  color: #111821;
}

.download-card.featured .solid-button:hover {
  background: #edf3f8;
}

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

.workflow-grid article {
  min-height: 194px;
  padding: 26px;
}

.workflow-grid span {
  color: #23b06f;
  font-size: 13px;
  font-weight: 950;
}

.workflow-grid h3 {
  margin: 14px 0 0;
  font-size: 22px;
}

.workflow-grid p {
  margin: 12px 0 0;
  color: #5d6b7a;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.requirements-table {
  overflow: hidden;
}

.requirements-table > div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  padding: 20px 24px;
  border-top: 1px solid rgba(103, 119, 139, 0.14);
}

.requirements-table > div:first-child {
  border-top: 0;
}

.requirements-table strong {
  color: #111821;
}

.requirements-table span {
  color: #5d6b7a;
  font-weight: 650;
  line-height: 1.65;
}

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

.faq-list details {
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: #111821;
  font-size: 17px;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: #5d6b7a;
  font-weight: 650;
  line-height: 1.75;
}

.copy-hero,
.copy-section,
.help-hero,
.help-section,
.legal-hero,
.legal-layout {
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.copy-hero {
  padding: clamp(54px, 7vw, 86px) 0 clamp(62px, 7vw, 90px);
}

.copy-hero-centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.copy-hero-copy {
  display: grid;
  justify-items: center;
}

.copy-hero-rule {
  display: block;
  width: 56px;
  height: 3px;
  margin-bottom: 38px;
  border-radius: 999px;
  background: #0aa36a;
}

.copy-hero-copy h1 {
  max-width: 1080px;
  margin: 0;
  color: #111821;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
}

.copy-hero-copy > p:last-of-type {
  max-width: 680px;
  margin: 20px auto 0;
  color: #26313d;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 650;
  line-height: 1.65;
}

.copy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.copy-dashboard {
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(103, 119, 139, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(231, 242, 248, 0.92)),
    radial-gradient(circle at 80% 12%, rgba(35, 176, 111, 0.2), transparent 30%);
  box-shadow: var(--shadow);
}

.copy-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #607084;
  font-size: 13px;
  font-weight: 850;
}

.copy-dashboard-head strong {
  display: grid;
  place-items: center;
  min-width: 64px;
  min-height: 34px;
  border-radius: 999px;
  background: #111821;
  color: #fff;
}

.copy-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  min-height: 250px;
  margin-top: 22px;
  padding: 24px 20px 14px;
  border-radius: 8px;
  background: #111821;
}

.copy-chart span {
  display: block;
  min-height: 54px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #23b06f, #2e8df4);
}

.copy-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.copy-hero-stats {
  width: min(100%, 1080px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(54px, 6vw, 78px);
}

.copy-stat-grid article,
.copy-feature-grid article,
.copy-metric-list article,
.copy-flow-grid article,
.copy-provider-cards article,
.copy-risk-box {
  border: 1px solid rgba(103, 119, 139, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(45, 65, 92, 0.08);
}

.copy-stat-grid article {
  padding: 16px;
}

.copy-hero-stats article {
  min-height: 164px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px 18px 22px;
  border: 0;
  background: #f4f8fb;
  box-shadow: 0 12px 30px rgba(41, 63, 84, 0.06);
}

.copy-stat-icon {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 999px;
  filter: drop-shadow(0 12px 12px rgba(31, 44, 59, 0.12));
}

.copy-stat-icon::before,
.copy-stat-icon::after {
  position: absolute;
  content: "";
}

.copy-stat-icon::after {
  inset: 10px 13px auto auto;
  width: 14px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(1px);
  transform: rotate(-24deg);
}

.copy-stat-icon-strategy {
  border-radius: 58% 42% 60% 40% / 48% 58% 42% 52%;
  background:
    radial-gradient(circle at 30% 24%, #fff0a8 0 20%, transparent 21%),
    radial-gradient(circle at 63% 34%, #ff8a2a 0 24%, transparent 25%),
    linear-gradient(145deg, #ffd86f 0%, #ff9c32 52%, #e75a26 100%);
  transform: rotate(-14deg);
}

.copy-stat-icon-provider {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.7) 0 13%, transparent 14%),
    radial-gradient(circle at 50% 58%, #ffb84d 0 24%, transparent 25%),
    linear-gradient(145deg, #ff6534 0%, #f04420 54%, #c92516 100%);
}

.copy-stat-icon-provider::before {
  inset: 11px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 210, 124, 0.75);
  border-radius: 999px;
  color: #ffe2a8;
  content: "$";
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.copy-stat-icon-roi {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 50%, #f4f7ff 0 18%, transparent 19%),
    linear-gradient(135deg, #0b4fb3 0 50%, #f7f9ff 51% 66%, #cf2634 67% 100%);
}

.copy-stat-icon-roi::before {
  inset: 12px auto auto 9px;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 20%, #ffdc43 0 10%, transparent 11%),
    radial-gradient(circle at 75% 46%, #ffdc43 0 10%, transparent 11%),
    radial-gradient(circle at 62% 75%, #ffdc43 0 10%, transparent 11%),
    radial-gradient(circle at 28% 75%, #ffdc43 0 10%, transparent 11%),
    radial-gradient(circle at 15% 46%, #ffdc43 0 10%, transparent 11%);
}

.copy-stat-icon-metric {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.68) 0 14%, transparent 15%),
    linear-gradient(145deg, #2ee29a 0%, #0aa36a 58%, #067146 100%);
}

.copy-stat-icon-metric::before {
  inset: 18px 14px auto;
  height: 15px;
  border-left: 4px solid #d9fff0;
  border-bottom: 4px solid #d9fff0;
  transform: rotate(-45deg);
}

.copy-stat-grid span {
  display: block;
  color: #657486;
  font-size: 12px;
  font-weight: 800;
}

.copy-hero-stats span {
  color: #4f5d69;
  font-size: 16px;
  font-weight: 650;
}

.copy-stat-grid strong {
  display: block;
  margin-top: 6px;
  color: #111821;
  font-size: 22px;
}

.copy-hero-stats strong {
  margin: 0 0 8px;
  color: #0f141a;
  font-size: clamp(38px, 4.2vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.copy-hero-stats .copy-counter {
  display: inline;
  color: inherit;
  font: inherit;
}

.copy-section {
  padding: clamp(34px, 5vw, 62px) 0;
}

.copy-after-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  padding-top: 0;
}

.copy-explore-panel,
.copy-education-panel {
  overflow: hidden;
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(103, 119, 139, 0.14);
  border-radius: 8px;
  background: #f7fafc;
  box-shadow: 0 16px 38px rgba(45, 65, 92, 0.08);
}

.copy-explore-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: center;
  padding: clamp(28px, 3.4vw, 44px);
  background:
    radial-gradient(circle at 84% 14%, rgba(10, 163, 106, 0.16), transparent 32%),
    linear-gradient(145deg, #f8fbfd 0%, #eef5f8 100%);
}

.copy-education-panel {
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(28px, 3.2vw, 40px);
  background:
    radial-gradient(circle at 16% 14%, rgba(46, 141, 244, 0.13), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f2f6f9 100%);
}

.copy-panel-copy {
  position: relative;
  z-index: 1;
}

.copy-panel-copy .eyebrow {
  margin-bottom: 14px;
}

.copy-panel-copy h2 {
  max-width: 520px;
  margin: 0;
  color: #111821;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.12;
}

.copy-panel-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 16px 0 0;
  color: #536273;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.72;
}

.copy-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.copy-filter-row span {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid rgba(103, 119, 139, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #273342;
  font-size: 13px;
  font-weight: 850;
}

.copy-strategy-preview {
  position: relative;
  min-height: 260px;
}

.copy-strategy-preview::before {
  position: absolute;
  inset: 34px 26px auto auto;
  width: 190px;
  height: 190px;
  border-radius: 44px;
  background: linear-gradient(145deg, #0aa36a, #2e8df4);
  content: "";
  opacity: 0.14;
  transform: rotate(18deg);
}

.copy-preview-card {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 178px;
  padding: 18px;
  border: 1px solid rgba(103, 119, 139, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(25, 43, 68, 0.13);
}

.copy-preview-card span {
  color: #667586;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.copy-preview-card strong {
  color: #111821;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.copy-preview-card-main {
  top: 0;
  right: 28px;
  width: 220px;
  min-height: 170px;
}

.copy-preview-card:nth-child(2) {
  left: 8px;
  bottom: 28px;
}

.copy-preview-card:nth-child(3) {
  right: 0;
  bottom: 0;
}

.copy-preview-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 8px;
  min-height: 72px;
  margin-top: 8px;
}

.copy-preview-bars i {
  display: block;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #23b06f, #2e8df4);
}

.copy-preview-bars i:nth-child(1) {
  height: 42%;
}

.copy-preview-bars i:nth-child(2) {
  height: 74%;
}

.copy-preview-bars i:nth-child(3) {
  height: 55%;
}

.copy-preview-bars i:nth-child(4) {
  height: 92%;
}

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

.copy-education-grid > div {
  min-height: 152px;
  padding: 20px;
  border: 1px solid rgba(103, 119, 139, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.copy-education-grid h3 {
  margin: 14px 0 8px;
  color: #111821;
  font-size: 18px;
}

.copy-education-grid p {
  margin: 0;
  color: #5e6d7e;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
}

.copy-mini-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  filter: drop-shadow(0 10px 10px rgba(31, 44, 59, 0.12));
}

.copy-mini-icon::before,
.copy-mini-icon::after {
  position: absolute;
  content: "";
}

.copy-mini-icon-copy {
  background: linear-gradient(145deg, #ffd86f 0%, #ff8a2a 55%, #e75a26 100%);
  transform: rotate(-8deg);
}

.copy-mini-icon-copy::before {
  inset: 12px 9px;
  border-top: 4px solid #fff6cf;
  border-right: 4px solid #fff6cf;
  transform: rotate(45deg);
}

.copy-mini-icon-risk {
  background: linear-gradient(145deg, #42e5a3 0%, #0aa36a 58%, #067146 100%);
}

.copy-mini-icon-risk::before {
  inset: 10px 13px 9px;
  border-left: 4px solid #e4fff4;
  border-bottom: 4px solid #e4fff4;
  transform: rotate(-45deg);
}

.copy-feature-grid,
.copy-metric-list,
.copy-flow-grid {
  display: grid;
  gap: 16px;
}

.copy-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.copy-feature-grid article,
.copy-flow-grid article {
  min-height: 206px;
  padding: 26px;
}

.copy-feature-grid span,
.copy-flow-grid span {
  color: #23b06f;
  font-size: 13px;
  font-weight: 950;
}

.copy-feature-grid h3,
.copy-flow-grid h3 {
  margin: 14px 0 0;
  color: #111821;
  font-size: 22px;
}

.copy-feature-grid p,
.copy-flow-grid p,
.copy-provider-panel p,
.copy-risk-box p,
.copy-metric-list p {
  margin: 12px 0 0;
  color: #5d6b7a;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.copy-metric-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.copy-metric-list article {
  min-height: 166px;
  padding: 24px;
}

.copy-metric-list strong {
  color: #111821;
  font-size: 24px;
}

.copy-flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.copy-provider-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 28px;
  padding: 34px;
  border-radius: 8px;
  background: #111821;
  color: #fff;
  box-shadow: var(--shadow);
}

.copy-provider-panel h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}

.copy-provider-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.copy-provider-cards {
  display: grid;
  gap: 12px;
}

.copy-provider-cards article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.copy-provider-cards strong,
.copy-provider-cards span {
  display: block;
}

.copy-provider-cards strong {
  color: #fff;
  font-size: 18px;
}

.copy-provider-cards span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}

.copy-risk-box {
  padding: 26px 30px;
  border-color: rgba(218, 81, 81, 0.24);
  background: #fff8f8;
}

.copy-risk-box p {
  margin: 0;
  color: #4f3131;
  font-size: 15px;
}

.help-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding: clamp(54px, 7vw, 92px) 0 clamp(36px, 5vw, 66px);
}

.help-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #111821;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  line-height: 1.02;
}

.help-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: #526070;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 650;
  line-height: 1.72;
}

.help-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 700px;
  margin-top: 30px;
  padding: 8px;
  border: 1px solid rgba(103, 119, 139, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(45, 65, 92, 0.08);
}

.help-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.help-search input {
  min-width: 0;
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #111821;
  outline: none;
}

.help-search button {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: #111821;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.help-status-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(103, 119, 139, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, rgba(35, 176, 111, 0.18), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, #eef6fb 100%);
  box-shadow: var(--shadow);
}

.help-status-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 18px 20px;
  border: 1px solid rgba(103, 119, 139, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.help-status-panel span {
  color: #5c6b7d;
  font-size: 14px;
  font-weight: 800;
}

.help-status-panel strong {
  color: #0aa36a;
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
}

.help-section {
  padding: clamp(34px, 5vw, 62px) 0 0;
}

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

.help-category-grid article,
.help-article-list article,
.help-path-grid article {
  border: 1px solid rgba(103, 119, 139, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(45, 65, 92, 0.07);
}

.help-category-grid article {
  min-height: 210px;
  padding: 24px;
}

.help-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, #23b06f, #2e8df4);
  box-shadow: 0 12px 22px rgba(45, 65, 92, 0.12);
}

.help-icon::before,
.help-icon::after {
  position: absolute;
  content: "";
}

.help-icon-download::before {
  inset: 12px 22px 17px;
  border-left: 4px solid #fff;
}

.help-icon-download::after {
  left: 17px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
}

.help-icon-account {
  background: linear-gradient(145deg, #ffb84d, #f04420);
}

.help-icon-account::before {
  top: 10px;
  left: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
}

.help-icon-account::after {
  left: 12px;
  bottom: 10px;
  width: 28px;
  height: 15px;
  border-radius: 18px 18px 8px 8px;
  background: #fff;
}

.help-icon-copy {
  background: linear-gradient(145deg, #7337f2, #2e8df4);
}

.help-icon-copy::before {
  inset: 15px 12px 14px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-45deg);
}

.help-icon-copy::after {
  right: 11px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.help-icon-bot {
  background: linear-gradient(145deg, #111821, #3d4f63);
}

.help-icon-bot::before {
  inset: 13px 10px 10px;
  border: 3px solid #fff;
  border-radius: 10px;
}

.help-icon-bot::after {
  top: 22px;
  left: 17px;
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
}

.help-icon-plugin {
  background: linear-gradient(145deg, #23b06f, #15965d);
}

.help-icon-plugin::before {
  inset: 13px;
  border: 4px solid #fff;
  border-radius: 9px;
}

.help-icon-plugin::after {
  right: 9px;
  top: 9px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
}

.help-icon-risk {
  background: linear-gradient(145deg, #f7c886, #ff6534);
}

.help-icon-risk::before {
  left: 16px;
  top: 10px;
  width: 20px;
  height: 24px;
  border-radius: 12px 12px 14px 14px;
  background: #fff;
}

.help-icon-risk::after {
  left: 24px;
  top: 17px;
  width: 4px;
  height: 15px;
  border-radius: 999px;
  background: #ff6534;
}

.help-category-grid h3,
.help-article-list h3,
.help-path-grid h3 {
  margin: 0;
  color: #111821;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.32;
}

.help-category-grid p,
.help-article-list p,
.help-path-grid p {
  margin: 12px 0 0;
  color: #5d6b7a;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.help-article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.help-article-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  min-height: 132px;
  padding: 22px;
}

.help-article-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #eef5fb;
  color: #0aa36a;
  font-size: 14px;
  font-weight: 900;
}

.help-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.help-path-grid article {
  min-height: 188px;
  padding: 22px;
}

.help-path-grid strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #111821;
  color: #fff;
  font-size: 18px;
}

.legal-hero {
  padding: clamp(54px, 7vw, 86px) 0 34px;
}

.legal-hero h1 {
  max-width: 980px;
  margin: 10px 0 0;
  color: #111821;
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 1.05;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 920px;
  margin: 22px 0 0;
  color: #26313d;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 650;
  line-height: 1.75;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.legal-meta span {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(103, 119, 139, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #4f5e6f;
  font-size: 13px;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 0 0 clamp(64px, 7vw, 96px);
}

.legal-toc {
  position: sticky;
  top: 138px;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(103, 119, 139, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.legal-toc strong {
  margin-bottom: 4px;
  color: #111821;
  font-size: 15px;
  font-weight: 900;
}

.legal-toc a {
  color: #5d6b7a;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.legal-toc a:hover {
  color: #0b8f60;
}

.legal-doc {
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(103, 119, 139, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.legal-doc section {
  padding: 30px 0;
  border-top: 1px solid rgba(103, 119, 139, 0.14);
  scroll-margin-top: 150px;
}

.legal-doc section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-doc section:last-child {
  padding-bottom: 0;
}

.legal-doc h2 {
  margin: 0 0 16px;
  color: #111821;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

.legal-doc p,
.legal-doc li {
  color: #536273;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.85;
}

.legal-doc p {
  margin: 0;
}

.legal-doc p + p,
.legal-doc p + ul,
.legal-doc ul + p {
  margin-top: 14px;
}

.legal-doc ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-doc li::marker {
  color: #0aa36a;
}

.legal-contact {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(35, 176, 111, 0.22);
  border-radius: 8px;
  background: rgba(226, 248, 235, 0.5);
}

.legal-contact span {
  color: #26313d;
  font-weight: 800;
  line-height: 1.55;
}

.legal-contact a {
  color: #08784f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  margin-top: 10px;
  padding: 24px;
  border: 1px solid rgba(247, 172, 64, 0.28);
  border-radius: 8px;
  background: rgba(255, 247, 235, 0.76);
}

.authority-link-section {
  padding: clamp(24px, 4vw, 48px) 0 clamp(56px, 6vw, 86px);
}

.authority-link-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(103, 119, 139, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 251, 0.92));
  box-shadow: var(--shadow);
}

.legal-doc .authority-link-panel {
  margin-top: 30px;
}

.authority-link-copy {
  max-width: 720px;
}

.authority-link-copy .eyebrow {
  margin-bottom: 8px;
}

.authority-link-copy h2,
.authority-link-copy h3 {
  margin: 0;
  color: #111821;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 900;
  line-height: 1.2;
}

.authority-link-copy p {
  margin: 12px 0 0;
  color: #536273;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.authority-link-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.authority-link-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #111821;
  border-radius: 8px;
  background: #111821;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.authority-link-actions a.secondary {
  background: #fff;
  color: #111821;
}

.bot-cover-dashboard::before {
  background:
    linear-gradient(160deg, #143966, #071523 52%, #12a4ff),
    radial-gradient(circle at 78% 38%, #39d0ff 0 14%, transparent 15%);
}

.bot-cover-position::before {
  background: radial-gradient(circle at 80% 15%, #00e1ff 0 12%, transparent 13%), linear-gradient(135deg, #0935c9, #001b7d 62%, #27d7ff);
}

.bot-cover-smart::before {
  background: radial-gradient(circle at 72% 24%, #ff3a31 0 20%, transparent 21%), linear-gradient(160deg, #fff9ef 0 50%, #ffe0c8);
}

.bot-cover-smart {
  color: #8c4b23;
}

.bot-cover-quantum::before {
  background: radial-gradient(circle at 64% 36%, #d3b56e 0 17%, transparent 18%), linear-gradient(135deg, #1c1144, #6817f2 58%, #11051e);
}

.bot-cover-reversion::before,
.bot-cover-risk::before,
.bot-cover-smc::before {
  background: linear-gradient(135deg, #10221d, #133a21 54%, #1dea6e);
}

.bot-cover-ema::before {
  background: radial-gradient(ellipse at 64% 52%, transparent 0 26%, #23e798 27% 30%, transparent 31%), linear-gradient(140deg, #10131c, #061f24);
}

.bot-cover-krabs::before {
  background: radial-gradient(circle at 58% 34%, #fb4f3e 0 17%, transparent 18%), linear-gradient(135deg, #101a2d, #111 58%, #dda915);
}

.bot-cover-cloud::before {
  background: radial-gradient(circle at 50% 44%, #6a42ff 0 24%, transparent 25%), linear-gradient(135deg, #0b1430, #03101d);
}

.bot-cover-gold::before {
  background: repeating-linear-gradient(165deg, #f4b845 0 18px, #9b5f12 18px 28px), linear-gradient(135deg, #0a0704, #50320e);
}

.bot-cover-manager::before,
.bot-cover-ob::before {
  background: linear-gradient(135deg, #090c12, #1f2a3a 55%, #00a8ff);
}

.bot-cover-apex::before {
  background: radial-gradient(circle at 50% 18%, #0ff 0 11%, transparent 12%), linear-gradient(145deg, #041129, #0d2a75 66%, #111);
}

.bot-cover-framework::before {
  background: linear-gradient(135deg, #fafafa 0 34%, #ecfff5 34% 67%, #ffe9d8 67%), linear-gradient(90deg, #e84242, #2ec56b);
}

.bot-cover-framework {
  color: #1b2430;
}

.bot-cover-scalper::before {
  background: radial-gradient(circle at 46% 24%, #f7d34b 0 12%, transparent 13%), linear-gradient(140deg, #08080e, #1f2230);
}

@media (max-width: 1060px) {
  .topbar,
  .storebar {
    width: min(100% - 32px, var(--page-width));
  }

  .primary-nav,
  .filters button:nth-child(2) {
    display: none;
  }

  .storebar {
    flex-wrap: wrap;
    padding-bottom: 12px;
  }

  .download-storebar {
    flex-wrap: nowrap;
  }

  .search-box {
    order: 3;
    flex-basis: 100%;
  }

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

  .bot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plugin-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .authority-link-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .authority-link-actions {
    justify-content: flex-start;
  }

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

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .help-category-grid,
  .help-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .copy-hero,
  .copy-after-hero,
  .copy-provider-panel {
    grid-template-columns: 1fr;
  }

  .copy-explore-panel {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  }

  .copy-feature-grid,
  .copy-metric-list,
  .copy-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-device-panel {
    min-height: 360px;
  }

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

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

  .download-product-rail {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .download-product-card {
    flex: 0 0 178px;
    scroll-snap-align: start;
  }

  .samsung-card {
    grid-column: 2;
    width: 100%;
  }

  .bot-cover,
  .image-cover img {
    min-height: 168px;
    height: 168px;
  }

  .plugin-cover,
  .plugin-cover-front img {
    height: 160px;
  }
}

@media (max-width: 760px) {
  .topbar,
  .storebar,
  .hero-heading,
  .path-grid,
  .product-shelf,
    .marketproof-section,
    .bot-catalog-section,
  .plugin-catalog-section,
  .download-hero,
  .download-options-section,
  .download-product-showcase,
  .download-workflow-section,
  .system-requirements-section,
  .download-faq-section,
  .authority-link-section,
  .copy-hero,
  .copy-section,
  .help-hero,
  .help-section,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 28px, var(--page-width));
  }

  .topbar {
    min-height: 58px;
  }

  .brand-mark,
  .brand-logo-slot,
  .brand-logo-img {
    width: 25px;
    height: 25px;
  }

  .brand-logo-slot {
    flex-basis: 25px;
  }

  .brand-wordmark-img {
    width: 146px;
  }

  .brand-mark {
    border-width: 6px;
  }

  .header-actions {
    gap: 8px;
  }

  .login-link {
    display: none;
  }

  .language-trigger {
    min-height: 38px;
    padding: 0 8px;
  }

  .solid-button,
  .outline-button {
    min-height: 42px;
    padding: 0 18px;
  }

  .store-nav {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .store-hero {
    padding-top: 24px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-heading p:last-child {
    font-size: 15px;
  }

  .path-grid,
  .proof-stats,
  .safety-grid,
  .safety-item,
  .download-card-grid,
  .platform-download-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .download-product-panel {
    padding: 20px 14px 22px;
  }

  .download-product-panel h2 {
    margin-bottom: 16px;
  }

  .download-product-card {
    flex-basis: 164px;
    padding: 10px 10px 12px;
  }

  .download-product-next {
    display: none;
  }

  .download-platform-note {
    padding: 20px 18px;
    border-radius: 16px;
    font-size: 14px;
  }

  .download-platform-hero {
    padding-top: 12px;
  }

  .download-hero-heading {
    margin-bottom: 18px;
    text-align: left;
  }

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

  .download-hero-heading p {
    margin-top: 10px;
    font-size: 14px;
  }

  .platform-download-card {
    min-height: 218px;
  }

  .samsung-card {
    grid-column: auto;
    width: 100%;
  }

  .download-market-tabs {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .download-market-tabs span:not(.tab-dot) {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 18px 0 14px;
    font-size: 14px;
  }

  .download-hero-copy h1 {
    font-size: 36px;
  }

  .copy-hero {
    padding: 34px 0 48px;
  }

  .copy-hero-copy h1 {
    font-size: 36px;
  }

  .copy-hero-copy > p:last-of-type {
    font-size: 15px;
  }

  .copy-hero-rule {
    margin-bottom: 28px;
  }

  .copy-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 40px;
  }

  .copy-hero-stats article {
    min-height: 152px;
    padding: 18px 14px;
  }

  .copy-stat-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .copy-hero-stats strong {
    font-size: 36px;
  }

  .copy-hero-stats span {
    font-size: 14px;
  }

  .copy-dashboard {
    padding: 16px;
  }

  .copy-chart {
    min-height: 200px;
    gap: 8px;
    padding: 20px 14px 12px;
  }

  .copy-feature-grid,
  .copy-metric-list,
  .copy-flow-grid,
  .copy-explore-panel,
  .copy-provider-panel,
  .help-category-grid,
  .help-article-list,
  .help-path-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-doc {
    padding: 24px 18px;
  }

  .legal-doc section {
    scroll-margin-top: 122px;
  }

  .help-hero {
    padding: 38px 0 20px;
  }

  .help-hero-copy h1 {
    font-size: 36px;
  }

  .help-search {
    grid-template-columns: 1fr;
  }

  .help-search button {
    width: 100%;
  }

  .help-category-grid article,
  .help-article-list article,
  .help-path-grid article {
    min-height: auto;
  }

  .copy-after-hero {
    gap: 16px;
  }

  .copy-explore-panel,
  .copy-education-panel {
    min-height: auto;
  }

  .copy-strategy-preview {
    min-height: 240px;
  }

  .copy-preview-card-main {
    right: 18px;
  }

  .copy-feature-grid article,
  .copy-flow-grid article,
  .copy-metric-list article {
    min-height: auto;
  }

  .copy-provider-panel {
    padding: 24px;
  }

  .download-device-panel {
    min-height: 314px;
  }

  .device-window {
    top: 28px;
    left: 18px;
    right: 28px;
    min-height: 230px;
  }

  .device-phone {
    display: none;
  }

  .download-card {
    min-height: auto;
  }

  .download-card p {
    min-height: auto;
  }

  .requirements-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .path-card {
    min-height: 220px;
  }

  .shelf-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-row {
    grid-template-columns: repeat(6, 158px);
  }

  .product-art {
    height: auto;
  }

  .proof-stats article {
    min-height: 168px;
  }

  .safety-art {
    max-width: 260px;
  }

  .bot-catalog-head,
  .bot-catalog-head > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

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

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

  .footer-socials {
    gap: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .bot-cover,
  .image-cover img {
    min-height: 150px;
    height: 150px;
  }

  .plugin-cover,
  .plugin-cover-front img {
    height: 150px;
  }
}

@media (max-width: 430px) {
  .topbar,
  .storebar,
  .hero-heading,
  .path-grid,
  .product-shelf,
    .marketproof-section,
    .bot-catalog-section,
  .plugin-catalog-section,
  .download-hero,
  .download-options-section,
  .download-product-showcase,
  .download-workflow-section,
  .system-requirements-section,
  .download-faq-section,
  .copy-hero,
  .copy-section,
  .help-hero,
  .help-section,
  .legal-hero,
  .legal-layout,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 22px, var(--page-width));
  }

  .store-nav {
    font-size: 13px;
  }

  .language-trigger span {
    display: none;
  }

  .language-trigger {
    width: 40px;
    justify-content: center;
    padding: 0;
  }

  h1 {
    font-size: 31px;
  }

  .path-card .path-label,
  .shelf-tab {
    min-height: 44px;
    font-size: 16px;
  }

  .product-shelf {
    padding-inline: 12px;
  }

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

  .copy-after-hero {
    gap: 12px;
  }

  .copy-explore-panel,
  .copy-education-panel {
    padding: 22px;
  }

  .copy-panel-copy h2 {
    font-size: 26px;
  }

  .copy-strategy-preview {
    min-height: 310px;
  }

  .copy-preview-card,
  .copy-preview-card-main {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .copy-strategy-preview {
    display: grid;
    gap: 12px;
  }

  .copy-strategy-preview::before {
    inset: 24px 14px auto auto;
    width: 140px;
    height: 140px;
  }

  .copy-education-grid {
    grid-template-columns: 1fr;
  }

  .help-hero-copy h1 {
    font-size: 31px;
  }

  .help-status-panel,
  .help-category-grid article,
  .help-article-list article,
  .help-path-grid article {
    padding: 18px;
  }

  .help-article-list article {
    grid-template-columns: 1fr;
  }

  .help-article-list span {
    grid-row: auto;
    margin-bottom: 14px;
  }
}
