:root {
  --bg: #05070d;
  --surface: #0b1020;
  --card: #111827;
  --primary: #00e676;
  --gold: #f5c542;
  --blue: #00b8ff;
  --text: #ffffff;
  --muted: #9ca3af;
  --risk: #ff4d4d;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 184, 255, 0.15), transparent 42%),
    radial-gradient(circle at 90% 8%, rgba(0, 230, 118, 0.14), transparent 44%),
    var(--bg);
  line-height: 1.6;
}

body.is-preloading {
  overflow: hidden;
}

body.is-nav-open {
  overflow: hidden;
}

.lux-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 230, 118, 0.16), transparent 35%),
    radial-gradient(circle at 82% 12%, rgba(0, 184, 255, 0.16), transparent 38%),
    #04070e;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.lux-preloader.is-done {
  opacity: 0;
  visibility: hidden;
}

.lux-gate {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background:
    linear-gradient(120deg, rgba(0, 230, 118, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(0, 184, 255, 0.15), rgba(3, 10, 20, 0.95));
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 42px rgba(0, 184, 255, 0.1);
  transition: transform 0.62s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.62s ease;
}

.lux-gate::before {
  content: "";
  position: absolute;
  inset: 18% 8%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  opacity: 0.5;
}

.lux-gate-left {
  left: 0;
}

.lux-gate-right {
  right: 0;
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.lux-preloader.is-gate-open .lux-gate-left {
  transform: translateX(-106%);
  opacity: 0;
}

.lux-preloader.is-gate-open .lux-gate-right {
  transform: translateX(106%);
  opacity: 0;
}

.lux-preloader-panel {
  position: relative;
  z-index: 2;
  width: min(460px, 88vw);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 1.2rem 1.2rem 1rem;
  background: rgba(8, 14, 28, 0.84);
  box-shadow: 0 0 36px rgba(0, 184, 255, 0.22), inset 0 0 30px rgba(0, 230, 118, 0.09);
}

.lux-preloader-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 230, 118, 0.2);
}

.lux-preloader-brand {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}

.lux-preloader-sub {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: #9cc4db;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.lux-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  min-height: 64px;
}

.lux-candle {
  position: relative;
  width: 14px;
  height: 44px;
  animation: luxCandlePulse 1.5s ease-in-out infinite;
}

.lux-candle::before,
.lux-candle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.lux-candle::before {
  width: 2px;
  height: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
}

.lux-candle::after {
  width: 14px;
  height: 24px;
  top: 12px;
  border-radius: 2px;
}

.lux-candle.up::after {
  background: var(--primary);
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.5);
}

.lux-candle.down::after {
  background: var(--risk);
  box-shadow: 0 0 12px rgba(255, 77, 77, 0.45);
}

.lux-candle:nth-child(2) {
  animation-delay: 0.12s;
}

.lux-candle:nth-child(3) {
  animation-delay: 0.26s;
}

.lux-candle:nth-child(4) {
  animation-delay: 0.34s;
}

.lux-candle:nth-child(5) {
  animation-delay: 0.5s;
}

.lux-candle:nth-child(6) {
  animation-delay: 0.58s;
}

.lux-candle:nth-child(7) {
  animation-delay: 0.72s;
}

.lux-line {
  margin-top: 0.9rem;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.lux-line span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--primary));
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.4);
  animation: luxLineMove 1.2s linear infinite;
}

.lux-preloader-panel p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--bg);
  padding: 0.75rem 1rem;
  z-index: 999;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(5, 7, 13, 0.94);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
}

.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.94rem;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.24s ease, text-shadow 0.24s ease;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, var(--blue), var(--primary));
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.55);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
  text-shadow: 0 0 14px rgba(0, 230, 118, 0.55);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(8, 15, 30, 0.9);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--text);
  border-radius: 12px;
  width: 48px;
  height: 42px;
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.16);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #d6f8ea;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 16, 0.72);
  backdrop-filter: blur(4px);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  padding: 1rem 1rem 1.2rem;
  background:
    linear-gradient(165deg, rgba(13, 23, 42, 0.97), rgba(6, 11, 22, 0.95)),
    linear-gradient(90deg, rgba(0, 230, 118, 0.06), transparent);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateX(106%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: -14px 0 36px rgba(0, 0, 0, 0.45);
}

