:root {
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.09);
  --telegram: #229ed9;
  --blue: #4c73ff;
  --violet: #7659f6;
  --success: #12845d;
  --danger: #c93c52;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 20px 60px rgba(39, 57, 94, 0.1);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -4%, rgba(34, 158, 217, 0.14), transparent 34rem),
    radial-gradient(circle at 92% 10%, rgba(118, 89, 246, 0.12), transparent 32rem),
    var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(247, 249, 252, 0.76);
  backdrop-filter: blur(24px) saturate(155%);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--telegram), var(--blue) 55%, var(--violet));
  box-shadow: 0 12px 28px rgba(76, 115, 255, 0.22);
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(76, 115, 255, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px var(--line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
}

.hero {
  padding: 92px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(76, 115, 255, 0.14);
  border-radius: 999px;
  color: #4259c7;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 720;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--telegram);
  box-shadow: 0 0 0 5px rgba(34, 158, 217, 0.12);
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, #188ec9, #4c73ff 48%, #8259ed);
  background-clip: text;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 246, 255, 0.82));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -90px;
  right: -80px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(145deg, rgba(34, 158, 217, 0.36), rgba(118, 89, 246, 0.42));
  filter: blur(4px);
}

.signal-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.signal-card + .signal-card {
  margin-top: 14px;
}

.signal-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.handle-cluster {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.handle-chip {
  padding: 10px 14px;
  border: 1px solid rgba(76, 115, 255, 0.13);
  border-radius: 999px;
  color: #3149ad;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 78px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 48px);
  letter-spacing: -0.045em;
}

.section-heading p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  color: #405bd1;
  font-weight: 720;
  white-space: nowrap;
}

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

.product-card,
.article-card,
.content-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(27, 45, 84, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 115, 255, 0.2);
  box-shadow: 0 24px 48px rgba(27, 45, 84, 0.1);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #e7f6ff, #ece9ff);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .card-media img {
  transform: scale(1.035);
}

.status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #29419f;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 18px rgba(31, 48, 88, 0.12);
  font-size: 12px;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.status-badge.sold {
  color: var(--danger);
}

.card-body {
  padding: 22px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 13px;
}

