:root {
  color-scheme: dark;
  --bg: #050608;
  --bg-soft: #090b0f;
  --surface: #101216;
  --surface-2: #15191f;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(46, 232, 102, 0.45);
  --text: #fbfbfb;
  --muted: #a8abb3;
  --subtle: #676c75;
  --primary: #2ee866;
  --primary-2: #6dff96;
  --accent: #21c958;
  --danger: #ff6684;
  --ok: #2ee866;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--primary) #07090d;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: #07090d;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #07090d;
  border-radius: 999px;
  background: var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-2);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 232, 102, 0.12), transparent 34rem),
    linear-gradient(180deg, #050608 0%, var(--bg) 48%, #06070a 100%);
  color: var(--text);
}

body.is-locked {
  overflow: hidden;
}

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

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

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 20, 0.86);
  backdrop-filter: blur(18px);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 232, 102, 0.56);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(46, 232, 102, 0.22), rgba(46, 232, 102, 0.06));
  color: var(--primary-2);
  font-weight: 900;
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.menu-button,
.cart-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
}

.icon-button:hover,
.menu-button:hover,
.cart-button:hover {
  border-color: var(--line-strong);
  background: rgba(46, 232, 102, 0.1);
}

.cart-button {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 99px;
  background: var(--accent);
  color: #041008;
  font-size: 0.74rem;
  font-weight: 800;
}

.menu-button {
  display: none;
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.landing-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 82px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #03101b;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 12, 22, 0.97) 0%, rgba(5, 17, 30, 0.78) 44%, rgba(5, 18, 32, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 17, 29, 0.98) 0%, rgba(7, 17, 29, 0.28) 42%, transparent 100%);
}

.landing-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 64px;
}

.landing-copy h1 {
  max-width: 760px;
}