.mobile-nav-overlay.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-close {
  background: rgba(8, 16, 31, 0.9);
  color: #d7f6eb;
  border: 1px solid rgba(0, 230, 118, 0.28);
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  font-weight: 600;
}

.mobile-nav-tech {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav-tech span {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.56rem;
  border-radius: 999px;
  font-size: 0.7rem;
  color: #b5d4e8;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 20, 37, 0.7);
}

.mobile-nav-links {
  display: grid;
  gap: 0.45rem;
}

.mobile-nav-link {
  display: block;
  border-radius: 10px;
  padding: 0.72rem 0.74rem;
  background: rgba(12, 20, 37, 0.5);
  border: 1px solid transparent;
  color: #dde9f5;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--primary);
  border-color: rgba(0, 230, 118, 0.4);
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.18);
}

.mobile-nav-cta {
  margin-top: auto;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.75rem 1.15rem;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.35), transparent 64%);
  transition: transform 0.36s ease;
}

.button:hover::before {
  transform: translateX(102%);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 0 0 rgba(0, 230, 118, 0.3);
}

.button-primary:hover {
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.3);
}

.button-secondary {
  background: rgba(17, 24, 39, 0.88);
  border-color: rgba(255, 255, 255, 0.15);
}

.button-secondary:hover {
  border-color: rgba(0, 230, 118, 0.6);
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.2);
}

.button-telegram {
  background: var(--blue);
  color: #07131f;
}

.button-telegram:hover {
  box-shadow: 0 0 12px rgba(0, 184, 255, 0.35);
}

.button-whatsapp {
  background: linear-gradient(110deg, #00d084, #18e5a0);
  color: #062217;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 12px rgba(0, 208, 132, 0.24);
}

.button-whatsapp:hover {
  box-shadow: 0 0 16px rgba(0, 208, 132, 0.3), 0 0 10px rgba(0, 230, 118, 0.22);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero {
  padding: 4.8rem 0 2.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-modern-shell {
  position: relative;
  min-height: 380px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.85rem;
  background: linear-gradient(160deg, rgba(17, 29, 54, 0.94), rgba(8, 14, 28, 0.92));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), 0 0 44px rgba(0, 184, 255, 0.12);
}

.hero-modern-media {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.hero-modern-image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06);
  transition: transform 0.34s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-modern-shell:hover .hero-modern-image {
  transform: scale(1.02);
}

.hero-modern-float {
  position: absolute;
  padding: 0.7rem 0.78rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 13, 27, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.14);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.hero-modern-float p {
  margin: 0;
  font-size: 0.7rem;
  color: #a4bbcf;
}

.hero-modern-float strong {
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero-modern-float:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 230, 118, 0.56);
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.2);
}

.hero-modern-float-top {
  top: 1.2rem;
  left: 1.2rem;
}

.hero-modern-float-mid {
  bottom: 1.3rem;
  left: 1.2rem;
}

.hero-modern-float-bottom {
  top: 1.2rem;
  right: 1.2rem;
  max-width: 210px;
}

.hero h1,
.page-title h1 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.hero-neon-text,
.hero-neon-title,
.hero-neon-lead {
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.hero-neon-text:hover {
  color: #d8fef0;
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.32);
}

.hero-neon-title:hover {
  color: #f2fcff;
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.34), 0 0 12px rgba(0, 184, 255, 0.16);
}

.hero-neon-lead:hover {
  color: #cde4f3;
  text-shadow: 0 0 8px rgba(0, 184, 255, 0.2);
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  margin-top: 1rem;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  color: #bfdef0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 19, 34, 0.75);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.tech-pill:hover {
  border-color: rgba(0, 230, 118, 0.46);
  color: #d8fff0;
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.14);
}

.lead {
  color: var(--muted);
  max-width: 62ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.market-ticker {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 16, 32, 0.8);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 1.6rem;
  white-space: nowrap;
  padding: 0.75rem 0;
  animation: ticker-scroll 22s linear infinite;
  will-change: transform;
}

