* { box-sizing: border-box; }
:root {
  --bg: #07111f;
  --bg-elevated: #0d1a2d;
  --bg-soft: #10233d;
  --line: rgba(148, 163, 184, 0.2);
  --line-strong: rgba(96, 165, 250, 0.34);
  --text: #e6eef8;
  --muted: #93a4bb;
  --primary: #59c3ff;
  --primary-strong: #2f8cff;
  --accent: #7cf4d3;
  --misi-primary: #20D3A5;
  --misi-secondary: #2AC7FF;
  --misi-bg: #071523;
  --misi-highlight: #59FFD4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 32px 110px rgba(0, 0, 0, 0.38);
}
html { background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(89, 195, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 195, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(47, 140, 255, 0.2), transparent 28%),
    radial-gradient(circle at 86% 2%, rgba(124, 244, 211, 0.12), transparent 24%),
    linear-gradient(180deg, #08111d 0%, #07111f 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
a:hover { color: #8cdaff; }
img { max-width: 100%; display: block; }
.site-shell { min-height: 100vh; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.84);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.18);
}
.header-inner {
  min-height: 90px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-wrap { display: flex; flex-direction: column; gap: 8px; }
.brand {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 188px;
  max-height: 48px;
  object-fit: contain;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(89, 195, 255, 0.2), rgba(124, 244, 211, 0.14));
  box-shadow: inset 0 0 24px rgba(89, 195, 255, 0.08);
}
.brand-tag {
  display: none;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 420px;
}
.nav { display: flex; gap: 12px; flex-wrap: wrap; }
.nav a {
  color: #d7e3f3;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}
.nav a:hover {
  border-color: rgba(89, 195, 255, 0.22);
  background: rgba(89, 195, 255, 0.08);
}
.nav-toggle,
.shop-menu-toggle {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #d8e7f7;
  background: rgba(13, 26, 45, 0.68);
  cursor: pointer;
}
.nav-toggle {
  min-width: 78px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}
.nav-toggle-lines {
  width: 18px;
  display: grid;
  gap: 4px;
}
.nav-toggle-lines i {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.nav-toggle b {
  font: inherit;
}
.announcement-bar {
  padding: 14px 0;
  background: transparent;
}
.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
}
.announcement-label {
  flex: 0 0 auto;
  min-width: 48px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #03101d;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  font-size: 12px;
  font-weight: 800;
}
.announcement-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 32px, #000 calc(100% - 32px), transparent);
}
.announcement-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: announcement-scroll 28s linear infinite;
}
.announcement-marquee:hover .announcement-track {
  animation-play-state: paused;
}
.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 520px;
  color: #c8d8eb;
  white-space: nowrap;
}
.announcement-item strong {
  color: #fff;
  font-size: 13px;
}
.announcement-item span {
  overflow: hidden;
  color: #9fb1c8;
  font-size: 13px;
  text-overflow: ellipsis;
}
.announcement-item:hover span,
.announcement-item:hover strong {
  color: var(--accent);
}
.announcement-bar + .site-main .hero-home {
  padding-top: 20px;
}
.announcement-bar + .site-main .page-hero {
  padding-top: 24px;
}
@keyframes announcement-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.site-main { min-height: calc(100vh - 320px); }
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.hero-home { padding: 30px 0 58px; }
.hero-showcase {
  position: relative;
}
.hero-slides {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(124, 244, 211, 0.18);
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.88), rgba(10, 21, 37, 0.92));
  box-shadow: var(--shadow-strong);
}
.hero-slides::-webkit-scrollbar { height: 0; }
.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(3, 12, 23, 0.34);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}
.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(203, 213, 225, 0.46);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: width 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hero-dot.is-active {
  width: 26px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 18px rgba(89, 195, 255, 0.34);
}
.hero-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.article,
.card,
.list-item,
.footer-panel,
.search-form {
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.88), rgba(10, 21, 37, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
}
.detail-hero h1 {
  max-width: 1080px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
}
.hero-summary {
  max-width: 720px;
  margin: 14px 0 0;
  color: #b2c1d5;
  font-size: 17px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}