.landing-copy .lead {
  max-width: 690px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.landing-points li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(46, 232, 102, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(46, 232, 102, 0.42);
  border-radius: 999px;
  color: var(--primary-2);
  background: rgba(46, 232, 102, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

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

h1 {
  max-width: 820px;
  margin: 16px 0 16px;
  font-size: clamp(2.35rem, 6vw, 5.15rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.button,
.checkout-button,
.package-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.checkout-button,
.package-button {
  border-color: transparent;
  background: var(--primary);
  color: #041008;
}

.button.primary:hover,
.checkout-button:hover,
.package-button:hover {
  background: var(--primary-2);
}

.button.secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.12);
}

.hero-media {
  min-width: 0;
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stats {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.landing-hero + .hero-stats {
  margin-top: 24px;
}

.stat {
  min-height: 94px;
  padding: 18px;
  background: rgba(12, 14, 18, 0.9);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.stat span {
  color: var(--subtle);
  font-size: 0.88rem;
}

.main-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.main-grid.is-no-sidebar {
  grid-template-columns: minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 15, 19, 0.74);
}

.panel-body {
  padding: 16px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 900;
}

.category-list,
.side-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-list a,
.side-list a,
.side-list span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  color: var(--muted);
}

.category-list a:hover,
.category-list a.is-active,
.side-list a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.content {
  min-width: 0;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.search-wrap {
  position: relative;
}

.search-wrap input,
.form-field input,
.form-field select,
.form-field textarea,
.coupon-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

.search-wrap input {
  padding-left: 42px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--subtle);
}

.search-wrap input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.coupon-row input:focus {
  border-color: rgba(46, 232, 102, 0.76);
  box-shadow: 0 0 0 3px rgba(46, 232, 102, 0.16);
}

.segmented {
  min-height: 46px;
  display: inline-grid;
  grid-auto-flow: column;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}

.segmented button {
  min-width: 86px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.segmented button.is-active {
  background: var(--text);
  color: #111827;
  font-weight: 900;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: 0;
}

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

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

.products-grid.is-list {
  grid-template-columns: 1fr;
}

.landing-products-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto 0;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 14, 18, 0.92);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 232, 102, 0.44);
  background: rgba(18, 26, 20, 0.98);
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(46, 232, 102, 0.18), rgba(46, 232, 102, 0.08)),
    #0a0d0a;
}

.product-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.code-art {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(90deg, rgba(46, 232, 102, 0.28) 0 16%, transparent 16%),
    repeating-linear-gradient(180deg, transparent 0 13px, rgba(255, 255, 255, 0.07) 13px 14px),
    linear-gradient(135deg, #050608, #0d2614 55%, #2ee866);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(4, 15, 26, 0.82);
  color: var(--primary-2);
  font-size: 0.74rem;
  font-weight: 900;
}

.framework-tags {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.product-title-row h3 {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.fw-tag {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.fw-esx {
  border-color: rgba(46, 232, 102, 0.6);
  color: #9dffb9;
}

.fw-qb {
  border-color: rgba(94, 234, 212, 0.6);
  color: #7fe5c4;
}

.fw-qbx {
  border-color: rgba(167, 240, 112, 0.6);
  color: #a7f070;
}

.fw-standalone {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.product-body {
  padding: 16px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--subtle);
  font-size: 0.82rem;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.3;
}

.product-card p {
  min-height: 50px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-size: 1.18rem;
  font-weight: 900;
}

.old-price {
  margin-left: 6px;
  color: var(--subtle);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.mini-button {
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.mini-button:hover {
  border-color: rgba(46, 232, 102, 0.56);
}

.products-grid.is-list .product-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
}

.products-grid.is-list .product-image {
  min-height: 100%;
}

.info-band {
  margin-top: 34px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(46, 232, 102, 0.035);
}

.info-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 14, 18, 0.66);
}

.feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--subtle);
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.drawer-backdrop.is-open,
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(420px, 100%);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-left: 1px solid var(--line);
  background: #080a0d;
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-head,
.modal-head {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #0c0e12;
}

.drawer-head h2,
.modal-head h2 {
  margin: 0;
  font-size: 1.08rem;
}

.cart-items {
  min-height: 0;
  overflow: auto;
  padding: 16px;
}

.cart-empty {
  padding: 30px 16px;
  border: 1px dashed rgba(46, 232, 102, 0.5);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: rgba(46, 232, 102, 0.035);
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item strong {
  display: block;
  margin-bottom: 4px;
}

.cart-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 32px 36px 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-control button {
  width: 32px;
  height: 32px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.qty-control output {
  text-align: center;
}

.drawer-foot {
  padding: 16px;
  border-top: 1px solid var(--line);
  background: #0c0e12;
}

.coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-bottom: 12px;
}

.coupon-row button {
  min-height: 46px;
  border: 1px solid rgba(46, 232, 102, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(46, 232, 102, 0.12);
  color: var(--text);
  cursor: pointer;
}

.coupon-row button:hover {
  background: rgba(46, 232, 102, 0.2);
}

.cart-total {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.cart-total div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.cart-total .grand {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 900;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 95;
  width: min(760px, calc(100% - 28px));
  max-height: min(720px, calc(100vh - 28px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080a0d;
  box-shadow: var(--shadow);
  transform: translate(-50%, -46%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.modal.is-open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.modal-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.modal-image {
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(46, 232, 102, 0.18), rgba(46, 232, 102, 0.08)),
    #080b10;
}

.modal-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.tag-list span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
}

.page-title {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 24px;
}

.page-title h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.package-detail,
.form-page,
.cms-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.package-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 28px;
}

.package-detail.is-full {
  grid-template-columns: minmax(0, 1fr);
}

.package-media,
.package-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 15, 19, 0.74);
}

.package-media {
  overflow: hidden;
}

.package-media img,
.package-media .code-art {
  width: 100%;
  aspect-ratio: 16 / 11;
}

.media-gallery {
  position: relative;
  padding: 0;
  background: #0a0d0a;
}

.gallery-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.media-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0d0a;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease;
}

.media-item.is-active {
  opacity: 1;
  visibility: visible;
}

.media-item img,
.media-item iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  aspect-ratio: auto;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #041008;
  transform: translateY(-50%) scale(1.05);
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-dot.is-active {
  background: var(--primary);
  transform: scale(1.18);
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.package-summary {
  padding: 24px;
}

.package-summary h1 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
}

.rich-text {
  color: var(--muted);
  line-height: 1.68;
}

.rich-text h1,
.rich-text h2,
.rich-text h3 {
  color: var(--text);
}

.rich-text a {
  color: var(--primary-2);
}

.form-stack {
  display: grid;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-field textarea {
  min-height: 120px;
  padding-top: 10px;
  resize: vertical;
}

.message {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 13px 16px;
  border: 1px solid rgba(46, 232, 102, 0.36);
  border-radius: var(--radius);
  background: rgba(46, 232, 102, 0.09);
  color: #d9ffe2;
}

.hidden {
  display: none !important;
}

.landing-page {
  background:
    radial-gradient(circle at 50% 0, rgba(46, 232, 102, 0.14), transparent 26rem),
    #050608;
}

.landing-showcase {
  position: relative;
  width: min(1360px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  padding: 78px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  grid-template-areas:
    "copy logo"
    "metrics metrics";
  gap: 34px 48px;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid rgba(46, 232, 102, 0.42);
}

.landing-showcase::before {
  content: "";
  position: absolute;
  left: -12%;
  top: 16%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(46, 232, 102, 0.13), transparent 64%),
    rgba(46, 232, 102, 0.02);
  opacity: 0.72;
  pointer-events: none;
}

.landing-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 232, 102, 0.62), transparent);
  box-shadow: 0 0 44px rgba(46, 232, 102, 0.32);
}

.showcase-logo {
  position: relative;
  z-index: 1;
  grid-area: logo;
  width: min(390px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 42%, rgba(46, 232, 102, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    #080b10;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.45);
}

.showcase-logo::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 232, 102, 0.24), rgba(46, 232, 102, 0.04) 54%, transparent 70%);
}

.showcase-logo .cold-emblem-img {
  width: 78%;
}

.showcase-copy {
  position: relative;
  z-index: 1;
  grid-area: copy;
  width: min(760px, 100%);
  display: grid;
  justify-items: start;
  padding-top: 0;
  text-align: left;
}

.showcase-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(46, 232, 102, 0.38);
  border-radius: 999px;
  background: rgba(46, 232, 102, 0.09);
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: kicker-pulse 3.6s ease-in-out infinite;
}