.card-body h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.card-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.price {
  color: #1d3fb4;
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.price small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.page-hero {
  padding: 78px 0 42px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.page-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.filter-button {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #475467;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.filter-button.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--telegram), var(--blue));
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: start;
}

.detail-media {
  position: sticky;
  top: 100px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #e7f6ff, #ece9ff);
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb span::before {
  margin-right: 8px;
  content: "/";
  color: #a8b0bf;
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(36px, 5.5vw, 60px);
  letter-spacing: -0.055em;
}

.detail-lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.detail-price {
  margin-top: 28px;
  color: #2446ba;
  font-size: 36px;
  font-weight: 800;
}

.attribute-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.attribute {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.attribute dt {
  color: var(--muted);
  font-size: 12px;
}

.attribute dd {
  margin: 7px 0 0;
  font-weight: 720;
}

.prose {
  color: #344054;
  font-size: 16px;
  line-height: 1.9;
}

.prose h2,
.prose h3 {
  color: var(--ink);
  letter-spacing: -0.025em;
}

.prose img {
  height: auto;
  border-radius: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, #188fc9, #4d72ef 54%, #7556e8);
  box-shadow: 0 24px 60px rgba(61, 87, 193, 0.24);
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.contact-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.contact-panel .button {
  color: #2f4bb1;
  background: #fff;
  box-shadow: none;
}

.site-footer {
  padding: 56px 0 36px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 15px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  line-height: 1.9;
}

.footer-links {
  display: grid;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 13px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px;
  border: 1px dashed rgba(76, 115, 255, 0.25);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
}

[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    flex-direction: column;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-panel {
    min-height: auto;
  }

  .detail-media {
    position: static;
    max-width: 680px;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero {
    padding: 62px 0 46px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 43px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 16px;
  }

  .section {
    padding: 54px 0;
  }

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

  .card-grid,
  .attribute-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 30px;
  }

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

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

/* We888 v1.1 — Telegram ecosystem brand system */
:root {
  --telegram-deep: #0e86c4;
  --brand-navy: #101828;
  --brand-soft: #eef6ff;
  --violet-soft: #f2efff;
  --shadow-soft: 0 18px 48px rgba(30, 56, 112, 0.08);
  --shadow-brand: 0 30px 90px rgba(49, 82, 164, 0.16);
}

body {
  background:
    radial-gradient(circle at 4% -6%, rgba(34, 158, 217, 0.17), transparent 31rem),
    radial-gradient(circle at 94% 4%, rgba(118, 89, 246, 0.14), transparent 34rem),
    linear-gradient(180deg, #f9fbff 0, #f5f7fb 44rem, #f7f8fc 100%);
}

body::before {
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(91, 113, 159, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 113, 159, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 46rem);
}

.site-header {
  border-bottom-color: rgba(48, 79, 137, 0.08);
  background: rgba(250, 252, 255, 0.79);
}

.nav-shell {
  min-height: 82px;
}

.brand-lockup {
  gap: 11px;
}

.brand-lockup img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 8px 14px rgba(34, 158, 217, 0.18));
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--brand-navy);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.brand-copy small {
  color: #6d7890;
  font-size: 9px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  gap: 25px;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 30px 0 27px;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 50%;
  bottom: 20px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: linear-gradient(90deg, var(--telegram), var(--violet));
  transition: right 180ms ease, left 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  right: 0;
  left: 0;
}

.nav-cta {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 13px;
}

.telegram-dot {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--telegram-deep);
  background: #fff;
  font-size: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 88px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 540px;
  top: 40px;
  left: 54%;
  border: 1px solid rgba(89, 106, 226, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 72px rgba(67, 150, 224, 0.025), 0 0 0 144px rgba(113, 89, 241, 0.018);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  gap: clamp(48px, 6vw, 88px);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 0.93;
  letter-spacing: -0.072em;
}

.hero-brand {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--brand-navy);
  font-size: 0.42em;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-copy {
  max-width: 640px;
  color: #5f6c84;
  font-size: 18px;
}

.ecosystem-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 33px;
  color: #6f7a8e;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.ecosystem-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.ecosystem-strip span::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--telegram);
}

.identity-panel {
  min-height: 500px;
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.95);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 255, 0.88)),
    linear-gradient(135deg, var(--telegram), var(--violet));
  box-shadow: var(--shadow-brand);
}

.identity-panel::before {
  width: 330px;
  height: 330px;
  top: -180px;
  right: -95px;
  opacity: 0.75;
  filter: blur(12px);
}

.identity-panel::after {
  position: absolute;
  width: 210px;
  height: 210px;
  right: -80px;
  bottom: -95px;
  border-radius: 50%;
  content: "";
  background: rgba(98, 77, 235, 0.1);
  filter: blur(5px);
}

.identity-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 5px 5px 16px;
  border-bottom: 1px solid rgba(74, 92, 135, 0.1);
}

.identity-kicker,
.contact-kicker {
  display: block;
  margin-bottom: 6px;
  color: #68768f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.identity-header strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.verified-seal {
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--telegram), var(--blue));
  box-shadow: 0 10px 24px rgba(34, 158, 217, 0.24);
  font-size: 16px;
  font-weight: 900;
}

