﻿:root {
  --bg: #121314;
  --bg-2: #0e0f10;
  --text: #f5f7f8;
  --muted: #9da4ab;
  --acid: #8fff2a;
  --acid-dark: #6acf12;
  --card: rgba(255, 255, 255, 0.04);
  --line: rgba(143, 255, 42, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 15%, rgba(143, 255, 42, 0.07), transparent 35%),
    radial-gradient(circle at 20% 10%, rgba(35, 74, 106, 0.1), transparent 40%),
    linear-gradient(180deg, #161718 0%, var(--bg-2) 100%);
  overflow-x: hidden;
}

html,
body {
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
button,
[contenteditable="true"],
[data-allow-copy] {
  -webkit-user-select: text;
  user-select: text;
}

.home-page {
  background:
    radial-gradient(circle at 72% 22%, rgba(146, 255, 56, 0.1), transparent 33%),
    radial-gradient(circle at 82% 68%, rgba(113, 235, 34, 0.08), transparent 42%),
    radial-gradient(circle at 12% 18%, rgba(48, 78, 121, 0.1), transparent 46%),
    linear-gradient(180deg, #151617 0%, #0d0e0f 100%);
}

.home-page::before,
.home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home-page::before {
  background:
    radial-gradient(ellipse at 10% 88%, rgba(188, 214, 255, 0.2), transparent 36%),
    radial-gradient(ellipse at 90% 88%, rgba(188, 214, 255, 0.16), transparent 30%);
  filter: blur(10px);
}

.home-page::after {
  background:
    radial-gradient(circle at 50% 58%, rgba(144, 255, 58, 0.08), transparent 55%),
    linear-gradient(180deg, transparent 74%, rgba(10, 14, 16, 0.72) 100%);
}

.noise,
.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  z-index: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.45) 0.5px, transparent 0.6px);
  background-size: 4px 4px;
}

.home-page .noise {
  opacity: 0.2;
  background-image:
    radial-gradient(rgba(199, 255, 163, 0.38) 0.7px, transparent 0.9px),
    radial-gradient(rgba(255, 255, 255, 0.24) 0.45px, transparent 0.65px);
  background-size: 5px 5px, 3px 3px;
}

.grid {
  z-index: 1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 32%, black 24%, transparent 78%);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.top {
  display: grid;
  grid-template-columns: auto minmax(60px, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--acid);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 1rem;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-text {
  line-height: 1;
}

.menu {
  display: flex;
  gap: 10px;
  justify-self: end;
  flex-wrap: wrap;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 14px;
  transition: 0.2s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--acid);
  border-color: rgba(143, 255, 42, 0.4);
  background: rgba(143, 255, 42, 0.12);
}

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

.site-search {
  position: relative;
  width: clamp(56px, 44vw, 740px);
  max-width: 740px;
  justify-self: start;
  z-index: 30;
  transform-origin: left center;
  will-change: width, max-width, transform;
  transition: width 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), max-width 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.28s ease;
}

.site-search.is-expanded,
.site-search.is-open,
.site-search:focus-within {
  width: min(100%, 740px);
  max-width: 740px;
}

.search-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1px solid rgba(143, 255, 42, 0.36);
  background:
    linear-gradient(180deg, rgba(15, 20, 22, 0.88), rgba(11, 16, 17, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(143, 255, 42, 0.12), transparent 45%);
  box-shadow:
    inset 0 1px 0 rgba(198, 255, 123, 0.18),
    0 0 0 1px rgba(143, 255, 42, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.site-search:focus-within .search-shell {
  border-color: rgba(143, 255, 42, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(198, 255, 123, 0.24),
    0 0 0 3px rgba(143, 255, 42, 0.18),
    0 0 35px rgba(143, 255, 42, 0.2);
}

.search-icon {
  color: #b7ff85;
  font-size: 1.1rem;
  opacity: 0.9;
  flex: 0 0 auto;
}

.search-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.98rem;
}

.search-input::placeholder {
  color: #8f9998;
}

.search-hint {
  border: 1px solid rgba(143, 255, 42, 0.3);
  border-radius: 8px;
  color: #c5ffa2;
  min-width: 30px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  background: rgba(143, 255, 42, 0.1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.search-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 120;
  border-radius: 16px;
  border: 1px solid rgba(143, 255, 42, 0.32);
  background: linear-gradient(180deg, rgba(13, 20, 21, 0.96), rgba(10, 16, 17, 0.98));
  box-shadow:
    0 14px 50px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(143, 255, 42, 0.17);
  overflow: hidden;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-6px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-search.is-open .search-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.search-caption {
  margin: 0;
  padding: 12px 14px 10px;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a4c790;
  border-bottom: 1px solid rgba(143, 255, 42, 0.14);
}

.search-results {
  list-style: none;
  margin: 0;
  padding: 6px;
  max-height: 220px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 255, 42, 0.5) rgba(8, 14, 15, 0.7);
}

.search-results::-webkit-scrollbar {
  width: 8px;
}

.search-results::-webkit-scrollbar-track {
  background: rgba(8, 14, 15, 0.72);
  border-radius: 999px;
}

.search-results::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(171, 255, 107, 0.8), rgba(111, 217, 35, 0.8));
  border-radius: 999px;
  border: 1px solid rgba(8, 14, 15, 0.9);
}

.search-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.search-item:hover,
.search-item.is-active {
  background: rgba(143, 255, 42, 0.12);
  border-color: rgba(143, 255, 42, 0.28);
}

.search-item-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.search-item-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.85rem;
}