.showcase-copy h1 {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(3.1rem, 6vw, 6.3rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.showcase-copy h1 span {
  display: block;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(46, 232, 102, 0.18);
}

.showcase-copy h1 small {
  display: block;
  max-width: 680px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(1.55rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.showcase-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #c9cbd0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.showcase-copy .home-actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.showcase-metrics {
  position: relative;
  z-index: 1;
  grid-area: metrics;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(8, 11, 16, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 80px rgba(0, 0, 0, 0.28);
}

.showcase-metric {
  position: relative;
  min-height: 108px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  padding: 20px 22px 20px 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background:
    radial-gradient(circle at 82% 0%, rgba(46, 232, 102, 0.14), transparent 48%),
    #090d13;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.showcase-metric::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary);
  border-radius: 6px;
  background: rgba(46, 232, 102, 0.1);
  box-shadow: 0 0 28px rgba(46, 232, 102, 0.22);
  transform: translateY(-50%) rotate(45deg);
}

.showcase-metric::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(46, 232, 102, 0.35), transparent);
  opacity: 0.45;
}

.showcase-metric:hover {
  border-color: rgba(46, 232, 102, 0.28);
  background:
    radial-gradient(circle at 82% 0%, rgba(46, 232, 102, 0.2), transparent 48%),
    #0c1118;
  transform: translateY(-2px);
}

.showcase-metric strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.showcase-metric span {
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mission-strip {
  margin-top: 28px;
  padding: 0 0 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 18px;
}

.mission-strip article {
  min-height: 156px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(46, 232, 102, 0.07), transparent),
    #0b0f14;
}

.catalog-stage {
  width: min(1360px, calc(100% - 32px));
  padding-top: 84px;
  overflow: hidden;
}

.catalog-intro {
  width: min(1360px, calc(100% - 32px));
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.42fr);
  gap: 40px;
  align-items: end;
  text-align: left;
}

.catalog-intro h1 {
  max-width: 680px;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 0.98;
}

.catalog-intro .showcase-kicker {
  grid-column: 1 / -1;
  justify-self: start;
}

.catalog-intro p {
  align-self: end;
  justify-self: end;
  max-width: 430px;
  padding: 18px 0 18px 22px;
  border-left: 2px solid rgba(46, 232, 102, 0.5);
  color: #c9cbd0;
  font-size: 1rem;
  line-height: 1.65;
}

.catalog-stage .featured-marquee {
  width: 100%;
  margin-top: 46px;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(46, 232, 102, 0.22);
  border-bottom: 1px solid rgba(46, 232, 102, 0.16);
  background: linear-gradient(180deg, rgba(46, 232, 102, 0.025), transparent);
}

.command-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.command-panel h2 {
  margin-top: 14px;
  text-align: left;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

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

.stats-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(46, 232, 102, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(46, 232, 102, 0.035), transparent),
    #090d12;
}

.stats-panel h2 {
  margin-top: 14px;
  text-align: left;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.stats-panel h2 span {
  color: var(--primary);
}

.stats-panel > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 460px;
  padding-left: 0;
  padding-top: 26px;
}

.stats-panel > div:first-child::after {
  content: "";
  display: block;
  width: min(360px, 100%);
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), transparent);
  box-shadow: 0 0 18px rgba(46, 232, 102, 0.18);
}