.module-hero .hero-actions {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 6vw, 76px);
  right: clamp(28px, 8vw, 120px);
  bottom: clamp(34px, 6vw, 58px);
  justify-content: flex-start;
  margin-top: 0;
}
.button-primary,
.button-secondary,
.search-form button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid transparent;
}
.button-primary,
.search-form button {
  color: #03101d;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.button-secondary {
  color: var(--text);
  background: rgba(89, 195, 255, 0.08);
  border-color: rgba(89, 195, 255, 0.22);
}
.hero-actions a {
  min-width: 150px;
  gap: 8px;
  box-shadow: 0 14px 36px rgba(47, 140, 255, 0.14);
}
.hero-actions a::after {
  content: "→";
  font-weight: 800;
}
.hero-metrics {
  width: min(1040px, calc(100% - 48px));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
}
.metric-item {
  min-height: 132px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.08), transparent 44%),
    #07111f;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.metric-item.is-clickable:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 244, 211, 0.32);
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.12), transparent 44%),
    #0b1a2e;
}
.metric-item small {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.metric-item strong {
  display: block;
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}
.metric-item span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.hero-slide,
.hero-fallback {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  background: linear-gradient(135deg, rgba(11, 35, 65, 0.95), rgba(15, 24, 42, 0.9));
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.hero-slide.is-active,
.hero-fallback {
  opacity: 1;
  pointer-events: auto;
}
.hero-slides:not(.is-ready) .hero-slide:first-child {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.1) contrast(1.08);
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.9), rgba(4, 12, 24, 0.42) 48%, rgba(4, 12, 24, 0.62)),
    linear-gradient(0deg, rgba(4, 12, 24, 0.66), transparent 50%),
    radial-gradient(circle at 78% 18%, rgba(89, 195, 255, 0.12), transparent 32%);
}
.hero-slide span {
  position: absolute;
  z-index: 1;
  left: clamp(28px, 6vw, 76px);
  right: clamp(28px, 8vw, 120px);
  bottom: clamp(112px, 11vw, 150px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  max-width: 760px;
}
.hero-slide em {
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.hero-slide strong,
.hero-fallback strong {
  display: block;
  width: 100%;
  max-width: 820px;
  min-width: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
  white-space: normal;
}
.hero-slide em,
.hero-fallback span { color: #cad8ea; font-style: normal; line-height: 1.7; }
.hero-slide small {
  display: block;
  width: 100%;
  color: #cad8ea;
  font-size: 18px;
  line-height: 1.8;
  min-width: 0;
  max-width: 680px;
  white-space: normal;
}
.list-search {
  width: min(620px, 100%);
  margin: 0 0 20px;
  padding: 8px;
  display: flex;
  gap: 10px;
  border: 1px solid rgba(89, 195, 255, 0.22);
  border-radius: 999px;
  border-color: rgba(89, 195, 255, 0.28);
  background: rgba(8, 20, 36, 0.86);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
}
.list-search input {
  flex: 1;
  min-width: 0;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 15px;
}
.list-search input::placeholder { color: #7f91aa; }
.list-search button {
  min-width: 104px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #03101d;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  font-weight: 700;
}
.grid-orb {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(89, 195, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 195, 255, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}
.section { padding: 46px 0; }
.hero-home + .section { padding-top: 58px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-head h2,
.section h1,
.article h1,
.downloads h2 {
  margin: 0;
  color: #fff;
}
.grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.news-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.service-section {
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(13, 26, 45, 0.88), rgba(10, 21, 37, 0.92));
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 244, 211, 0.36);
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(16, 35, 61, 0.9), rgba(10, 21, 37, 0.96));
}
.service-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 12px;
  color: #061117;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  font-weight: 800;
}
.service-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
}
.service-card p {
  margin: 0;
  color: #a9b9cd;
  line-height: 1.8;
}
.product-feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.showcase-section {
  display: grid;
  gap: 22px;
}
.showcase-large {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  border: 1px solid rgba(124, 244, 211, 0.2);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.88), rgba(10, 21, 37, 0.94));
  box-shadow: var(--shadow-strong);
}
.showcase-large > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(1.08) contrast(1.08);
}
.showcase-copy {
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showcase-copy h2,
.insight-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}
.showcase-copy p:not(.eyebrow),
.insight-band > p {
  color: #b3c3d8;
  font-size: 16px;
  line-height: 1.85;
}
.showcase-copy .button-secondary {
  width: fit-content;
  margin-top: 14px;
}
.showcase-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.image-tile {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #0b1626;
  box-shadow: var(--shadow);
}
.image-tile img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 12, 24, 0.84), rgba(4, 12, 24, 0.08) 58%);
}
.image-tile:hover img {
  transform: scale(1.04);
  opacity: 0.86;
}
.image-tile span {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.image-tile em {
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.image-tile strong {
  color: #fff;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.18;
}
.insight-band {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1.05fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(124, 244, 211, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.13), transparent 38%),
    linear-gradient(315deg, rgba(139, 92, 246, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(13, 26, 45, 0.94), rgba(10, 21, 37, 0.96));
  box-shadow: var(--shadow-strong);
}
.insight-band .button-primary {
  white-space: nowrap;
}
.card,
.list-item,
.article,
.search-form,
.page-hero-inner {
  border-radius: 18px;
}
.card,
.list-item,
.article { padding: 24px; }
.card {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(89, 195, 255, 0.34);
  background: linear-gradient(180deg, rgba(16, 35, 61, 0.92), rgba(10, 21, 37, 0.96));
}
.card-index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.category-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(13, 26, 45, 0.68);
}
.category-filter a.active,
.category-filter a:hover {
  color: #061117;
  border-color: transparent;
  background: linear-gradient(135deg, #36f1cd, #7df9ff);
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}
.pagination a,
.pagination span {
  min-height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #c8d8eb;
  background: rgba(13, 26, 45, 0.72);
}
.pagination a:hover,
.pagination a.active {
  color: #061117;
  border-color: transparent;
  background: linear-gradient(135deg, #36f1cd, #7df9ff);
}
.pagination span {
  color: var(--muted);
  min-width: auto;
}
.pagination span.ellipsis {
  min-width: 28px;
  padding: 0 4px;
  border-color: transparent;
  background: transparent;
}
.pagination-compact {
  justify-content: flex-start;
  gap: 8px;
  margin-top: 14px;
}
.docs-pagination-top {
  margin: 0 0 12px;
}
.pagination-compact a {
  min-width: 34px;
  min-height: 34px;
  padding: 0 11px;
  font-size: 13px;
}
.pagination-compact .page-arrow {
  min-width: 34px;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}
.docs-page-jump {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.docs-page-jump input {
  width: 72px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(13, 26, 45, 0.72);
  outline: none;
}
.docs-page-jump input:focus {
  border-color: rgba(54, 241, 205, 0.48);
}
.docs-page-jump button {
  min-height: 34px;
  padding: 0 12px;
  color: #061117;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #36f1cd, #7df9ff);
  font-weight: 800;
  cursor: pointer;
}
.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  margin-bottom: -20px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumb-trail a {
  color: #c8d8eb;
}
.breadcrumb-trail a:hover {
  color: var(--accent);
}
.breadcrumb-trail span {
  color: rgba(148, 163, 184, 0.56);
}
.card h2,
.card h3,
.list-item h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
}
.content-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 12px;
}
.content-meta span,
.news-meta span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(124, 244, 211, 0.16);
  border-radius: 999px;
  color: #9fb1c8;
  background: rgba(124, 244, 211, 0.045);
  font-size: 12px;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.product-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.product-social button,
.product-social span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 244, 211, 0.22);
  color: #d8ecff;
  background: rgba(124, 244, 211, 0.06);
  font: inherit;
  font-size: 13px;
}
.product-social button {
  cursor: pointer;
}
.product-social button:hover,
.product-social button.is-liked {
  color: #061117;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.product-social strong {
  font-size: 15px;
}
.card p,
.list-item p,
.content,
.downloads li,
.footer-grid p { color: #a9b9cd; }
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}
.list { display: grid; gap: 18px; }
.list-item { position: relative; }
.article {
  margin-top: 32px;
  margin-bottom: 56px;
}
.article-single { padding: 32px; }
.cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 0 24px;
}
.content {
  line-height: 1.9;
  font-size: 16px;
}
.content > *:first-child { margin-top: 0; }
.content a { text-decoration: underline; text-decoration-color: rgba(89, 195, 255, 0.45); }
.article-single .content {
  max-width: 920px;
}
.article-single .content h2 {
  margin: 34px 0 14px;
  color: #f6fbff;
  font-size: 24px;
  line-height: 1.32;
}
.article-single .content h3 {
  margin: 22px 0 10px;
  color: #d9f6ff;
  font-size: 18px;
  line-height: 1.4;
}
.article-single .content p {
  margin: 0 0 16px;
}
.article-single .content ul {
  display: grid;
  gap: 9px;
  margin: 10px 0 18px;
  padding-left: 22px;
}
.article-single .content li {
  padding-left: 2px;
}
.article-single .content li::marker {
  color: var(--accent);
}
.page-hero { padding: 44px 0 0; }
.page-hero-inner {
  padding: 34px 32px;
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.15), rgba(124, 244, 211, 0.06)),
    linear-gradient(180deg, rgba(13, 26, 45, 0.88), rgba(10, 21, 37, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.downloads {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}
.downloads ul { margin: 14px 0 0; padding-left: 18px; }
.downloads a { color: #d9f6ff; }
.download-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; padding-left: 0 !important; list-style: none; }
.download-button,
.content a[href^="/download/"],
.content a[href*="/download/"] { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 16px; border-radius: 8px; background: linear-gradient(135deg, #36f1cd, #7df9ff); color: #061117 !important; font-weight: 800; text-decoration: none !important; }
.download-button.secondary { background: linear-gradient(135deg, #8b5cf6, #38bdf8); color: #fff !important; }
.muted { color: var(--muted); }
.search-form {
  display: flex;
  gap: 12px;
  max-width: 720px;
  padding: 18px;
}
.search-form input {
  flex: 1;
  min-height: 48px;
  padding: 0 16px;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.search-form input::placeholder { color: #7f92ab; }
.search-results { margin-top: 34px; }
.search-result-head { margin-top: 34px; }
.docs-section {
  padding-bottom: 0;
}
.docs-layout {
  display: grid;
  grid-template-columns: minmax(460px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 6px;
  margin-bottom: 58px;
  align-items: start;
}
.docs-nav {
  position: sticky;
  top: 88px;
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
}
.docs-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
}
.docs-nav-head a {
  color: var(--primary);
  font-size: 13px;
}
.docs-list {
  display: grid;
  gap: 8px;
}
.docs-list a {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 14px;
  color: #d8e7f7;
  background: rgba(255, 255, 255, 0.025);
}
.docs-list a.active,
.docs-list a:hover {
  border-color: rgba(54, 241, 205, 0.52);
  background: rgba(54, 241, 205, 0.08);
}
.docs-list span {
  font-weight: 800;
  line-height: 1.35;
}
.docs-list small {
  overflow: hidden;
  color: var(--muted);
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.docs-content {
  min-height: 520px;
  padding: 30px 34px;
  border-radius: 24px;
  overflow: hidden;
}
.docs-content h2 {
  margin: 4px 0 12px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
}
.docs-summary {
  margin: 0 0 24px;
  color: #a9b9cd;
  font-size: 17px;
  line-height: 1.8;
}
.module-section {
  position: relative;
}
.module-section > .section-head {
  position: relative;
  display: block;
  text-align: center;
}
.module-section > .section-head > div {
  width: 100%;
}
.module-section > .section-head .eyebrow,
.module-section > .section-head h2 {
  text-align: center;
}
.module-section > .section-head > a {
  position: absolute;
  right: 0;
  bottom: 4px;
}
.module-section.module-align-left > .section-head,
.module-section.module-align-left > .section-head .eyebrow,
.module-section.module-align-left > .section-head h2 {
  text-align: left;
}
.module-section.module-align-left > .section-head > div {
  width: auto;
}
.module-section.module-align-left .module-lead {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.module-lead {
  max-width: 760px;
  margin: -18px auto 24px;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}
.module-metrics {
  margin-top: 0;
}
.module-image-text {
  align-items: stretch;
}
.module-image-text .content {
  margin-bottom: 18px;
}
.module-rich-text {
  padding: 34px;
}
.module-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.misi-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.misi-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}
.misi-card small,
.misi-product-card small {
  margin-top: auto;
  color: var(--misi-highlight);
  font-weight: 800;
}
.misi-one-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(32, 211, 165, 0.13), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(42, 199, 255, 0.11), transparent 26%);
}
.misi-product-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.misi-product-card,
.misi-advantage-card,
.misi-solution-card {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.88), rgba(7, 21, 35, 0.94));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.misi-product-card:hover,
.misi-advantage-card:hover,
.misi-solution-card:hover {
  color: var(--text);
  transform: translateY(-4px);
  border-color: rgba(89, 255, 212, 0.42);
  background: linear-gradient(180deg, rgba(32, 211, 165, 0.13), rgba(13, 26, 45, 0.96));
}
.misi-product-card {
  min-height: 238px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.misi-product-card span,
.misi-advantage-card strong,
.misi-solution-card span {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #03111c;
  background: linear-gradient(135deg, var(--misi-highlight), var(--misi-secondary));
  font-size: 12px;
  font-weight: 900;
}
.misi-product-card h3,
.misi-advantage-card h3,
.misi-solution-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}
.misi-product-card p,
.misi-advantage-card p,
.misi-solution-card p {
  margin: 0;
  color: #a9bdd4;
  line-height: 1.75;
}
.misi-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.misi-advantage-card {
  min-height: 190px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 12px;
}
.misi-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.misi-solution-card {
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 0 0 22px;
}
.misi-solution-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.misi-solution-card span,
.misi-solution-card h3,
.misi-solution-card p {
  margin-left: 22px;
  margin-right: 22px;
}
.misi-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 26px;
  align-items: start;
}
.misi-about-copy {
  color: #b6c7dc;
  font-size: 18px;
  line-height: 1.9;
}
.misi-about-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.misi-about-product {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.82), rgba(7, 21, 35, 0.92));
  box-shadow: var(--shadow);
}
.misi-about-product:hover {
  color: var(--text);
  border-color: rgba(89, 255, 212, 0.38);
}
.misi-about-product strong {
  color: #fff;
  font-size: 19px;
}
.misi-about-product span {
  color: #a9bdd4;
  line-height: 1.55;
}
.misi-trust-copy {
  max-width: 840px;
  color: #b6c7dc;
}
.misi-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.misi-trust-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.86), rgba(7, 21, 35, 0.94));
  box-shadow: var(--shadow);
}
.misi-trust-card:hover {
  color: var(--text);
  border-color: rgba(89, 255, 212, 0.38);
}
.misi-trust-card span {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #03111c;
  background: linear-gradient(135deg, var(--misi-highlight), var(--misi-secondary));
  font-size: 12px;
  font-weight: 900;
}
.misi-trust-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}
.misi-trust-card p {
  margin: 0;
  color: #a9bdd4;
  line-height: 1.8;
}
.misi-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 42px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 26px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(89, 255, 212, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(13, 26, 45, 0.88), rgba(7, 21, 35, 0.96));
  box-shadow: var(--shadow-strong);
}
.misi-cta h2 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
}
.misi-cta > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: #b6c7dc;
  font-size: 18px;
  line-height: 1.8;
}
.misi-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}
.misi-ecosystem {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at center, rgba(89, 255, 212, 0.2), transparent 20%),
    radial-gradient(circle at center, rgba(42, 199, 255, 0.11), transparent 45%),
    linear-gradient(180deg, rgba(13, 26, 45, 0.88), rgba(7, 21, 35, 0.98));
  box-shadow: var(--shadow-strong);
}
.ecosystem-core {
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: #03111c;
  background: linear-gradient(135deg, var(--misi-highlight), var(--misi-primary));
  box-shadow: 0 0 70px rgba(32, 211, 165, 0.32);
}
.ecosystem-core strong {
  font-size: 34px;
  line-height: 1;
}
.ecosystem-core span {
  font-size: 13px;
  font-weight: 900;
}
.ecosystem-orbit {
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(89, 255, 212, 0.24);
  border-radius: 50%;
}
.ecosystem-node {
  position: absolute;
  width: 130px;
  min-height: 68px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background: rgba(7, 21, 35, 0.88);
  color: var(--text);
  text-align: center;
}
.ecosystem-node:nth-child(1) { left: 50%; top: -18px; transform: translateX(-50%); }
.ecosystem-node:nth-child(2) { right: 5%; top: 18%; }
.ecosystem-node:nth-child(3) { right: 5%; bottom: 18%; }
.ecosystem-node:nth-child(4) { left: 50%; bottom: -18px; transform: translateX(-50%); }
.ecosystem-node:nth-child(5) { left: 5%; bottom: 18%; }
.ecosystem-node:nth-child(6) { left: 5%; top: 18%; }
.ecosystem-node strong {
  color: var(--misi-highlight);
  font-size: 13px;
}
.ecosystem-node span {
  font-size: 12px;
  color: #b6c7dc;
}
.ecosystem-copy {
  max-width: 820px;
  margin: 18px auto 0;
  color: #b6c7dc;
  text-align: center;
}
.module-doc-grid .card-index {
  color: var(--accent);
}
.shop-shell {
  padding: 22px 0 58px;
  background:
    linear-gradient(180deg, rgba(89, 195, 255, 0.05), transparent 320px),
    radial-gradient(circle at 86% 4%, rgba(124, 244, 211, 0.1), transparent 28%);
}
.shop-topbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.shop-back,
.shop-top-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  color: #d8e7f7;
  background: rgba(13, 26, 45, 0.58);
}
.shop-top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.shop-menu-toggle {
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
}
.shop-back:hover,
.shop-top-actions a:hover {
  color: #061117;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.shop-category-stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}
.shop-category-intro,
.shop-category-card,
.shop-promo-slider {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.9), rgba(10, 21, 37, 0.94));
  box-shadow: var(--shadow);
}
.shop-category-intro {
  min-height: 390px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-category-intro h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
}
.shop-category-intro > p:not(.eyebrow) {
  max-width: 640px;
  color: #b6c7dc;
  font-size: 17px;
  line-height: 1.85;
}
.shop-category-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.shop-category-card {
  min-height: 150px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  color: #d8e7f7;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.shop-category-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -42px;
  bottom: -58px;
  border: 1px solid rgba(124, 244, 211, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 244, 211, 0.13), transparent 65%);
}
.shop-category-card:hover,
.shop-category-card.active {
  transform: translateY(-3px);
  border-color: rgba(124, 244, 211, 0.38);
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(13, 26, 45, 0.94), rgba(10, 21, 37, 0.98));
}
.shop-category-card span {
  max-width: 100%;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-category-card strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}