.search-item mark {
  background: rgba(143, 255, 42, 0.22);
  color: #d8ffba;
  border-radius: 3px;
  padding: 0 2px;
}

.search-empty {
  padding: 12px 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 981px) {
  .site-search.is-collapsed {
    width: 56px;
    max-width: 56px;
    transform: translateY(0);
  }

  .site-search.is-collapsed .search-shell {
    cursor: text;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-search.is-collapsed .search-input {
    display: none;
  }

  .site-search.is-collapsed .search-hint {
    display: none;
  }

  .site-search.is-collapsed .search-icon {
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 1.9rem;
    line-height: 1;
    color: #c4ff95;
    text-shadow: 0 0 12px rgba(151, 255, 52, 0.45);
  }
}

.hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px 0 22px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  color: var(--acid);
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  text-wrap: balance;
}

.toxic-line {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(180deg, #d8ff8a 0%, #8fff2a 48%, #74dd1b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 16px rgba(143, 255, 42, 0.65),
    0 0 28px rgba(143, 255, 42, 0.35);
}

.toxic-line::after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 0;
  color: rgba(168, 255, 86, 0.34);
  filter: blur(1px);
  pointer-events: none;
  animation: toxic-jitter 2.1s steps(2, end) infinite;
}

@keyframes toxic-jitter {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.34;
  }
  20% {
    transform: translate(-1px, 0);
    opacity: 0.42;
  }
  40% {
    transform: translate(1px, -1px);
    opacity: 0.26;
  }
  60% {
    transform: translate(-1px, 1px);
    opacity: 0.38;
  }
  80% {
    transform: translate(1px, 0);
    opacity: 0.29;
  }
}

.subtitle {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 58ch;
}

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

.btn {
  border: 1px solid rgba(143, 255, 42, 0.42);
  border-radius: 12px;
  padding: 12px 18px;
  font: inherit;
  color: var(--text);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-main {
  background: linear-gradient(135deg, var(--acid) 0%, var(--acid-dark) 100%);
  color: #0b1208;
  border-color: transparent;
  box-shadow: 0 0 24px rgba(143, 255, 42, 0.32);
}

.btn-main:hover {
  transform: translateY(-2px);
}

.btn-ghost:hover {
  color: var(--acid);
  background: rgba(143, 255, 42, 0.12);
}

.hero-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6% 12%;
  background:
    radial-gradient(circle at 45% 46%, rgba(170, 255, 91, 0.24), transparent 43%),
    radial-gradient(circle at 62% 62%, rgba(170, 255, 91, 0.18), transparent 48%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 5% 9%;
  background-image:
    radial-gradient(rgba(169, 255, 90, 0.8) 1.2px, transparent 1.6px),
    radial-gradient(rgba(169, 255, 90, 0.35) 0.8px, transparent 1.2px);
  background-size: 90px 90px, 48px 48px;
  background-position: 0 0, 22px 14px;
  opacity: 0.23;
  pointer-events: none;
}

.hero-art {
  width: min(100%, 620px);
  max-height: 600px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 34px rgba(143, 255, 42, 0.26))
    drop-shadow(0 0 70px rgba(143, 255, 42, 0.12));
  animation: hero-float 8s ease-in-out infinite;
}

.decor-plus {
  position: absolute;
  color: #a5ff57;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 700;
  text-shadow:
    0 0 14px rgba(143, 255, 42, 0.65),
    0 0 30px rgba(143, 255, 42, 0.34);
  opacity: 0.88;
  pointer-events: none;
  animation: plus-pulse 3s ease-in-out infinite;
}

.plus-a {
  left: 10%;
  top: 12%;
}

.plus-b {
  right: 15%;
  top: 20%;
  font-size: 1.45rem;
  animation-delay: 0.8s;
}

.plus-c {
  left: 17%;
  bottom: 16%;
  font-size: 1.25rem;
  animation-delay: 1.5s;
}

.plus-d {
  right: 18%;
  bottom: 12%;
  font-size: 1.65rem;
  animation-delay: 0.4s;
}

@keyframes plus-pulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.18) translateY(-4px);
    opacity: 1;
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.ring {
  position: absolute;
  left: 18%;
  top: 8%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 22px solid rgba(143, 255, 42, 0.85);
  box-shadow:
    0 0 52px rgba(143, 255, 42, 0.5),
    inset 0 0 44px rgba(143, 255, 42, 0.3);
  opacity: 0.86;
}

.chip {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #f9fdf7;
  background: linear-gradient(145deg, #151d1a, #27342a);
  border: 1px solid rgba(143, 255, 42, 0.4);
}

.chip-1 {
  left: 7%;
  top: 30%;
}

.chip-2 {
  right: 20%;
  top: 20%;
}

.chip-3 {
  right: 4%;
  bottom: 20%;
}

.panel {
  position: absolute;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(143, 255, 42, 0.25), rgba(16, 20, 23, 0.45));
  border: 1px solid rgba(143, 255, 42, 0.45);
}