.stats-eyebrow {
  position: absolute;
  top: -8px;
  left: 0;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats-panel > div:first-child p {
  max-width: 340px;
  margin: 14px 0 0;
  color: #c9cbd0;
  line-height: 1.55;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-card {
  min-height: 206px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 26px 24px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(46, 232, 102, 0.045), transparent 58%),
    #080b10;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.stat-card:hover {
  background:
    linear-gradient(180deg, rgba(46, 232, 102, 0.09), transparent 58%),
    #0c1117;
  transform: translateY(-2px);
}

.stat-card strong {
  color: var(--primary);
  font-size: clamp(3.2rem, 5.4vw, 5.3rem);
  line-height: 0.9;
  text-shadow: 0 0 34px rgba(46, 232, 102, 0.18);
}

.stat-card span {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
}

.stat-card p {
  margin: 0;
  color: #c9cbd0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.landing-page .site-header {
  animation: landing-header-in 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.landing-page .home-hero-copy h1,
.landing-page .landing-heading h1,
.landing-page .landing-heading h2 {
  text-wrap: balance;
}

.landing-reveal {
  --reveal-y: 34px;
  --reveal-scale: 0.985;
  opacity: 0;
  transform: translateY(var(--reveal-y)) scale(var(--reveal-scale));
  filter: blur(10px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.landing-reveal.is-visible {
  --reveal-y: 0px;
  --reveal-scale: 1;
  opacity: 1;
  transform: translateY(var(--reveal-y)) scale(var(--reveal-scale));
  filter: blur(0);
}

.landing-page .site-header {
  background: rgba(5, 6, 8, 0.94);
}

.landing-page .nav {
  width: min(870px, calc(100% - 28px));
  min-height: 70px;
  grid-template-columns: 160px auto auto;
  gap: 26px;
}

.cold-brand {
  gap: 8px;
}

.brand-logo-img {
  width: 150px;
  height: 32px;
  object-fit: contain;
}

.cold-eye-mini {
  position: relative;
  width: 34px;
  height: 22px;
  display: inline-block;
}

.cold-eye-mini::before {
  content: "";
  position: absolute;
  inset: 2px 0;
  border: 3px solid #fff;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.cold-eye-mini::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.landing-page .nav-links a {
  color: #fff;
  min-height: 44px;
  padding: 0 10px;
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.landing-page .nav-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.landing-page .nav-links a.is-active {
  position: relative;
  background: transparent;
}

.landing-page .nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 3px;
  background: #fff;
}

.landing-page .nav-actions {
  justify-content: flex-start;
  gap: 10px;
}

.discord-link,
.currency-button,
.login-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  font-weight: 900;
}

.discord-link {
  width: 46px;
  color: var(--primary);
  background: transparent;
  transition: transform 180ms ease, color 180ms ease;
}

.discord-link:hover {
  color: var(--primary-2);
  transform: translateY(-1px) scale(1.04);
}

.discord-link svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.currency-button,
.login-button {
  min-height: 40px;
  padding: 0 12px;
  color: #fff;
  background: #2e3238;
  font-size: 0.82rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.currency-button:hover,
.login-button:hover {
  background: #383d45;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.currency-button::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
}

.login-button::before {
  content: none;
}

.fivem-mark {
  margin-right: 6px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.text-cart {
  width: auto;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-color: transparent;
  background: transparent;
  font-weight: 900;
  gap: 8px;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.text-cart:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.text-cart svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero {
  width: min(1360px, calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.home-hero-copy h1 {
  max-width: 630px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.85rem, 5.2vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-hero-copy h1 span {
  display: block;
  color: var(--primary);
  background: linear-gradient(90deg, var(--primary), #d9ffe2 48%, var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 220% 100%;
  color: transparent;
  animation: landing-text-sheen 6s ease-in-out infinite;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-browse {
  min-width: 310px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--primary);
  color: #041008;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(46, 232, 102, 0.16);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  animation: cta-glow 7s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-browse:hover {
  background: var(--primary-2);
  box-shadow: 0 24px 62px rgba(46, 232, 102, 0.3);
  transform: perspective(900px) translateY(-3px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.docs-tile {
  width: 84px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #15181d;
  color: #fff;
  font-weight: 900;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.docs-tile:hover {
  border-color: rgba(46, 232, 102, 0.5);
  background: #1d222a;
  transform: perspective(900px) translateY(-3px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.docs-tile span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 0;
  position: relative;
  filter: drop-shadow(0 0 10px rgba(46, 232, 102, 0.24));
}

.docs-tile span::before {
  content: "";
  position: absolute;
  inset: 3px 5px 2px 4px;
  border: 2px solid currentColor;
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 0 68%, rgba(46, 232, 102, 0.18) 69% 100%),
    rgba(46, 232, 102, 0.06);
}

.docs-tile span::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 5px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0 4px 0 3px;
  background: #15181d;
  transform: translate(-1px, 1px);
}

.docs-tile span i,
.docs-tile span b {
  content: "";
  position: absolute;
  left: 6px;
  right: 9px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  pointer-events: none;
}

.docs-tile span i {
  top: 12px;
}

.docs-tile span b {
  top: 17px;
  right: 11px;
}

.home-hero-copy p {
  margin: 16px 0 0;
  color: #fff;
}

.home-hero-art {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  isolation: isolate;
  animation: landing-hero-breathe 7s ease-in-out infinite;
}

.home-hero-art::before {
  content: "";
  position: absolute;
  width: min(540px, 92vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 232, 102, 0.24), rgba(46, 232, 102, 0.08) 42%, transparent 68%);
  opacity: 0.86;
  transform: translateZ(0);
  z-index: -1;
}

.cold-emblem-img {
  position: relative;
  width: min(380px, 82vw);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  animation: landing-emblem-float 6.5s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

.cold-emblem {
  position: relative;
  width: min(380px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 62%, rgba(255, 255, 255, 0.9) 63% 100%),
    #fff;
  color: #1f2b33;
  box-shadow: 0 0 86px rgba(46, 232, 102, 0.22);
}

.cold-emblem strong {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 46px;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  text-align: center;
  transform: none;
  white-space: nowrap;
}

.cold-eye-large {
  position: relative;
  position: absolute;
  left: 70px;
  top: 96px;
  width: 240px;
  height: 130px;
}

.cold-eye-large::before {
  content: "";
  position: absolute;
  inset: 18px 0 0;
  border: 28px solid #7cc72a;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-14deg);
}

.cold-eye-large::after {
  content: "";
  position: absolute;
  right: 58px;
  top: 48px;
  width: 94px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b1118, #2b3d49);
}

.home-benefits {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 66px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  border-bottom: 2px solid rgba(46, 232, 102, 0.5);
}

.home-benefits article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.benefit-icon {
  width: 90px;
  height: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(46, 232, 102, 0.2);
  color: var(--primary);
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.home-benefits article:hover .benefit-icon {
  background: rgba(46, 232, 102, 0.28);
  box-shadow: 0 18px 50px rgba(46, 232, 102, 0.14);
  transform: perspective(800px) translateY(-3px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.benefit-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-benefits strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.25rem;
}

.home-benefits p {
  margin: 0;
  color: #b7bbc3;
  line-height: 1.35;
}

.landing-page .landing-showcase {
  min-height: 620px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 34px 48px;
  align-items: center;
}

.landing-page .showcase-copy h1 {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(3.1rem, 6vw, 6.3rem);
  line-height: 0.88;
  text-align: left;
  text-transform: uppercase;
}

.landing-page .showcase-copy h1 span {
  display: block;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(46, 232, 102, 0.18);
}

.landing-page .showcase-copy p {
  margin-top: 22px;
  color: #c9cbd0;
  line-height: 1.7;
  text-align: left;
}

.landing-page .mission-strip {
  width: min(1360px, calc(100% - 32px));
  margin: 96px auto 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.landing-page .mission-strip article {
  min-height: 156px;
  grid-template-columns: 78px minmax(0, 1fr);
  padding: 24px;
}

.landing-page .catalog-stage {
  width: min(1360px, calc(100% - 32px));
}

.landing-page .catalog-intro {
  width: min(1360px, calc(100% - 32px));
  max-width: none;
  margin-bottom: 0;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  text-align: left;
}

.landing-page .catalog-intro p {
  max-width: 520px;
  color: #c9cbd0;
}

.landing-page .landing-showcase {
  min-height: calc(100vh - 64px);
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "copy"
    "metrics";
  gap: 24px;
  justify-items: center;
  padding: 86px 0 72px;
}

.landing-page .landing-showcase::before {
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  aspect-ratio: auto;
  opacity: 0.48;
  transform: translateX(-50%);
  background:
    linear-gradient(rgba(46, 232, 102, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 232, 102, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(46, 232, 102, 0.12), transparent 45rem);
  background-size: 34px 34px, 34px 34px, auto;
  animation: hero-grid-drift 18s linear infinite;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
}

.landing-page .landing-showcase .showcase-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: -1;
  width: min(620px, 80vw);
  aspect-ratio: 1;
  border: 1px solid rgba(46, 232, 102, 0.13);
  border-left-color: transparent;
  border-bottom-color: rgba(46, 232, 102, 0.05);
  border-radius: 50%;
  opacity: 0.75;
  transform: translate(-50%, -50%);
  animation: hero-orbit 24s linear infinite;
}

.landing-page .landing-showcase .showcase-copy::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: -1;
  width: min(480px, 68vw);
  aspect-ratio: 1;
  border: 1px dashed rgba(46, 232, 102, 0.08);
  border-radius: 50%;
  opacity: 0.8;
  transform: translate(-50%, -50%);
  animation: hero-orbit-reverse 36s linear infinite;
}

.landing-page .landing-showcase::after {
  left: 12%;
  right: 12%;
}

.landing-page .showcase-logo {
  position: absolute;
  top: 86px;
  left: 50%;
  width: min(600px, 84vw);
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  opacity: 0.045;
  transform: translateX(-50%);
  animation: watermark-float 9s ease-in-out infinite;
}

.landing-page .showcase-logo::before {
  inset: -16%;
  background: radial-gradient(circle, rgba(46, 232, 102, 0.18), transparent 67%);
}

.landing-page .showcase-logo .cold-emblem-img {
  width: 100%;
}

.landing-page .showcase-copy {
  width: min(980px, 100%);
  justify-items: center;
  text-align: center;
}

.landing-page .showcase-copy h1 {
  max-width: 980px;
  text-align: center;
}

.landing-page .showcase-copy h1 span {
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  background: linear-gradient(
    90deg,
    #2ee866 0%,
    #5eead4 22%,
    #9dffb9 46%,
    #a7f070 70%,
    #2ee866 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 260% 100%;
  color: transparent;
  animation: green-title-fade 8s ease-in-out infinite;
}

.landing-page .showcase-copy h1 small {
  max-width: 660px;
  margin: 16px auto 0;
  font-size: clamp(1.45rem, 2.75vw, 2.65rem);
  line-height: 1.06;
}

.landing-page .showcase-copy h1 small em {
  color: var(--primary-2);
  font-style: normal;
  text-shadow: 0 0 24px rgba(46, 232, 102, 0.16);
  animation: green-word-fade 8s ease-in-out infinite 600ms;
}

.landing-page .showcase-copy p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.landing-page .showcase-copy .home-actions {
  justify-content: center;
}

.landing-page .showcase-features {
  position: relative;
  z-index: 1;
  grid-area: metrics;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(46, 232, 102, 0.055), transparent),
    rgba(7, 15, 15, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 28px 90px rgba(0, 0, 0, 0.26);
}

.landing-page .showcase-features article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 220ms ease, transform 220ms ease;
}

.landing-page .showcase-features article:last-child {
  border-right: 0;
}

.landing-page .showcase-features article:hover {
  background: rgba(46, 232, 102, 0.035);
  transform: translateY(-2px);
}

.landing-page .showcase-features .benefit-icon {
  width: 82px;
  height: 82px;
  position: relative;
  border: 0;
  border-radius: 14px;
  background: rgba(46, 232, 102, 0.12);
  color: var(--primary-2);
  box-shadow: none;
  animation: feature-icon-breathe 4.6s ease-in-out infinite;
}

.landing-page .showcase-features .benefit-icon svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.landing-page .showcase-features article:hover .benefit-icon svg {
  filter: none;
  transform: scale(1.08);
}

.landing-page .showcase-features article:nth-child(2) .benefit-icon {
  animation-delay: 450ms;
}

.landing-page .showcase-features article:nth-child(3) .benefit-icon {
  animation-delay: 900ms;
}

.landing-page .showcase-features strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.2rem;
}

.landing-page .showcase-features p {
  margin: 0;
  color: #c9cbd0;
  line-height: 1.35;
}

.landing-page .showcase-metrics {
  width: min(900px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.landing-page .showcase-metric {
  min-height: auto;
  padding: 4px 34px;
  align-content: center;
  justify-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.landing-page .showcase-metric strong {
  font-size: clamp(2.75rem, 4.6vw, 4rem);
}

.landing-page .showcase-metric span {
  font-size: 0.82rem;
}

.landing-page .showcase-metric::before {
  content: none;
}

.landing-page .showcase-metric::after {
  left: auto;
  right: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(46, 232, 102, 0.42), transparent);
  opacity: 0.65;
}

.landing-page .showcase-metric:last-child::after {
  content: none;
}

.featured-section {
  padding-top: 76px;
}

.landing-section {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.landing-section.compact {
  padding-top: 38px;
}

.landing-heading {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.landing-heading h1,
.landing-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 4vw, 3.65rem);
  line-height: 1.05;
}

.landing-heading p {
  margin: 0;
  color: var(--primary);
  font-weight: 800;
}

.featured-marquee {
  position: relative;
  display: flex;
  gap: 28px;
  overflow: hidden;
  padding: 2px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.featured-strip {
  min-width: max-content;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 380px;
  gap: 28px;
  animation: featured-slide-left 46s linear infinite;
}

.featured-strip .product-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #0d0f13;
  box-shadow: 0 0 0 1px rgba(46, 232, 102, 0.02), 0 24px 70px rgba(0, 0, 0, 0.42);
}

.featured-strip .product-card .product-image {
  height: auto;
  min-height: 0;
  padding: 0;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.featured-strip .product-card .product-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  background: #0a0d0a;
}

.featured-strip .product-card .product-body {
  flex: 1;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-strip .product-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.featured-strip .product-card .product-footer {
  margin-top: auto;
}

.featured-strip .product-card .price {
  font-size: 1.55rem;
  color: #fff;
}

.featured-strip .product-card .purchase-button {
  width: 100%;
  margin-top: 4px;
}

.featured-strip .product-card .badge {
  top: 14px;
  left: 14px;
  min-height: 28px;
  padding: 0 11px;
  font-size: 0.78rem;
}

.products-grid .product-card {
  display: flex;
  flex-direction: column;
}

.products-grid .product-card .product-image {
  height: auto;
  min-height: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.products-grid .product-card .product-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  background: #0a0d0a;
}

.products-grid .product-card .product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.products-grid .product-card .product-footer {
  margin-top: auto;
}

.products-grid .product-card .purchase-button {
  width: 100%;
  margin-top: 4px;
}

.featured-marquee::before,
.featured-marquee::after {
  content: "";
  position: absolute;
  top: -16px;
  bottom: -16px;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.featured-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #050608, rgba(5, 6, 8, 0));
}

.featured-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #050608, rgba(5, 6, 8, 0));
}

@keyframes featured-slide-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 28px));
  }
}

@keyframes landing-header-in {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-text-sheen {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes landing-hero-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.012);
  }
}

@keyframes landing-emblem-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(1.4deg);
  }
}

@keyframes hero-grid-drift {
  from {
    background-position: 0 0, 0 0, center, center, center, center;
  }

  to {
    background-position: 34px 34px, 34px 34px, center, center, center, center;
  }
}

@keyframes hero-orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes hero-orbit-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes green-title-fade {
  0%,
  100% {
    opacity: 0.94;
    background-position: 0% 50%;
    filter: saturate(0.95) hue-rotate(0deg);
  }

  50% {
    opacity: 1;
    background-position: 100% 50%;
    filter: saturate(1.15) hue-rotate(-14deg);
  }
}

@keyframes green-word-fade {
  0%,
  100% {
    opacity: 0.86;
    color: var(--primary-2);
    text-shadow: 0 0 14px rgba(46, 232, 102, 0.08);
  }

  50% {
    opacity: 1;
    color: #7fe5c4;
    text-shadow: 0 0 26px rgba(94, 234, 212, 0.22);
  }
}

@keyframes kicker-pulse {
  0%,
  100% {
    border-color: rgba(46, 232, 102, 0.34);
    box-shadow: 0 0 0 rgba(46, 232, 102, 0);
  }

  50% {
    border-color: rgba(46, 232, 102, 0.72);
    box-shadow: 0 0 30px rgba(46, 232, 102, 0.16);
  }
}

@keyframes watermark-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  50% {
    transform: translateX(-50%) translateY(12px) scale(1.025);
  }
}

@keyframes cta-glow {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(46, 232, 102, 0.16);
  }

  50% {
    box-shadow: 0 20px 54px rgba(46, 232, 102, 0.22);
  }
}

@keyframes feature-icon-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-shine-sweep {
  0% {
    opacity: 0;
    transform: translateX(-82%);
  }

  18%,
  62% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(82%);
  }
}

.landing-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #0d0f13;
  box-shadow: 0 0 0 1px rgba(46, 232, 102, 0.02), 0 24px 70px rgba(0, 0, 0, 0.42);
  transform: translateY(var(--reveal-y, 0px)) scale(var(--reveal-scale, 1)) perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.landing-card:hover {
  border-color: rgba(46, 232, 102, 0.34);
  background: #11151a;
  box-shadow: 0 0 0 1px rgba(46, 232, 102, 0.08), 0 32px 90px rgba(0, 0, 0, 0.5);
  transform: translateY(calc(var(--reveal-y, 0px) - 6px)) scale(var(--reveal-scale, 1)) perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.landing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.14) 46%, transparent 72%);
  opacity: 0;
  transform: translateX(-82%);
}

.landing-card:hover::after {
  animation: card-shine-sweep 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.script-cover {
  position: relative;
  min-height: 168px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 12%, rgba(46, 232, 102, 0.48), transparent 12rem),
    linear-gradient(135deg, #08200f, #0b6f2c 52%, #031007);
  transition: transform 260ms ease, filter 260ms ease;
}

.landing-card:hover .script-cover {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.025);
}

.script-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.16;
}

.script-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.2));
}