.ticker-item {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.ticker-up {
  color: var(--primary);
}

.ticker-down {
  color: var(--risk);
}

.chart-shell {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(11, 16, 32, 0.9);
  background-size: 42px 42px, 42px 42px, auto;
  min-height: 360px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  filter: saturate(1.15) contrast(1.05);
}

.price-badge-list {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  gap: 0.55rem;
  z-index: 3;
}

.price-badge {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 24, 39, 0.82);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.74rem;
}

.chart-candles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding-bottom: 2.4rem;
  z-index: 2;
}

.candle {
  position: relative;
  width: 12px;
}

.candle::before,
.candle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.candle::before {
  width: 2px;
  height: 56px;
  background: var(--primary);
  bottom: 0;
}

.candle::after {
  width: 12px;
  height: 24px;
  background: var(--primary);
  bottom: 14px;
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.35);
}

.candle.down::before,
.candle.down::after {
  background: var(--risk);
  box-shadow: 0 0 14px rgba(255, 77, 77, 0.35);
}

.panel-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

.dashboard-card {
  background: rgba(17, 24, 39, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.8rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 230, 118, 0.42);
  box-shadow: 0 0 12px rgba(0, 184, 255, 0.1);
}

.section {
  padding: 3.2rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.section-head p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 26, 45, 0.98), rgba(11, 16, 32, 0.88));
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 230, 118, 0.26);
}

.card-neon::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(125deg, rgba(0, 230, 118, 0.3), rgba(0, 184, 255, 0.2), rgba(245, 197, 66, 0.24));
  transition: opacity 0.25s ease;
}

.card-neon:hover::before {
  opacity: 1;
}

.card-neon:hover {
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.16), 0 0 10px rgba(0, 184, 255, 0.1);
}

.card-neon-soft {
  margin-top: 1rem;
  border: 1px solid rgba(0, 230, 118, 0.22);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(6, 12, 24, 0.62);
}

.image-frame {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 0.9rem;
  background: rgba(7, 12, 24, 0.92);
}

.image-neon {
  position: relative;
}

.image-neon::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.24s ease;
}

.image-neon:hover::after {
  box-shadow:
    inset 0 0 0 1px rgba(0, 230, 118, 0.5),
    0 0 18px rgba(0, 230, 118, 0.16),
    0 0 10px rgba(0, 184, 255, 0.12);
}

.product-image,
.article-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.image-frame:hover .product-image,
.image-frame:hover .article-image,
.detail-gallery-item:hover .detail-gallery-image,
.detail-hero-image:hover .detail-main-image {
  transform: scale(1.02);
}

.price-line {
  margin-top: 0;
  margin-bottom: 0.65rem;
  color: #d7ffe8;
}

.detail-hero-image,
.detail-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 0.75rem;
  background: rgba(7, 12, 24, 0.92);
}

.detail-main-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.detail-gallery-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.article-content {
  margin-top: 1.2rem;
}

.article-block + .article-block {
  margin-top: 1.2rem;
}

.article-block h2 {
  margin-bottom: 0.6rem;
}

.card h3 {
  margin-top: 0;
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.tech-chip {
  display: inline-flex;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  color: #9ed7ff;
  border: 1px solid rgba(0, 184, 255, 0.35);
  background: rgba(8, 17, 32, 0.76);
}

.tech-divider {
  position: relative;
}

.tech-divider::before {
  content: "";
  position: absolute;
  top: -1.1rem;
  left: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 230, 118, 0.8), transparent);
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.35);
}

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

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag-risk-low {
  color: var(--primary);
  border-color: rgba(0, 230, 118, 0.5);
}

.tag-risk-medium {
  color: var(--gold);
  border-color: rgba(245, 197, 66, 0.5);
}

.tag-risk-high {
  color: var(--risk);
  border-color: rgba(255, 77, 77, 0.55);
}

.risk-block {
  background: rgba(255, 77, 77, 0.08);
  border: 1px solid rgba(255, 77, 77, 0.25);
  border-radius: var(--radius);
  padding: 1rem 1rem 1rem 1.2rem;
}

.risk-title {
  margin: 0 0 0.4rem;
  color: #ffd8d8;
}

.table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
  background: rgba(17, 24, 39, 0.95);
}

tbody tr {
  transition: background 0.2s ease;
}