.shop-category-card small {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  color: #9fb1c8;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-promo-section {
  padding-top: 24px;
}
.shop-promo-slider {
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.shop-promo-slide {
  min-height: 420px;
  display: none;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.shop-promo-slider:not(.is-ready) .shop-promo-slide:first-child,
.shop-promo-slide.is-active {
  display: block;
}
.shop-promo-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}
.shop-promo-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.94), rgba(4, 12, 24, 0.62) 46%, rgba(4, 12, 24, 0.18)),
    linear-gradient(0deg, rgba(4, 12, 24, 0.68), transparent 64%);
  z-index: 1;
}
.shop-promo-copy {
  width: min(680px, 72%);
  min-height: inherit;
  padding: clamp(32px, 5vw, 58px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-promo-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
}
.shop-promo-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #c8d8eb;
  font-size: 17px;
  line-height: 1.8;
}
.shop-promo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.shop-promo-meta span,
.shop-promo-meta em {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  font-style: normal;
  font-weight: 900;
}
.shop-promo-meta span {
  color: #061117;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.shop-promo-meta em {
  color: #d8e7f7;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(13, 26, 45, 0.72);
}
.shop-promo-slider .hero-dots {
  bottom: 18px;
  z-index: 3;
}
.shop-hero {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}
.shop-hero-copy,
.shop-hero-media,
.shop-detail-media,
.shop-buy-panel,
.shop-login-card,
.shop-dashboard-card,
.shop-detail-content {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.9), rgba(10, 21, 37, 0.94));
  box-shadow: var(--shadow);
}
.shop-hero-copy {
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-hero-copy h1,
.shop-account-hero h1,
.shop-buy-panel h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.06;
}
.shop-hero-copy > p:not(.eyebrow),
.shop-account-hero p,
.shop-detail-summary {
  color: #b6c7dc;
  font-size: 17px;
  line-height: 1.85;
}
.shop-hero-actions,
.shop-buy-actions,
.shop-login-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.shop-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.shop-trust-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(124, 244, 211, 0.22);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(124, 244, 211, 0.06);
  font-size: 12px;
  font-weight: 800;
}
.shop-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: block;
}
.shop-hero-media img,
.shop-detail-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.82;
}
.shop-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 12, 24, 0.78), transparent 58%);
}
.shop-hero-media em {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}
.shop-visual-placeholder {
  min-height: 100%;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(89, 195, 255, 0.18), transparent 44%),
    #07111f;
}
.shop-visual-placeholder strong {
  color: #fff;
  font-size: 54px;
  letter-spacing: 0.08em;
}
.shop-visual-placeholder span {
  color: var(--accent);
  font-weight: 800;
}
.shop-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.shop-category-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  color: #c8d8eb;
  background: rgba(13, 26, 45, 0.66);
}
.shop-category-nav a.active,
.shop-category-nav a:hover {
  color: #061117;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.shop-stats,
.shop-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.shop-stats article,
.shop-benefit-grid article {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.08), transparent 46%),
    rgba(13, 26, 45, 0.76);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}