.script-cover strong {
  position: relative;
  z-index: 1;
  max-width: 82%;
  color: #fff;
  font-size: 1.85rem;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.5), 0 0 28px rgba(46, 232, 102, 0.8);
}

.script-cover img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.script-cover:has(img)::before {
  opacity: 0.08;
}

.script-cover:has(img)::after {
  z-index: 2;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.42));
}

.landing-card:hover .script-cover img {
  transform: scale(1.045);
}

.landing-card-body {
  min-height: 254px;
  display: grid;
  grid-template-rows: 36px 72px 42px 50px;
  align-items: center;
  gap: 10px;
  padding: 24px 20px 20px;
  text-align: center;
}

.landing-card-body h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.08;
  text-transform: uppercase;
  align-self: start;
}

.landing-card-body p {
  margin: 0;
  color: #c9cbd0;
  font-size: 0.94rem;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.landing-price {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.purchase-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  border-radius: 12px;
  background: rgba(46, 232, 102, 0.12);
  color: var(--primary);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.purchase-button:hover {
  background: var(--primary);
  color: #041008;
  box-shadow: 0 16px 42px rgba(46, 232, 102, 0.22);
  transform: translateY(-1px);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.green-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 9px;
  background: rgba(46, 232, 102, 0.2);
  color: var(--primary);
  font-weight: 900;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  text-align: center;
}

.number-item strong {
  display: block;
  color: var(--primary);
  font-size: clamp(3.5rem, 8vw, 5.4rem);
  line-height: 0.95;
  text-shadow: 0 0 34px rgba(46, 232, 102, 0.3);
  transition: transform 220ms ease, text-shadow 220ms ease;
}

.number-item:hover strong {
  text-shadow: 0 0 48px rgba(46, 232, 102, 0.44);
  transform: translateY(-2px) scale(1.02);
}

.number-item span {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 900;
}

.live-panel {
  width: min(1360px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #111317;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 80px rgba(0, 0, 0, 0.24);
}

.live-panel h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

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

.live-card {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #080b10;
  transform: translateY(var(--reveal-y, 0px)) scale(var(--reveal-scale, 1)) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.live-card:hover {
  border-color: rgba(46, 232, 102, 0.36);
  background: #0d1117;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.32);
  transform: translateY(calc(var(--reveal-y, 0px) - 5px)) scale(var(--reveal-scale, 1)) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.live-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 11px;
  background: #1a1d23;
  color: var(--primary);
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.live-card:hover .live-icon {
  background: rgba(46, 232, 102, 0.16);
  transform: scale(1.06);
}

.live-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.live-card p {
  margin: 0;
  color: #c2c5cc;
  line-height: 1.55;
}

.faq-wrap {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
}

.faq-wrap h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
}

.faq-list {
  overflow: hidden;
  border-radius: 14px;
  background: #111317;
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  background: rgba(255, 255, 255, 0.035);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 34px;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease, transform 180ms ease;
}

.faq-list summary:hover {
  color: var(--primary-2);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "^";
  color: #585b60;
  transition: transform 220ms ease, color 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-list p {
  margin: -8px 34px 24px;
  max-width: 760px;
  color: #b7bac2;
  line-height: 1.6;
  animation: faq-answer-in 260ms ease both;
}

.landing-footer {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 76px;
  align-items: start;
  color: var(--muted);
}

.landing-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.footer-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f7d6;
  color: #0c7c2f;
  font-size: 0.84rem;
  font-weight: 900;
}

.footer-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
}

.landing-footer p {
  max-width: 660px;
  margin: 0 0 16px;
}

.landing-footer small {
  display: block;
  max-width: 680px;
  color: #6d7179;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  gap: 12px;
  min-width: 130px;
}

.footer-links strong {
  color: #fff;
}

.footer-links a {
  color: #777b84;
}

.footer-links a:hover {
  color: var(--primary);
}

@media (max-width: 980px) {
  .hero,
  .main-grid,
  .home-hero,
  .package-detail,
  .modal-body,
  .landing-footer {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .products-grid,
  .live-grid,
  .home-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-art {
    min-height: 320px;
  }

  .info-inner,
  .hero-stats,
  .number-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-footer {
    gap: 26px;
  }

  .landing-page .landing-showcase {
    min-height: 620px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "metrics";
    gap: 24px;
    padding-top: 54px;
  }

  .landing-showcase::before {
    left: 50%;
    top: 4%;
    width: min(560px, 90vw);
    transform: translateX(-50%);
  }

  .showcase-copy {
    justify-items: center;
    text-align: center;
  }

  .showcase-logo {
    width: min(420px, 82vw);
  }

  .landing-page .showcase-copy h1,
  .landing-page .showcase-copy p {
    text-align: center;
  }

  .showcase-copy .home-actions {
    justify-content: center;
  }

  .landing-page .mission-strip,
  .landing-page .catalog-intro,
  .command-panel,
  .stats-panel {
    grid-template-columns: 1fr;
  }

  .landing-page .showcase-features {
    grid-template-columns: 1fr;
  }

  .landing-page .showcase-features article {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .landing-page .showcase-features article:last-child {
    border-bottom: 0;
  }

  .landing-page .mission-strip {
    margin-top: 72px;
  }

  .landing-page .mission-strip article {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .landing-page .catalog-intro {
    gap: 18px;
    text-align: center;
  }

  .catalog-intro .showcase-kicker {
    justify-self: center;
  }

  .landing-page .catalog-intro h1,
  .landing-page .catalog-intro p {
    max-width: none;
  }

  .catalog-intro p {
    justify-self: center;
    padding: 0;
    border-left: 0;
    text-align: center;
  }

  .command-panel h2 {
    text-align: center;
  }

  .stats-panel h2 {
    text-align: center;
  }

  .stats-panel > div:first-child {
    max-width: none;
    padding-left: 0;
    padding-top: 30px;
    text-align: center;
  }

  .stats-panel > div:first-child p {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-panel > div:first-child::after {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-eyebrow {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

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

@media (max-width: 760px) {
  .nav {
    grid-template-columns: auto auto auto;
    min-height: 64px;
  }

  .menu-button {
    display: inline-grid;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 16px 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(10, 14, 20, 0.96);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    justify-content: center;
  }

  .hero {
    padding-top: 34px;
  }

  .landing-page .nav {
    grid-template-columns: auto auto auto;
  }

  .landing-page .nav-actions {
    gap: 6px;
  }

  .currency-button,
  .login-button {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding: 64px 0 28px;
  }

  .landing-page .landing-showcase {
    min-height: auto;
    padding: 48px 0 28px;
  }

  .showcase-logo {
    width: min(260px, 76vw);
  }

  .home-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4.4rem);
  }

  .landing-page .showcase-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .showcase-copy h1 small {
    font-size: clamp(1.3rem, 7vw, 2.1rem);
  }

  .showcase-lead {
    font-size: 1rem;
  }

  .showcase-metrics {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
  }

  .showcase-metric {
    min-height: 82px;
    padding: 16px 18px 16px 54px;
  }

  .landing-page .showcase-metric {
    min-height: auto;
    padding: 14px 10px;
  }

  .landing-page .showcase-metric strong {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .landing-page .showcase-metric span {
    font-size: 0.74rem;
  }

  .hero-browse {
    min-width: 0;
    width: 100%;
  }

  .docs-tile {
    width: 100%;
  }

  .cold-emblem {
    width: min(310px, 82vw);
  }

  .cold-eye-large {
    width: 200px;
    height: 110px;
  }

  .landing-hero {
    min-height: 680px;
  }

  .landing-hero::after {
    background:
      linear-gradient(180deg, rgba(7, 11, 16, 0.64) 0%, rgba(7, 11, 16, 0.94) 54%, rgba(13, 17, 23, 0.98) 100%);
  }

  .landing-copy {
    padding: 52px 0 46px;
  }

  .hero-stats,
  .info-inner,
  .products-grid,
  .products-grid.is-list,
  .live-grid,
  .number-grid,
  .home-benefits {
    grid-template-columns: 1fr;
  }

  .landing-page .mission-strip {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .landing-page .showcase-features article {
    grid-template-columns: 68px minmax(0, 1fr);
    padding: 18px;
  }

  .landing-page .showcase-features .benefit-icon {
    width: 68px;
    height: 68px;
  }

  .home-benefits article {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .benefit-icon {
    width: 74px;
    height: 74px;
  }

  .featured-strip {
    grid-auto-columns: 280px;
  }

  .products-grid.is-list .product-card {
    grid-template-columns: 1fr;
  }

  .toolbar,
  .section-heading,
  .site-footer {
    display: grid;
  }

  .segmented {
    width: 100%;
  }

  .segmented button {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .site-header,
  .home-hero-copy h1 span,
  .landing-page .showcase-copy h1 small em,
  .home-hero-art,
  .cold-emblem-img,
  .faq-list p,
  .landing-page .landing-showcase::before,
  .landing-page .landing-showcase .showcase-copy::before,
  .landing-page .landing-showcase .showcase-copy::after,
  .showcase-kicker,
  .landing-page .showcase-logo,
  .hero-browse,
  .landing-page .showcase-features .benefit-icon {
    animation: none;
  }

  .landing-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .landing-card,
  .landing-card:hover,
  .live-card,
  .live-card:hover,
  .benefit-icon,
  .home-benefits article:hover .benefit-icon,
  .hero-browse,
  .hero-browse:hover,
  .docs-tile,
  .docs-tile:hover {
    transform: none;
  }

  .featured-strip {
    animation: none;
  }
}

@media (max-width: 440px) {
  .nav,
  .hero,
  .home-hero,
  .home-benefits,
  .hero-stats,
  .main-grid,
  .info-inner,
  .site-footer,
  .page-title,
  .package-detail,
  .form-page,
  .cms-page,
  .message {
    width: min(100% - 22px, var(--max));
  }

  .hero-actions {
    display: grid;
  }

  .landing-actions {
    display: grid;
  }

  .landing-section,
  .live-panel,
  .faq-wrap,
  .landing-footer {
    width: min(100% - 22px, var(--max));
  }

  .button,
  .checkout-button,
  .package-button {
    width: 100%;
  }
}