tbody tr:hover {
  background: rgba(0, 184, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(0, 184, 255, 0.15);
}

.mobile-compare {
  display: none;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  background: rgba(11, 16, 32, 0.9);
  border: 0;
  text-align: left;
  color: var(--text);
  padding: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}

.faq-button:hover {
  color: var(--primary);
  background: rgba(11, 16, 32, 0.98);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 0.95rem;
}

.faq-item.is-open .faq-panel {
  max-height: 320px;
  padding-bottom: 0.95rem;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  background: rgba(17, 24, 39, 0.9);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  transition: border-color 0.2s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(0, 230, 118, 0.45);
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.1);
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 16, 32, 0.9);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-link-list {
  display: grid;
  gap: 0.45rem;
}

.footer-link-list a {
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.footer-link-list a:hover {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.26);
}

.footer-note {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

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

.image-slot {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  background: linear-gradient(145deg, rgba(0, 184, 255, 0.12), rgba(0, 230, 118, 0.1));
}

.pulse {
  animation: pulse 2.8s ease-in-out infinite;
}

.success-text {
  color: var(--primary);
}

.danger-text {
  color: var(--risk);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(0, 230, 118, 0.2);
  }

  50% {
    box-shadow: 0 0 28px rgba(0, 230, 118, 0.4);
  }
}

@keyframes luxLineMove {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(250%);
  }
}

@keyframes luxCandlePulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.95;
  }

  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

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

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

  .hero-modern-float-bottom {
    max-width: 180px;
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.2rem;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .desktop-compare {
    display: none;
  }

  .mobile-compare {
    display: grid;
    gap: 0.8rem;
  }

  .panel-row {
    grid-template-columns: 1fr;
  }

  .chart-shell {
    min-height: 290px;
  }

  .hero-modern-shell {
    min-height: 300px;
  }

  .hero-modern-image {
    min-height: 270px;
  }

  .hero-modern-float {
    position: static;
    margin-top: 0.6rem;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(1120px, 94vw);
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .cta-row {
    gap: 0.6rem;
  }

  .cta-row .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .tech-pill,
  .tech-chip {
    font-size: 0.66rem;
  }

  th,
  td {
    padding: 0.64rem;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 1.04rem;
  }

  .mobile-nav-panel {
    width: 100%;
  }

  .lux-preloader-panel {
    width: min(460px, 92vw);
  }

  .hero-modern-shell {
    padding: 0.65rem;
  }

  .hero-modern-float strong {
    font-size: 0.77rem;
  }

  .section {
    padding: 2.5rem 0;
  }
}

@media (hover: none), (pointer: coarse) {
  .button::before {
    display: none;
  }

  .button:hover,
  .button-primary:hover,
  .button-secondary:hover,
  .button-telegram:hover,
  .button-whatsapp:hover,
  .hero-modern-float:hover,
  .dashboard-card:hover,
  .card:hover,
  .card-neon:hover {
    transform: none;
    box-shadow: none;
  }

  .hero-modern-shell:hover .hero-modern-image,
  .image-frame:hover .product-image,
  .image-frame:hover .article-image,
  .detail-gallery-item:hover .detail-gallery-image,
  .detail-hero-image:hover .detail-main-image {
    transform: none;
    filter: none;
  }

  .hero-neon-text:hover,
  .hero-neon-title:hover,
  .hero-neon-lead:hover,
  .nav-link:hover,
  .footer-link-list a:hover {
    color: inherit;
    text-shadow: none;
  }

  .image-neon:hover::after,
  .tech-pill:hover,
  .mobile-nav-link:hover,
  tbody tr:hover,
  input:hover,
  textarea:hover,
  select:hover {
    box-shadow: none;
  }
}

.fx-lite .site-header,
.fx-lite .mobile-nav-backdrop,
.fx-lite .hero-modern-float,
.fx-lite .dashboard-card {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.fx-lite .ticker-track {
  animation-duration: 32s;
}

.fx-lite .pulse {
  animation: none;
}

.fx-lite .hero-modern-image,
.fx-lite .hero-photo,
.fx-lite .product-image,
.fx-lite .article-image,
.fx-lite .detail-main-image,
.fx-lite .detail-gallery-image {
  filter: none;
}

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