.shop-stats strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 30px;
}
.shop-stats span,
.shop-benefit-grid p {
  color: #9fb1c8;
  line-height: 1.65;
}
.shop-benefit-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.shop-benefit-grid h3 {
  margin: 0 0 8px;
  color: #fff;
}
.shop-benefit-grid p {
  margin: 0;
}
.shop-section {
  padding: 42px 0 0;
}
.shop-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.shop-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 44px);
}
.shop-section-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 8px 0 0;
  color: #9fb1c8;
  line-height: 1.7;
}
.shop-feature-grid,
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.shop-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.shop-product-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.9), rgba(10, 21, 37, 0.94));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.shop-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 244, 211, 0.34);
}
.shop-product-media {
  min-height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.1), transparent 44%),
    rgba(8, 20, 36, 0.84);
}
.shop-product-card.is-featured .shop-product-media {
  min-height: 240px;
}
.shop-product-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.shop-product-card:hover .shop-product-media img {
  transform: scale(1.04);
}
.shop-product-media span {
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.shop-product-body {
  padding: 20px;
  display: grid;
  gap: 10px;
}
.shop-badge {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #061117;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  font-size: 12px;
  font-weight: 900;
}
.shop-product-body h3 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.35;
}
.shop-product-body h3 a {
  color: #fff;
}
.shop-product-body p {
  min-height: 48px;
  margin: 0;
  color: #9fb1c8;
  line-height: 1.65;
}
.shop-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-product-meta span {
  color: #9fb1c8;
  font-size: 12px;
}
.shop-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
.shop-product-foot strong,
.shop-price-row strong {
  color: var(--accent);
  font-size: 28px;
}
.shop-product-foot a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #061117;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  font-size: 13px;
  font-weight: 900;
}
.shop-pagination {
  margin-top: 26px;
}
.shop-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}
.shop-detail-media {
  min-height: 540px;
  overflow: hidden;
}
.shop-buy-panel {
  padding: clamp(24px, 4vw, 42px);
}
.shop-price-row {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid rgba(124, 244, 211, 0.18);
  border-radius: 18px;
  background: rgba(124, 244, 211, 0.06);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.shop-price-row span {
  color: var(--muted);
}
.shop-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.shop-info-grid span {
  min-height: 62px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 16px;
  color: #e8f2ff;
  background: rgba(255, 255, 255, 0.025);
}
.shop-info-grid em {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}
.shop-agreement {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}
.shop-detail-content {
  padding: 32px;
}
.shop-account-hero {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 22px;
}
.shop-account-hero > div {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.9), rgba(10, 21, 37, 0.94));
  box-shadow: var(--shadow);
}
.shop-account-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.shop-account-note strong {
  color: #fff;
  font-size: 24px;
}
.shop-account-note span {
  color: #9fb1c8;
  line-height: 1.7;
}
.shop-account-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.35fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.shop-account-stage {
  min-height: 380px;
  position: relative;
  display: grid;
  align-items: start;
}
.shop-auth-panel {
  width: min(520px, 100%);
  margin: 6px auto 0;
  padding: 28px;
  border: 1px solid rgba(124, 244, 211, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(13, 26, 45, 0.96), rgba(10, 21, 37, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}
.shop-auth-head h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}
.shop-auth-head p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #a9b9cd;
  line-height: 1.7;
}
.shop-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  padding: 6px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}
.shop-auth-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  color: #c8d8eb;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.shop-auth-tabs button.active {
  color: #061117;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.shop-auth-tabs button:only-child {
  grid-column: 1 / -1;
}
.shop-auth-tip {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.shop-auth-tip.is-error {
  color: #ff9b9b;
}
.is-hidden {
  display: none !important;
}
.shop-login-card {
  padding: 24px;
}
.shop-login-card h2,
.shop-dashboard-card h3 {
  margin: 0 0 10px;
  color: #fff;
}
.shop-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.shop-form input,
.shop-profile-box input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}
.shop-form input:focus,
.shop-profile-box input:focus {
  border-color: rgba(124, 244, 211, 0.42);
}
.shop-password-field {
  position: relative;
  display: block;
}
.shop-password-field input {
  padding-right: 56px;
}
.shop-password-field button {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 36px;
  min-height: 30px;
  border: 1px solid rgba(89, 195, 255, 0.22);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(89, 195, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.shop-captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.shop-member-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.shop-member-head {
  grid-column: 1 / -1;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.shop-member-head h2 {
  margin: 6px 0 8px;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}
.shop-member-head p {
  margin: 0;
  color: #9fb1c8;
}
.shop-member-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.shop-stat-card {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(124, 244, 211, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(124, 244, 211, 0.08), transparent 48%),
    rgba(13, 26, 45, 0.82);
}
.shop-stat-card span {
  display: block;
  color: #9fb1c8;
  font-size: 13px;
}
.shop-stat-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 30px;
}
.shop-dashboard-card {
  min-height: 180px;
  padding: 22px;
}
.shop-orders-card {
  grid-column: 1 / -1;
}
.shop-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.shop-dashboard-card > span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.shop-profile-box p,
.shop-order-item p,
.shop-comment-item p {
  color: #9fb1c8;
  line-height: 1.65;
}
.shop-profile-box {
  display: grid;
  gap: 12px;
}
.shop-profile-box strong {
  color: #fff;
  font-size: 18px;
}
.shop-profile-box label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}
.shop-profile-save {
  width: fit-content;
  margin-top: 4px;
}
.shop-profile-box .muted,
.shop-member-dashboard .muted {
  margin: 0;
  color: #8ea2b8;
  line-height: 1.7;
}
.shop-order-item {
  padding: 14px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}
.shop-order-item:first-child {
  padding-top: 0;
  border-top: 0;
}
.shop-comment-item {
  display: grid;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}
.shop-comment-item:first-child {
  padding-top: 0;
  border-top: 0;
}
.shop-order-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.shop-comment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
}
.shop-comment-row h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 19px;
  line-height: 1.35;
}
.shop-comment-row p,
.shop-comment-reply p {
  margin: 0;
  overflow-wrap: anywhere;
}
.shop-comment-side {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}
.shop-comment-side span,
.shop-comment-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  color: #a9bed2;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
}
.shop-comment-side .status-approved {
  color: #75f2c9;
  border-color: rgba(117, 242, 201, 0.28);
  background: rgba(117, 242, 201, 0.08);
}
.shop-comment-side .status-pending {
  color: #ffd58a;
  border-color: rgba(255, 213, 138, 0.28);
  background: rgba(255, 213, 138, 0.08);
}
.shop-comment-side .status-rejected {
  color: #ff9b9b;
  border-color: rgba(255, 155, 155, 0.28);
  background: rgba(255, 155, 155, 0.08);
}
.shop-comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-comment-reply {
  padding: 12px;
  border-left: 3px solid rgba(89, 227, 244, 0.5);
  border-radius: 8px;
  background: rgba(93, 220, 238, 0.08);
}
.shop-comment-reply strong {
  display: block;
  margin-bottom: 6px;
  color: #9af0ff;
  font-size: 13px;
}
.shop-order-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-order-actions .button-primary,
.shop-order-actions .button-secondary,
.shop-card-head .button-secondary,
.shop-member-head .button-secondary,
.shop-comment-side .button-secondary {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
  cursor: pointer;
}
.shop-order-item code,
.shop-order-detail code {
  display: inline-flex;
  max-width: 100%;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #061117;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  white-space: normal;
  word-break: break-all;
}
.shop-order-detail {
  display: grid;
  gap: 16px;
}
.shop-order-detail h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
}
.shop-order-detail dl {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 9px 14px;
  margin: 0;
}
.shop-order-detail dt {
  color: #8ea2b8;
}
.shop-order-detail dd {
  min-width: 0;
  margin: 0;
  color: #e7f1ff;
  overflow-wrap: anywhere;
}
.shop-delivery-box {
  padding: 16px;
  border: 1px solid rgba(124, 244, 211, 0.16);
  border-radius: 16px;
  background: rgba(124, 244, 211, 0.045);
}
.shop-delivery-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
}
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(6, 14, 26, 0.88);
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 24px;
  padding: 34px 0;
}
.footer-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 22px;
}
.footer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 8%, rgba(124, 244, 211, 0.10), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(89, 195, 255, 0.10), transparent 32%);
}
.footer-panel > * {
  position: relative;
  z-index: 1;
}
.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
}
.footer-summary {
  max-width: 560px;
  margin: 0;
  line-height: 1.8;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(124, 244, 211, 0.22);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(124, 244, 211, 0.06);
  font-size: 12px;
  font-weight: 800;
}
.footer-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}
.footer-contact-list p {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}
.footer-contact-list span,
.footer-panel-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-panel-label {
  margin: 0 0 8px;
}
.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 12px;
  color: #c8d5e6;
  background: rgba(255, 255, 255, 0.025);
}
.footer-links a::after {
  content: "→";
  color: var(--accent);
  opacity: 0.78;
}
.footer-links a:hover {
  color: #fff;
  border-color: rgba(124, 244, 211, 0.30);
  background: rgba(124, 244, 211, 0.08);
}
.footer-bottom {
  min-height: 56px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-metrics,
  .service-grid,
  .module-card-grid,
  .misi-product-matrix,
  .misi-advantage-grid,
  .misi-solution-grid,
  .misi-trust-grid {
    grid-template-columns: 1fr;
  }
  .misi-about {
    grid-template-columns: 1fr;
  }
  .hero-metrics {
    width: min(100% - 32px, 680px);
    margin-top: 18px;
  }
  .hero-slide,
  .hero-slide img {
    min-height: 440px;
  }
  .hero-slides {
    min-height: 440px;
  }
  .showcase-large,
  .showcase-split,
  .insight-band {
    grid-template-columns: 1fr;
  }
  .showcase-large > img,
  .showcase-large {
    min-height: auto;
  }
  .showcase-large > img {
    aspect-ratio: 16 / 9;
  }
  .docs-layout {
    grid-template-columns: 1fr;
  }
  .docs-nav {
    position: static;
  }
  .shop-hero,
  .shop-category-stage,
  .shop-detail-layout,
  .shop-account-hero,
  .shop-account-layout {
    grid-template-columns: 1fr;
  }
  .shop-category-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .shop-feature-grid,
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-stats,
  .shop-benefit-grid {
    grid-template-columns: 1fr;
  }
  .shop-member-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-detail-media {
    min-height: 360px;
  }
  .insight-band {
    align-items: flex-start;
  }
  .misi-ecosystem {
    min-height: 520px;
  }
}
@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1200px); }
  .header-inner {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: auto;
    gap: 14px;
    padding: 16px 0;
  }
  .brand-wrap {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    padding-right: 0;
  }
  .brand img {
    width: 166px;
    max-height: 42px;
  }
  .brand-tag {
    display: none;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .nav {
    width: 100%;
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    background: rgba(8, 18, 32, 0.92);
  }
  .nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav-toggle {
    display: inline-flex;
    position: static;
    width: 100%;
    flex: 0 0 auto;
    color: #e8f6ff;
    background: rgba(13, 26, 45, 0.92);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  }
  .misi-ecosystem {
    min-height: auto;
    padding: 22px;
    display: grid;
    justify-items: stretch;
    gap: 18px;
  }
  .ecosystem-core {
    width: 126px;
    height: 126px;
    margin: 0 auto;
    justify-self: center;
  }
  .ecosystem-orbit {
    position: static;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    border: 0;
    border-radius: 0;
  }
  .ecosystem-node,
  .ecosystem-node:nth-child(n) {
    position: static;
    width: 100%;
    min-height: 58px;
    transform: none;
  }
  .misi-about-products {
    grid-template-columns: 1fr;
  }
  .nav a {
    min-width: 0;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-color: rgba(148, 163, 184, 0.12);
    background: rgba(13, 26, 45, 0.42);
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
  }
  .announcement-inner {
    min-height: 40px;
    gap: 10px;
    border-radius: 18px;
  }
  .announcement-label {
    min-width: 42px;
  }
  .announcement-track {
    gap: 22px;
    animation-duration: 22s;
  }
  .announcement-item {
    max-width: 320px;
  }
  .hero-home { padding: 28px 0 36px; }
  .hero h1,
  .page-hero h1 { font-size: 32px; }
  .hero-slide,
  .hero-slide img {
    min-height: 340px;
  }
  .hero-slides {
    min-height: 340px;
  }
  .hero-slide span {
    left: 22px;
    right: auto;
    bottom: 56px;
    width: min(288px, calc(100vw - 68px));
    max-width: calc(100vw - 68px);
  }
  .hero-dots {
    top: 298px;
    bottom: auto;
    gap: 8px;
    padding: 7px 9px;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  .hero-dot.is-active {
    width: 22px;
  }
  .module-hero .hero-slide span {
    bottom: 56px;
  }
  .module-hero .hero-actions {
    position: static;
    justify-content: center;
    margin-top: 16px;
  }
  .hero-slide small {
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .hero-slide strong,
  .hero-fallback strong {
    font-size: 32px;
    line-height: 1.16;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .section-head h2,
  .section h1,
  .article h1,
  .downloads h2 {
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .hero-metrics {
    width: 100%;
  }
  .metric-item,
  .service-card {
    min-height: auto;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .search-form,
  .list-search,
  .hero-actions { flex-direction: column; border-radius: 20px; }
  .button-primary,
  .button-secondary,
  .search-form button,
  .list-search button { width: 100%; }
  .page-hero-inner,
  .article-single,
  .card,
  .list-item,
  .footer-panel { padding: 20px; }
  .showcase-copy,
  .insight-band {
    padding: 22px;
  }
  .shop-topbar,
  .shop-section-head,
  .shop-product-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .shop-topbar {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 10px;
    margin-bottom: 12px;
  }
  .shop-menu-toggle {
    width: 100%;
    min-height: 40px;
    display: inline-flex;
    justify-content: center;
  }
  .shop-top-actions {
    width: 100%;
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    background: rgba(8, 18, 32, 0.78);
  }
  .shop-top-actions.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-top-actions.is-open a:last-child {
    grid-column: 1 / -1;
  }
  .shop-top-actions a,
  .shop-back {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    justify-content: center;
    padding: 0 10px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
  }
  .shop-back {
    display: none;
  }
  .shop-feature-grid,
  .shop-product-grid,
  .shop-category-board,
  .shop-stats,
  .shop-benefit-grid,
  .shop-member-dashboard,
  .shop-member-stats,
  .shop-info-grid,
  .shop-captcha-row {
    grid-template-columns: 1fr;
  }
  .shop-member-head,
  .shop-order-row,
  .shop-card-head,
  .shop-comment-row,
  .shop-comment-side {
    align-items: flex-start;
    flex-direction: column;
  }
  .shop-comment-row {
    display: flex;
  }
  .shop-comment-side {
    align-items: stretch;
    width: 100%;
  }
  .shop-order-actions,
  .shop-order-actions .button-primary,
  .shop-order-actions .button-secondary,
  .shop-comment-side .button-secondary,
  .shop-card-head .button-secondary,
  .shop-member-head .button-secondary {
    width: 100%;
  }
  .shop-hero-copy,
  .shop-category-intro,
  .shop-login-card,
  .shop-dashboard-card,
  .shop-detail-content,
  .shop-buy-panel,
  .shop-account-hero > div {
    padding: 20px;
  }
  .shop-hero,
  .shop-hero-copy,
  .shop-category-stage,
  .shop-category-intro,
  .shop-promo-slider,
  .shop-promo-slide {
    min-width: 0;
    overflow: hidden;
  }
  .shop-category-intro,
  .shop-promo-slider,
  .shop-promo-slide {
    min-height: 340px;
  }
  .shop-category-intro h1,
  .shop-promo-copy h2 {
    font-size: 32px;
    line-height: 1.14;
  }
  .shop-hero-copy h1,
  .shop-category-intro h1,
  .shop-promo-copy h2,
  .shop-hero-copy > p:not(.eyebrow),
  .shop-category-intro > p:not(.eyebrow),
  .shop-promo-copy > p:not(.eyebrow),
  .shop-buy-panel h1,
  .shop-detail-summary {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .shop-category-intro h1,
  .shop-category-intro > p:not(.eyebrow),
  .shop-promo-copy h2,
  .shop-promo-copy > p:not(.eyebrow) {
    width: min(310px, 100%);
  }
  .shop-category-card {
    min-height: 132px;
    padding: 18px;
  }
  .shop-promo-copy {
    width: 100%;
    padding: 22px;
  }
  .shop-promo-slide::before {
    background: linear-gradient(0deg, rgba(4, 12, 24, 0.94), rgba(4, 12, 24, 0.56));
  }
  .shop-promo-slider .hero-dots {
    top: auto;
    bottom: 14px;
  }
  .shop-hero-copy > p:not(.eyebrow) {
    width: min(300px, 100%);
  }
  .shop-hero-media,
  .shop-detail-media {
    min-height: 300px;
  }
  .shop-product-card.is-featured .shop-product-media,
  .shop-product-media {
    min-height: 190px;
  }
  .image-tile,
  .image-tile img {
    min-height: 280px;
  }
.image-tile span {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

.lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  margin: 34px 0 8px;
  padding: 8px;
  border: 1px solid rgba(91, 220, 238, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(87, 216, 176, 0.13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(87, 216, 176, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(7, 17, 34, 0.98), rgba(6, 33, 47, 0.94));
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}
.lead-copy,
.lead-form {
  border-radius: 8px;
}
.lead-copy {
  padding: 26px;
}
.lead-copy h2 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}
.lead-copy p,
.lead-copy li {
  color: #b8cad7;
  line-height: 1.8;
}
.lead-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}
.lead-form {
  display: grid;
  gap: 15px;
  padding: 22px;
  border: 1px solid rgba(188, 232, 242, 0.18);
  background: rgba(236, 250, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.lead-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
}
.lead-form-head strong {
  color: #f7fdff;
  font-size: 18px;
}
.lead-form-head span {
  color: #8fe7d4;
  font-size: 13px;
  white-space: nowrap;
}
.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.lead-field {
  display: grid;
  gap: 7px;
}
.lead-field label {
  color: #d9f8ff;
  font-size: 13px;
  font-weight: 700;
}
.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  border: 1px solid rgba(151, 215, 229, 0.26);
  border-radius: 8px;
  background: rgba(4, 13, 27, 0.58);
  color: #f8fbff;
  font: inherit;
  letter-spacing: 0;
  outline: none;
  padding: 0 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.lead-field textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: rgba(89, 227, 244, 0.78);
  background: rgba(3, 16, 31, 0.82);
  box-shadow: 0 0 0 3px rgba(89, 227, 244, 0.12);
}
.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: #71869b;
}
.lead-submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 2px;
}
.lead-submit-row .button-primary {
  min-width: 142px;
  border: 0;
  cursor: pointer;
}
.lead-submit-row small {
  color: #93aabe;
  line-height: 1.5;
}
.lead-result {
  min-height: 20px;
  margin: 0;
  color: #9eb1c4;
  font-size: 13px;
}
.lead-result.is-success { color: #62f0b9; }
.lead-result.is-error { color: #ff9b9b; }

.product-comments {
  display: grid;
  gap: 18px;
  padding-bottom: 52px;
}
.product-comments .section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.product-comments .section-head h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 30px;
  letter-spacing: 0;
}
.product-comments .section-head > span {
  color: #9db4c6;
  font-size: 14px;
}
.comment-compose,
.comment-card {
  border: 1px solid rgba(91, 220, 238, 0.18);
  border-radius: 8px;
  background: rgba(7, 18, 32, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.comment-compose {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.comment-compose textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(151, 215, 229, 0.24);
  border-radius: 8px;
  background: rgba(4, 13, 27, 0.64);
  color: #f8fbff;
  font: inherit;
  line-height: 1.7;
  outline: none;
  padding: 14px;
  resize: vertical;
}
.comment-compose textarea:focus {
  border-color: rgba(89, 227, 244, 0.78);
  box-shadow: 0 0 0 3px rgba(89, 227, 244, 0.12);
}
.comment-compose-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.comment-compose-foot > div {
  display: flex;
  gap: 10px;
}
.comment-compose-foot small {
  color: #91a9bd;
}
.comment-compose-foot small.is-success {
  color: #62f0b9;
}
.comment-compose-foot small.is-error {
  color: #ff9b9b;
}
.modal-open {
  overflow: hidden;
}
.comment-login-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.comment-login-modal.is-open {
  display: flex;
}
.comment-login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(12px);
}
.comment-login-panel {
  position: relative;
  z-index: 1;
  max-height: calc(100vh - 48px);
  overflow: auto;
}
.comment-login-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  color: #d8e7f7;
  background: rgba(255, 255, 255, 0.04);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.comment-login-close:hover {
  color: #061117;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.comment-list {
  display: grid;
  gap: 14px;
}
.comment-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
}
.comment-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(91, 220, 238, 0.28);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(96, 231, 245, 0.2), rgba(87, 216, 176, 0.18));
  color: #e9fbff;
  font-weight: 800;
}
.comment-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.comment-body {
  min-width: 0;
}
.comment-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.comment-meta strong {
  color: #f7fdff;
}
.comment-meta span,
.comment-actions {
  color: #89a4b7;
  font-size: 13px;
}
.comment-meta em {
  border: 1px solid rgba(99, 232, 196, 0.28);
  border-radius: 999px;
  color: #86f0d6;
  font-size: 12px;
  font-style: normal;
  padding: 2px 8px;
}
.comment-body > p {
  margin: 10px 0;
  color: #dcecf5;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.comment-reply {
  margin-top: 12px;
  padding: 12px;
  border-left: 3px solid rgba(89, 227, 244, 0.56);
  border-radius: 8px;
  background: rgba(93, 220, 238, 0.08);
}
.comment-reply strong {
  display: block;
  color: #9af0ff;
  font-size: 13px;
}
.comment-reply p {
  margin: 6px 0 0;
  color: #cce3ed;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .lead-panel {
    grid-template-columns: 1fr;
    padding: 8px;
  }
}
@media (max-width: 720px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }
  .lead-copy,
  .lead-form {
    padding: 18px;
  }
  .lead-form-head,
  .lead-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .lead-submit-row .button-primary {
    width: 100%;
  }
  .product-comments .section-head,
  .comment-compose-foot,
  .comment-compose-foot > div {
    align-items: stretch;
    flex-direction: column;
  }
  .comment-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .comment-avatar {
    width: 40px;
    height: 40px;
  }
  .comment-compose-foot .button-primary,
  .comment-compose-foot .button-secondary {
    width: 100%;
  }
}


@media (max-width: 760px) {
  .module-section > .section-head > a {
    position: static;
    margin: 8px auto 0;
  }
}


/* Brand showcase */
.brand-section {
  overflow: hidden;
  padding: 0 0 60px;
}
.brand-section .section-head {
  margin-bottom: 36px;
}
.brand-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.brand-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: brandScroll 30s linear infinite;
}
.brand-track:hover {
  animation-play-state: paused;
}
.brand-slide {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-shrink: 0;
}
.brand-item {
  flex-shrink: 0;
  width: 200px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background-color 0.2s;
}
.brand-item:hover {
  background-color: rgba(255,255,255,0.05);
}
.brand-item img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s;
}
.brand-item:hover img {
  filter: grayscale(0%);
}
.brand-name {
  font-size: 11px;
  color: #6b7280;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.brand-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Brand floating */
.brand-floating-area {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 20px 40px;
  padding: 40px 20px;
}
.brand-float-item {
  flex-shrink: 0;
  width: 200px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background-color 0.2s;
  animation: brandFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -0.6s);
}
.brand-float-item:hover {
  animation-play-state: paused;
  background-color: rgba(255,255,255,0.05);
}
.brand-float-item img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  transition: filter 0.3s;
}
.brand-float-item:hover img {
  filter: grayscale(0%);
}
.brand-float-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.brand-float-item .brand-name {
  font-size: 11px;
  color: #6b7280;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
@keyframes brandFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-12px) scale(1.02); }
  66% { transform: translateY(6px) scale(0.98); }
}