.panel-a {
  left: 22%;
  bottom: 16%;
  width: 320px;
  height: 90px;
}

.panel-b {
  right: 11%;
  bottom: 10%;
  width: 180px;
  height: 64px;
}

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

.about article,
.offer {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--card);
  padding: 18px;
  backdrop-filter: blur(3px);
}

.about h2,
.offer h2 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.about p,
.offer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.catalog-head {
  padding: 40px 0 12px;
}

.catalog-filters {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  border: 1px solid rgba(143, 255, 42, 0.34);
  border-radius: 999px;
  background: rgba(143, 255, 42, 0.08);
  color: #d8e2de;
  font: inherit;
  font-size: 0.86rem;
  padding: 8px 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-pill:hover {
  color: #ecffde;
  border-color: rgba(143, 255, 42, 0.54);
  background: rgba(143, 255, 42, 0.16);
}

.filter-pill.is-active {
  color: #10180c;
  border-color: transparent;
  background: linear-gradient(135deg, var(--acid) 0%, var(--acid-dark) 100%);
  box-shadow: 0 0 20px rgba(143, 255, 42, 0.34);
}

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

.meta {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.offer .btn {
  margin-top: auto;
  width: fit-content;
  min-width: 122px;
  position: relative;
  z-index: 2;
}

.offer-premium {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  backdrop-filter: blur(5px);
  overflow: hidden;
  border: 1px solid rgba(143, 255, 42, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(20, 23, 26, 0.88), rgba(12, 15, 17, 0.9)),
    radial-gradient(circle at 85% 8%, rgba(143, 255, 42, 0.16), transparent 40%);
  box-shadow:
    inset 0 1px 0 rgba(198, 255, 123, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: default;
}

.offer-premium:hover {
  border-color: rgba(143, 255, 42, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(198, 255, 123, 0.15),
    0 18px 34px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(143, 255, 42, 0.1);
}

.offer-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid transparent;
  background: linear-gradient(130deg, rgba(143, 255, 42, 0.4), rgba(143, 255, 42, 0) 40%) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.offer-topline {
  height: 2px;
  margin: -20px -20px 14px;
  background: linear-gradient(90deg, rgba(143, 255, 42, 0), rgba(143, 255, 42, 0.9), rgba(143, 255, 42, 0));
}

.offer-thumb-wrap {
  margin: 0 0 12px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 1px solid rgba(143, 255, 42, 0.24);
  background:
    linear-gradient(180deg, rgba(16, 21, 23, 0.95), rgba(10, 14, 16, 0.92)),
    radial-gradient(circle at 70% 20%, rgba(143, 255, 42, 0.14), transparent 55%);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.offer-premium h2 {
  margin: 2px 0 10px;
  font-size: 2rem;
  letter-spacing: -0.01em;
}

.offer-premium .meta {
  margin: 0 0 8px;
  color: #b4bbc2;
}

.offer-premium p {
  margin: 0;
}

.offer-premium p:last-of-type {
  margin-bottom: 18px;
  color: #d3d8de;
  line-height: 1.45;
}

.offer-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-thumb-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #0d1508;
  background: linear-gradient(135deg, #a1ff50, #6fd616);
  box-shadow: 0 0 20px rgba(143, 255, 42, 0.4);
}

.offer-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  padding-bottom: 70px;
}

.offer-card-shell {
  border: 1px solid rgba(143, 255, 42, 0.26);
  background:
    linear-gradient(180deg, rgba(9, 15, 17, 0.9), rgba(9, 15, 17, 0.72)),
    radial-gradient(circle at 88% 5%, rgba(143, 255, 42, 0.22), transparent 35%);
  border-radius: 22px;
  padding: 26px;
  box-shadow:
    inset 0 1px 0 rgba(198, 255, 123, 0.17),
    0 0 0 1px rgba(143, 255, 42, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.38);
}

.offer-intro h1 {
  margin-bottom: 12px;
}

.offer-kpi {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

.offer-kpi strong {
  font-size: 1.18rem;
  color: var(--acid);
}

.offer-metrics {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-metrics article {
  border: 1px solid rgba(143, 255, 42, 0.2);
  border-radius: 14px;
  background: rgba(13, 20, 19, 0.72);
  padding: 12px;
}

.offer-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.offer-metrics strong {
  font-size: 1rem;
}

.offer-steps {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.offer-steps li {
  border: 1px solid rgba(143, 255, 42, 0.2);
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  position: relative;
  background: rgba(12, 18, 19, 0.72);
  color: #dbe2e5;
}

.offer-steps li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0d1807;
  background: var(--acid);
  font-weight: 800;
  font-size: 0.72rem;
}

.offer-form-wrap h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
}

.offer-auth-note {
  margin: 14px 0 0;
  border: 1px solid rgba(143, 255, 42, 0.25);
  border-radius: 12px;
  background: rgba(143, 255, 42, 0.09);
  color: #cde7bd;
  padding: 10px 12px;
}

.offer-auth-note a {
  color: var(--acid);
}

.offer-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.offer-form label {
  display: grid;
  gap: 8px;
  color: #dbe2e5;
  font-size: 0.92rem;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  width: 100%;
  border: 1px solid rgba(143, 255, 42, 0.22);
  border-radius: 12px;
  background: rgba(10, 15, 16, 0.84);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
  border-color: rgba(143, 255, 42, 0.6);
  box-shadow: 0 0 0 3px rgba(143, 255, 42, 0.16);
}

.offer-form .check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.offer-form .check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  padding: 0;
}

.offer-success {
  margin: 16px 0 0;
  border-radius: 12px;
  border: 1px solid rgba(143, 255, 42, 0.35);
  background: rgba(143, 255, 42, 0.11);
  color: #ceffaf;
  padding: 12px 14px;
  font-weight: 600;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 16px;
  padding-bottom: 70px;
}

.auth-shell,
.auth-note,
.cabinet-card {
  border: 1px solid rgba(143, 255, 42, 0.26);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(9, 15, 17, 0.9), rgba(9, 15, 17, 0.72)),
    radial-gradient(circle at 88% 5%, rgba(143, 255, 42, 0.2), transparent 35%);
  box-shadow:
    inset 0 1px 0 rgba(198, 255, 123, 0.15),
    0 14px 34px rgba(0, 0, 0, 0.38);
}

.auth-shell {
  padding: 24px;
}

.auth-note {
  padding: 24px;
  align-self: start;
}

.auth-note h2 {
  margin-top: 0;
}

.auth-note ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.auth-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.auth-tabs {
  margin-top: 20px;
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  background: rgba(143, 255, 42, 0.08);
  border: 1px solid rgba(143, 255, 42, 0.24);
  padding: 4px;
}

.auth-tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 9px;
  background: linear-gradient(135deg, var(--acid) 0%, var(--acid-dark) 100%);
  box-shadow: 0 0 16px rgba(143, 255, 42, 0.35);
  transition: transform 0.22s ease;
}

.auth-tabs[data-active="register"] .auth-tab-indicator {
  transform: translateX(100%);
}

.auth-tab {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 10px 14px;
  cursor: pointer;
}

.auth-tab.is-active {
  color: #0b1208;
  background: transparent;
}

.auth-message {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.auth-message.is-error {
  color: #ff9a9a;
}

.auth-message.is-success {
  color: #b6ff8f;
}

.auth-form {
  margin-top: 8px;
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.auth-form[hidden] {
  display: none !important;
}

.auth-form.is-active {
  opacity: 1;
  transform: translateY(0);
}

.auth-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.auth-form input {
  width: 100%;
  border: 1px solid rgba(143, 255, 42, 0.22);
  border-radius: 12px;
  background: rgba(10, 15, 16, 0.84);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(143, 255, 42, 0.6);
  box-shadow: 0 0 0 3px rgba(143, 255, 42, 0.16);
}

.cabinet-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 0.8fr;
  padding-bottom: 70px;
}

.cabinet-card {
  padding: 24px;
}

.cabinet-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cabinet-grid article {
  border: 1px solid rgba(143, 255, 42, 0.2);
  border-radius: 12px;
  background: rgba(12, 18, 19, 0.72);
  padding: 12px;
}

.cabinet-grid span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.cabinet-grid strong {
  word-break: break-word;
}

.cabinet-security {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #dbe2e5;
  display: grid;
  gap: 8px;
}

.cabinet-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 16px;
  padding-bottom: 70px;
}

.admin-panel {
  border: 1px solid rgba(143, 255, 42, 0.26);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(9, 15, 17, 0.9), rgba(9, 15, 17, 0.72)),
    radial-gradient(circle at 88% 5%, rgba(143, 255, 42, 0.2), transparent 35%);
  box-shadow:
    inset 0 1px 0 rgba(198, 255, 123, 0.15),
    0 14px 34px rgba(0, 0, 0, 0.38);
  padding: 24px;
}

.admin-message {
  min-height: 24px;
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.admin-message.is-error {
  color: #ff9a9a;
}

.admin-message.is-success {
  color: #b6ff8f;
}

.admin-form {
  display: grid;
  gap: 12px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.admin-form .check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.admin-form .check input {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(143, 255, 42, 0.22);
  border-radius: 12px;
  background: rgba(10, 15, 16, 0.84);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  outline: none;
}

.admin-preview {
  min-height: 120px;
  border: 1px dashed rgba(143, 255, 42, 0.3);
  border-radius: 12px;
  background: rgba(10, 15, 16, 0.65);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.admin-preview img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.admin-preview-empty {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-form input:focus,
.admin-form textarea:focus {
  border-color: rgba(143, 255, 42, 0.6);
  box-shadow: 0 0 0 3px rgba(143, 255, 42, 0.16);
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-list h2 {
  margin-top: 0;
}

.admin-items {
  display: grid;
  gap: 10px;
}

.admin-bot .subtitle {
  margin-top: 6px;
}

.admin-bot-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-bot-actions .btn {
  padding: 8px 12px;
}

[data-bot-smart-toggle].is-active {
  border-color: rgba(143, 255, 42, 0.68);
  background: linear-gradient(135deg, rgba(143, 255, 42, 0.22), rgba(143, 255, 42, 0.08));
  color: #d6ffb6;
}

.admin-bot-log {
  margin-top: 10px;
  border: 1px solid rgba(143, 255, 42, 0.22);
  background: rgba(9, 13, 15, 0.72);
  min-height: 220px;
  max-height: 320px;
  overflow: auto;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.bot-msg {
  border: 1px solid rgba(143, 255, 42, 0.2);
  background: rgba(10, 16, 17, 0.78);
  padding: 9px 10px;
}

.bot-msg p {
  margin: 0;
  line-height: 1.5;
  color: #d6dfe0;
}

.bot-msg.is-user {
  border-color: rgba(143, 255, 42, 0.44);
  background: rgba(143, 255, 42, 0.08);
}

.bot-msg.is-bot {
  border-color: rgba(133, 194, 255, 0.3);
}

.admin-bot-form {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.admin-bot-form input {
  width: 100%;
  border: 1px solid rgba(143, 255, 42, 0.25);
  background: rgba(8, 12, 14, 0.85);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
  outline: none;
}

.admin-bot-form input:focus {
  border-color: rgba(143, 255, 42, 0.6);
  box-shadow: 0 0 0 3px rgba(143, 255, 42, 0.14);
}

.admin-item {
  border: 1px solid rgba(143, 255, 42, 0.2);
  border-radius: 12px;
  background: rgba(12, 18, 19, 0.72);
  padding: 12px;
}

.admin-item-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: center;
}

.admin-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid rgba(143, 255, 42, 0.25);
  object-fit: cover;
  background: #111618;
}

.admin-item-thumb.empty {
  display: grid;
  place-items: center;
  color: #0f170a;
  font-weight: 700;
  background: linear-gradient(135deg, #a1ff50, #6fd616);
}

.admin-item h3 {
  margin: 0 0 4px;
}

.admin-item p {
  margin: 0;
  color: var(--muted);
}

.admin-item-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-locked .top,
.admin-locked .admin-layout {
  visibility: hidden;
}

.admin-lock {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 10, 11, 0.88);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 20px;
}

.admin-lock-card {
  width: min(460px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(143, 255, 42, 0.34);
  background:
    linear-gradient(180deg, rgba(12, 17, 19, 0.96), rgba(9, 13, 14, 0.95)),
    radial-gradient(circle at 80% 12%, rgba(143, 255, 42, 0.14), transparent 45%);
  padding: 22px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(143, 255, 42, 0.1);
}

.admin-lock-card h2 {
  margin: 0 0 8px;
}

.admin-lock-card p {
  margin: 0;
  color: var(--muted);
}

.admin-lock-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.admin-lock-form input {
  width: 100%;
  border: 1px solid rgba(143, 255, 42, 0.28);
  border-radius: 12px;
  background: rgba(8, 12, 13, 0.86);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  outline: none;
}

.admin-lock-form input:focus {
  border-color: rgba(143, 255, 42, 0.62);
  box-shadow: 0 0 0 3px rgba(143, 255, 42, 0.15);
}

.admin-lock-error {
  margin-top: 10px;
  color: #ff9a9a;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-search {
    width: 100%;
    order: 3;
  }

  .menu {
    justify-self: start;
  }

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

  .hero-visual {
    min-height: 430px;
  }

  .plus-a,
  .plus-c {
    left: 6%;
  }

  .plus-b,
  .plus-d {
    right: 8%;
  }

  .about,
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .offer-metrics {
    grid-template-columns: 1fr;
  }

  .auth-layout,
  .cabinet-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .top {
    align-items: stretch;
  }

  .about,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .decor-plus {
    font-size: 1.1rem;
  }

  .brand-logo {
    width: 28px;
    height: 28px;
  }

  .ring {
    width: 250px;
    height: 250px;
    border-width: 16px;
  }

  .chip {
    width: 88px;
    height: 88px;
    font-size: 1.8rem;
  }
}

/* ===== Premium Visual Layer ===== */
:root {
  --bg: #0f1113;
  --bg-2: #0a0c0e;
  --text: #f3f7f5;
  --muted: #96a09f;
  --acid: #97ff34;
  --acid-dark: #68c714;
  --line: rgba(146, 255, 52, 0.14);
}

body {
  background:
    radial-gradient(circle at 84% 7%, rgba(151, 255, 52, 0.08), transparent 30%),
    radial-gradient(circle at 18% 92%, rgba(36, 58, 80, 0.12), transparent 32%),
    linear-gradient(180deg, #101214 0%, #0a0c0e 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    radial-gradient(700px 320px at 12% 100%, rgba(181, 207, 255, 0.11), transparent 70%),
    radial-gradient(900px 380px at 88% 95%, rgba(170, 255, 99, 0.08), transparent 72%);
}

body::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 62%, rgba(8, 10, 11, 0.62) 100%);
}

.grid {
  opacity: 0.95;
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 36%, black 32%, transparent 82%);
}

.top {
  position: sticky;
  top: 14px;
  z-index: 50;
  grid-template-columns: auto minmax(60px, 1fr) auto;
  border-radius: 20px;
  padding: 12px 14px;
  backdrop-filter: blur(10px);
  background:
    linear-gradient(180deg, rgba(11, 16, 18, 0.78), rgba(9, 12, 14, 0.62)),
    radial-gradient(circle at 88% 22%, rgba(151, 255, 52, 0.1), transparent 35%);
  border: 1px solid rgba(151, 255, 52, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(220, 255, 177, 0.08),
    0 12px 34px rgba(0, 0, 0, 0.34);
}

.brand {
  padding: 6px 8px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(151, 255, 52, 0.08), rgba(151, 255, 52, 0));
}

.menu a {
  padding: 9px 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.menu a:hover,
.menu a.active {
  box-shadow: 0 0 0 1px rgba(151, 255, 52, 0.15), 0 0 24px rgba(151, 255, 52, 0.12);
}

.search-shell {
  min-height: 50px;
  border-radius: 14px;
}

.hero {
  gap: 34px;
  min-height: 76vh;
  padding: 34px 0 30px;
  position: relative;
  overflow: hidden;
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-tag {
  position: absolute;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(151, 255, 52, 0.2);
  display: grid;
  place-items: center;
  color: rgba(171, 255, 99, 0.7);
  font-weight: 800;
  font-size: 1.2rem;
  background: rgba(10, 14, 16, 0.34);
  box-shadow: 0 0 16px rgba(151, 255, 52, 0.12);
  animation: hero-tag-float 8s ease-in-out infinite;
}

.hero-tag-a {
  left: 3%;
  top: 18%;
}

.hero-tag-b {
  left: 42%;
  top: 9%;
  animation-delay: 1.3s;
}

.hero-tag-c {
  right: 6%;
  top: 58%;
  animation-delay: 2.1s;
}

.hero-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(151, 255, 52, 0), rgba(151, 255, 52, 0.45), rgba(151, 255, 52, 0));
  opacity: 0.55;
}

.hero-line-a {
  left: 4%;
  top: 72%;
  width: 220px;
}

.hero-line-b {
  left: 32%;
  top: 24%;
  width: 180px;
}

.hero-line-c {
  right: 2%;
  top: 34%;
  width: 240px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

@keyframes hero-tag-float {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.92;
  }
}

h1 {
  letter-spacing: -0.03em;
  line-height: 0.93;
}

.subtitle {
  font-size: 1.08rem;
  line-height: 1.7;
}

.btn {
  border-radius: 14px;
  padding: 13px 20px;
}

.btn-main {
  box-shadow:
    0 0 30px rgba(151, 255, 52, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.28);
}

.hero-visual {
  min-height: 560px;
}

.hero-art {
  width: min(100%, 700px);
}

.about article,
.offer-premium,
.offer-card-shell,
.auth-shell,
.auth-note,
.cabinet-card,
.admin-panel {
  border-radius: 22px;
  border: 1px solid rgba(151, 255, 52, 0.22);
  background:
    linear-gradient(155deg, rgba(19, 24, 27, 0.9), rgba(10, 14, 16, 0.78)),
    radial-gradient(circle at 92% 8%, rgba(151, 255, 52, 0.12), transparent 40%);
  box-shadow:
    inset 0 1px 0 rgba(220, 255, 177, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.35);
}

.about article {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 22px;
}

.about article::before {
  content: "";
  position: absolute;
  left: -20%;
  top: -45%;
  width: 120px;
  height: 220px;
  background: linear-gradient(180deg, rgba(151, 255, 52, 0.2), transparent);
  transform: rotate(18deg);
  opacity: 0.5;
}

.about article h2 {
  font-size: 1.16rem;
  margin-bottom: 12px;
}

.catalog-head {
  padding: 46px 0 18px;
}

.catalog-head h1 {
  max-width: 14ch;
}

.catalog-grid {
  gap: 18px;
}

.offer-premium {
  padding: 18px;
  transform: translateY(0);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.offer-premium:hover {
  transform: translateY(-4px);
}

.offer-topline {
  margin: -18px -18px 14px;
  height: 3px;
}

.offer-thumb-wrap {
  border-radius: 14px;
}

.offer-premium h2 {
  font-size: 1.9rem;
}

.offer-premium .btn {
  margin-top: 18px;
  width: 100%;
  text-align: center;
}

.offer-metrics article,
.offer-steps li,
.cabinet-grid article,
.admin-item {
  border-color: rgba(151, 255, 52, 0.22);
  background: rgba(10, 14, 16, 0.76);
}

.offer-steps li::before {
  box-shadow: 0 0 14px rgba(151, 255, 52, 0.4);
}

.offer-form input,
.offer-form select,
.offer-form textarea,
.auth-form input,
.admin-form input,
.admin-form textarea,
.admin-lock-form input {
  border-radius: 14px;
  background: rgba(9, 13, 15, 0.9);
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus,
.auth-form input:focus,
.admin-form input:focus,
.admin-form textarea:focus,
.admin-lock-form input:focus {
  box-shadow:
    0 0 0 3px rgba(151, 255, 52, 0.16),
    0 0 24px rgba(151, 255, 52, 0.15);
}

.admin-lock-card {
  border-radius: 20px;
}

.hero-copy,
.hero-visual,
.catalog-head,
.catalog-grid,
.offer-layout,
.auth-layout,
.cabinet-layout,
.admin-layout {
  animation: surface-in 0.55s ease both;
}

.catalog-grid > *,
.about > * {
  animation: rise-in 0.55s ease both;
}

.catalog-grid > *:nth-child(2),
.about > *:nth-child(2) {
  animation-delay: 0.08s;
}

.catalog-grid > *:nth-child(3),
.about > *:nth-child(3) {
  animation-delay: 0.14s;
}

@keyframes surface-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .top {
    position: static;
    padding: 14px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero {
    min-height: auto;
    gap: 22px;
    padding-top: 14px;
  }

  .hero-tag-b,
  .hero-line-b {
    display: none;
  }

  .offer-premium .btn {
    width: fit-content;
    min-width: 144px;
  }
}

/* ===== Angular Release (No Rounding) ===== */
.top,
.brand,
.menu a,
.site-search,
.search-shell,
.search-hint,
.search-dropdown,
.search-item,
.btn,
.about article,
.offer-premium,
.offer-card-shell,
.offer-thumb-wrap,
.filter-pill,
.control-pill,
.auth-tabs,
.auth-tab,
.auth-tab-indicator,
.auth-shell,
.auth-note,
.cabinet-card,
.admin-panel,
.admin-preview,
.admin-item,
.admin-item-thumb,
.admin-lock-card,
.admin-lock-form input,
.offer-form input,
.offer-form select,
.offer-form textarea,
.auth-form input,
.admin-form input,
.admin-form textarea,
.site-footer,
.pulse-strip article,
.signal-main,
.signal-feed,
.feed-item,
.income-calc-panel,
.income-calc-result,
.income-fields input,
.income-metrics article,
.ops-grid article,
.faq-grid article,
.catalog-stats article,
.catalog-lab article {
  border-radius: 0 !important;
}

.top {
  border-width: 1px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.brand {
  background: none;
  padding: 0;
}

.menu {
  gap: 8px;
}

.menu a {
  border: 1px solid rgba(151, 255, 52, 0.2);
  background: rgba(10, 14, 16, 0.45);
}

.menu a:hover,
.menu a.active {
  border-color: rgba(151, 255, 52, 0.65);
  background:
    linear-gradient(90deg, rgba(151, 255, 52, 0.22), rgba(151, 255, 52, 0.06));
}

.search-shell {
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.search-dropdown {
  top: calc(100% + 10px);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.search-item {
  padding: 12px 12px;
}

.btn {
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.hero-copy {
  position: relative;
  padding: 14px 0 8px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(151, 255, 52, 0.72), transparent);
}

.pulse-strip {
  margin: 8px 0 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.pulse-strip article {
  border: 1px solid rgba(151, 255, 52, 0.24);
  background:
    linear-gradient(150deg, rgba(16, 20, 22, 0.9), rgba(9, 12, 14, 0.8));
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.pulse-strip article::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(151, 255, 52, 0.1));
}

.pulse-strip span {
  display: block;
  color: #a5afae;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pulse-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.signal-board {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin: 8px 0 18px;
}

.income-calc {
  margin: 8px 0 18px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.income-calc-panel,
.income-calc-result {
  border: 1px solid rgba(151, 255, 52, 0.24);
  background:
    linear-gradient(155deg, rgba(15, 20, 23, 0.92), rgba(8, 11, 13, 0.8)),
    radial-gradient(circle at 85% 12%, rgba(151, 255, 52, 0.13), transparent 42%);
  padding: 18px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.income-calc-panel h2 {
  margin: 4px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
}

.income-calc-panel p {
  margin: 0;
  color: #c3cbcf;
  line-height: 1.6;
}

.income-fields {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.income-fields label {
  display: grid;
  gap: 8px;
  color: #d6dede;
  font-size: 0.92rem;
}

.income-field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.income-value {
  color: #d8ffba;
  font-size: 0.94rem;
  font-weight: 700;
}

.income-fields input {
  width: 100%;
  border: 1px solid rgba(151, 255, 52, 0.26);
  background: rgba(8, 12, 14, 0.82);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
  outline: none;
}

.income-fields input:focus {
  border-color: rgba(151, 255, 52, 0.65);
  box-shadow: 0 0 0 3px rgba(151, 255, 52, 0.14);
}

.income-range {
  appearance: none;
  -webkit-appearance: none;
  padding: 0 !important;
  height: 8px;
  border: 1px solid rgba(151, 255, 52, 0.28);
  background:
    linear-gradient(90deg, rgba(151, 255, 52, 0.28), rgba(151, 255, 52, 0.06)),
    rgba(7, 11, 13, 0.88);
  cursor: pointer;
}

.income-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(151, 255, 52, 0.8);
  background: #baff83;
  box-shadow: 0 0 14px rgba(151, 255, 52, 0.48);
}

.income-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(151, 255, 52, 0.8);
  background: #baff83;
  box-shadow: 0 0 14px rgba(151, 255, 52, 0.48);
}

.income-range::-moz-range-track {
  height: 8px;
  border: 1px solid rgba(151, 255, 52, 0.28);
  background: rgba(7, 11, 13, 0.88);
}

.income-calc-result h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.income-metrics {
  display: grid;
  gap: 10px;
}

.income-metrics article {
  border: 1px solid rgba(151, 255, 52, 0.25);
  background: rgba(8, 12, 14, 0.72);
  padding: 12px;
}

.income-metrics span {
  display: block;
  color: #a9b3b3;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.income-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 1.32rem;
  color: #dcffbf;
}

.income-tip {
  margin: 12px 0 0;
  border-top: 1px solid rgba(151, 255, 52, 0.2);
  padding-top: 12px;
  color: #c7d0d2;
  font-size: 0.92rem;
  line-height: 1.56;
}

.signal-main,
.signal-feed {
  border: 1px solid rgba(151, 255, 52, 0.24);
  background:
    linear-gradient(155deg, rgba(16, 21, 24, 0.92), rgba(8, 11, 13, 0.82)),
    radial-gradient(circle at 86% 14%, rgba(151, 255, 52, 0.15), transparent 45%);
  padding: 18px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.signal-main h2 {
  margin: 4px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.signal-main p {
  margin: 0;
  color: #c4cbcf;
  line-height: 1.6;
}

.signal-list {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #d7dfdf;
}

.signal-feed h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.feed-items {
  display: grid;
  gap: 10px;
}

.feed-item {
  border: 1px solid rgba(151, 255, 52, 0.2);
  padding: 10px 10px 10px 34px;
  position: relative;
  background: rgba(8, 12, 14, 0.72);
}

.feed-item p {
  margin: 0;
  color: #c7cece;
  font-size: 0.92rem;
  line-height: 1.5;
}

.feed-dot {
  position: absolute;
  left: 12px;
  top: 13px;
  width: 10px;
  height: 10px;
  background: var(--acid);
  box-shadow: 0 0 12px rgba(151, 255, 52, 0.8);
}

.about {
  margin-top: 6px;
}

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

.ops-grid article {
  border: 1px solid rgba(151, 255, 52, 0.25);
  background: linear-gradient(145deg, rgba(14, 18, 20, 0.9), rgba(8, 10, 12, 0.82));
  padding: 16px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.ops-grid h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.ops-grid p {
  margin: 0;
  color: #b7c0c4;
  line-height: 1.55;
}

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

.faq-grid article {
  border: 1px solid rgba(151, 255, 52, 0.24);
  background: linear-gradient(155deg, rgba(14, 19, 21, 0.88), rgba(8, 11, 13, 0.8));
  padding: 14px 15px;
}

.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.faq-grid p {
  margin: 0;
  color: #bbc4c6;
  line-height: 1.52;
}

.catalog-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.catalog-stats article {
  border: 1px solid rgba(151, 255, 52, 0.24);
  background: linear-gradient(145deg, rgba(13, 18, 20, 0.9), rgba(7, 10, 12, 0.82));
  padding: 12px 14px;
}

.catalog-stats span {
  display: block;
  color: #a8b3b2;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.catalog-controls {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.control-pill {
  border: 1px solid rgba(151, 255, 52, 0.28);
  background: rgba(10, 14, 16, 0.78);
  color: #d8dfdf;
  font: inherit;
  font-size: 0.86rem;
  padding: 8px 12px;
  cursor: pointer;
}

.control-pill.is-active,
.control-pill:hover {
  color: #081005;
  background: linear-gradient(135deg, var(--acid), var(--acid-dark));
  border-color: transparent;
}

.offer-premium,
.offer-card-shell,
.auth-shell,
.auth-note,
.cabinet-card,
.admin-panel {
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.catalog-lab {
  margin: 4px 0 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.catalog-lab article {
  border: 1px solid rgba(151, 255, 52, 0.24);
  background: linear-gradient(145deg, rgba(14, 19, 22, 0.88), rgba(8, 11, 13, 0.78));
  padding: 16px;
}

.catalog-lab h2 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.catalog-lab p {
  margin: 0;
  color: #bcc5c7;
  line-height: 1.56;
}

.site-footer {
  margin-bottom: 26px;
  border: 1px solid rgba(151, 255, 52, 0.24);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(145deg, rgba(13, 18, 21, 0.86), rgba(8, 10, 12, 0.78));
}

.site-footer p {
  margin: 0;
  color: #a6b0b3;
  font-size: 0.9rem;
}

.site-footer a {
  color: #d6ffb8;
  text-decoration: none;
  border-bottom: 1px solid rgba(151, 255, 52, 0.45);
  padding-bottom: 2px;
}

.site-footer a:hover {
  color: var(--acid);
}

@media (max-width: 980px) {
  .pulse-strip,
  .catalog-stats {
    grid-template-columns: 1fr 1fr;
  }

  .signal-board {
    grid-template-columns: 1fr;
  }

  .income-calc {
    grid-template-columns: 1fr;
  }

  .ops-grid,
  .faq-grid,
  .catalog-lab {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pulse-strip,
  .catalog-stats {
    grid-template-columns: 1fr;
  }

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

  .hero-tag,
  .hero-line {
    opacity: 0.35;
  }

  .hero-tag-c,
  .hero-line-c {
    display: none;
  }
}