.identity-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.identity-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(71, 94, 144, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 9px 26px rgba(42, 64, 112, 0.045);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.identity-row:hover {
  transform: translateX(4px);
  border-color: rgba(34, 158, 217, 0.24);
  box-shadow: 0 14px 30px rgba(42, 64, 112, 0.09);
}

.identity-row-primary {
  border-color: rgba(34, 158, 217, 0.18);
  background: rgba(255, 255, 255, 0.88);
}

.identity-avatar {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #1aa6df, #3f76e9);
  box-shadow: 0 9px 20px rgba(34, 158, 217, 0.19);
  font-weight: 800;
}

.identity-avatar-violet {
  background: linear-gradient(145deg, #6a6df4, #8b53df);
}

.identity-avatar-blue {
  background: linear-gradient(145deg, #3168d7, #2146a7);
}

.identity-name {
  display: grid;
  gap: 4px;
}

.identity-name strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.identity-name small {
  color: #7c8799;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.identity-arrow {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #51647e;
  background: rgba(238, 243, 252, 0.82);
}

.identity-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 3px 6px 0;
  color: #7a8597;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot,
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2cc58b;
  box-shadow: 0 0 0 4px rgba(44, 197, 139, 0.12);
}

.section {
  padding: 86px 0;
}

.section-heading h2 {
  color: var(--brand-navy);
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.052em;
}

.section-heading p {
  color: #68758b;
}

.product-card,
.article-card,
.content-card {
  border-color: rgba(44, 64, 102, 0.075);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.product-card {
  border-radius: 27px;
}

.product-card .card-media {
  aspect-ratio: 16 / 10.5;
  margin: 8px 8px 0;
  border-radius: 21px;
}

.service-card .card-media {
  background: linear-gradient(145deg, #e8f8ff, #edf1ff);
}

.asset-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(245, 243, 255, 0.88));
}

.asset-card::after {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -50px;
  bottom: -55px;
  border-radius: 50%;
  content: "";
  background: rgba(111, 83, 235, 0.09);
}

.asset-card .card-media {
  background: linear-gradient(145deg, #eaf4ff, #f0ebff);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: #36526d;
  background: rgba(255, 255, 255, 0.9);
}

.status-badge .status-dot {
  width: 6px;
  height: 6px;
  box-shadow: none;
}

.card-body {
  padding: 24px 25px 26px;
}

.card-meta {
  color: #7a8598;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.card-body h2,
.card-body h3 {
  color: var(--brand-navy);
  font-size: 22px;
}

.card-body p {
  color: #69768b;
}

.price {
  color: #244fc7;
}

.price small {
  text-transform: none;
}

.card-arrow {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(56, 78, 126, 0.09);
  border-radius: 50%;
  color: #3f5ec4;
  background: #f5f8ff;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-card:hover .card-arrow {
  transform: rotate(8deg);
  color: #fff;
  background: linear-gradient(145deg, var(--telegram), var(--blue));
}

.asset-showcase {
  position: relative;
}

.asset-showcase::before {
  position: absolute;
  z-index: -1;
  inset: 24px 0;
  content: "";
  background: linear-gradient(180deg, rgba(236, 241, 255, 0.48), rgba(246, 244, 255, 0.1));
  border-block: 1px solid rgba(75, 92, 138, 0.04);
}

.official-matrix {
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  overflow: hidden;
  padding: 48px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.16), transparent 18rem),
    linear-gradient(125deg, #0b8fca, #456ee8 52%, #6c50d9);
}

.contact-kicker {
  color: rgba(255, 255, 255, 0.68);
}

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

.contact-identities a {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-identities a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.17);
}

.contact-identities strong {
  font-size: 15px;
}

.contact-identities small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 62px;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  top: -190px;
  right: 8%;
  border: 1px solid rgba(70, 107, 220, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 75px rgba(34, 158, 217, 0.025), 0 0 0 150px rgba(118, 89, 246, 0.018);
}

.page-hero h1 {
  color: var(--brand-navy);
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.page-hero-pills span {
  padding: 8px 12px;
  border: 1px solid rgba(61, 91, 156, 0.09);
  border-radius: 999px;
  color: #5c6a83;
  background: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 720;
}

.filter-bar {
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(51, 77, 124, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.63);
  box-shadow: 0 10px 28px rgba(44, 66, 111, 0.045);
  width: max-content;
  max-width: 100%;
}

.filter-button {
  border: 0;
  background: transparent;
}

.detail-page {
  padding-top: 76px;
}

.detail-grid {
  gap: clamp(42px, 6vw, 76px);
}

.detail-media {
  padding: 12px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.72);
}

.detail-media img {
  border-radius: 28px;
}

.detail-copy h1 {
  color: var(--brand-navy);
  font-size: clamp(42px, 5.5vw, 66px);
}

.detail-price {
  display: grid;
  gap: 4px;
}

.detail-price small {
  color: #7b8799;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.attribute {
  padding: 18px;
  border-color: rgba(52, 75, 119, 0.07);
  background: rgba(255, 255, 255, 0.76);
}

.detail-official {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid rgba(34, 158, 217, 0.12);
  border-radius: 17px;
  background: rgba(238, 248, 255, 0.7);
}

.detail-official .verified-seal {
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.detail-official > span:last-child {
  display: grid;
  gap: 3px;
}

.detail-official strong {
  font-size: 13px;
}

.detail-official small {
  color: #748095;
  font-size: 11px;
}

.detail-section {
  margin-top: 30px;
  border-radius: 22px;
}

.detail-section-compact {
  margin-top: 18px;
}

.article-card {
  border-radius: 27px;
}

.article-card .card-media {
  margin: 8px 8px 0;
  border-radius: 21px;
}

.article-media {
  position: relative;
}

.article-index {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #36526d;
  background: rgba(255, 255, 255, 0.88);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.article-read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  color: #4760bd;
  font-size: 13px;
  font-weight: 720;
}

.article-page {
  padding-top: 76px;
}

.article-content {
  max-width: 900px;
  padding: clamp(28px, 6vw, 72px);
  border-radius: 34px;
}

.article-title {
  max-width: 760px;
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.article-byline .identity-avatar {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  font-size: 13px;
}

.article-byline > span:last-child {
  display: grid;
  gap: 3px;
}

.article-byline strong {
  font-size: 13px;
}

.article-byline small {
  color: #7b8698;
  font-size: 11px;
}

.article-prose {
  margin-top: 38px;
}

.related-articles {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding-top: 68px;
}

@media (max-width: 900px) {
  .site-nav > a:not(.nav-cta) {
    padding: 10px 7px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .hero {
    padding-top: 78px;
  }

  .hero-grid {
    gap: 52px;
  }

  .identity-panel {
    width: min(100%, 640px);
  }

  .official-matrix {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav-shell {
    min-height: 72px;
  }

  .brand-lockup img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .hero {
    padding: 58px 0 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 46px;
  }

  .hero-copy {
    line-height: 1.65;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .ecosystem-strip {
    gap: 9px 14px;
  }

  .identity-panel {
    min-height: 0;
    padding: 19px;
    border-radius: 28px;
  }

  .identity-header {
    margin-bottom: 15px;
  }

  .identity-row {
    grid-template-columns: 42px minmax(0, 1fr) 26px;
    gap: 11px;
    padding: 13px;
    border-radius: 17px;
  }

  .identity-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .identity-name strong {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    gap: 12px;
  }

  .product-card .card-media,
  .article-card .card-media {
    margin: 7px 7px 0;
  }

  .card-body {
    padding: 21px;
  }

  .page-hero {
    padding: 66px 0 38px;
  }

  .filter-bar {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 20px;
    scrollbar-width: none;
  }

  .filter-button {
    white-space: nowrap;
  }

  .detail-page {
    padding-top: 40px;
  }

  .detail-grid {
    gap: 35px;
  }

  .detail-media {
    padding: 8px;
    border-radius: 27px;
  }

  .detail-media img {
    border-radius: 21px;
  }

  .detail-copy h1 {
    font-size: 43px;
  }

  .official-matrix {
    padding: 30px 23px;
  }

  .contact-identities {
    grid-template-columns: 1fr;
  }

  .contact-identities a {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .contact-identities small {
    text-align: right;
  }

  .article-page {
    padding-top: 40px;
  }

  .article-content {
    padding: 26px 22px;
    border-radius: 25px;
  }

  .article-title {
    font-size: 40px;
  }
}
.price-contact { display: none; }
.price-conditional[data-price="0"],
.price-conditional[data-price="0.0"],
.price-conditional[data-price="0.00"] { color: var(--ink); }
.price-conditional[data-price="0"] .price-number,
.price-conditional[data-price="0.0"] .price-number,
.price-conditional[data-price="0.00"] .price-number { display: none; }
.price-conditional[data-price="0"] .price-contact,
.price-conditional[data-price="0.0"] .price-contact,
.price-conditional[data-price="0.00"] .price-contact { display: inline; }
