:root {
  --bg: #030507;
  --panel: rgba(8, 14, 18, 0.78);
  --panel-strong: rgba(6, 12, 16, 0.94);
  --line: rgba(173, 248, 255, 0.14);
  --text: #f6fbff;
  --muted: #a8b8c0;
  --cyan: #12f7d4;
  --teal: #12bfd5;
  --purple: #b026ff;
  --violet: #6e3dff;
  --green: #a6ff50;
  --danger: #ff5d82;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(176, 38, 255, 0.13), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(18, 247, 212, 0.11), transparent 38rem),
    linear-gradient(135deg, #010203, #041012 48%, #020405);
  color: var(--text);
}

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

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

button {
  font: inherit;
}

#particle-canvas,
.grid-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#particle-canvas {
  opacity: 0.58;
}

.grid-glow {
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(18, 247, 212, 0.032), transparent 52%),
    radial-gradient(circle at var(--mx, 50%) var(--my, 40%), rgba(18, 247, 212, 0.06), transparent 24rem);
  opacity: 0.7;
}

.nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px clamp(18px, 4vw, 70px);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(3, 7, 9, 0.82);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transform: none;
}

.brand,
.nav nav,
.menu-toggle,
.actions,
.hero-stats,
.tabs,
.chat-header {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 32px rgba(18, 247, 212, 0.36);
}

.brand span {
  overflow: hidden;
  max-width: min(360px, 34vw);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav nav {
  justify-content: center;
  gap: 6px;
}

.mobile-menu-launch {
  display: none;
}

.nav nav a,
.nav-cta,
.menu-toggle,
.music-toggle {
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 8px;
  color: #c5d2dc;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none !important;
  justify-content: center;
  border: 1px solid rgba(18, 247, 212, 0.24);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.nav nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f4fbff;
  border: 1px solid rgba(18, 247, 212, 0.28);
  background: linear-gradient(135deg, rgba(18, 247, 212, 0.18), rgba(176, 38, 255, 0.18));
}

.music-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(18, 247, 212, 0.24);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.music-toggle:hover,
.music-toggle.is-on {
  color: #f4fbff;
  border-color: rgba(18, 247, 212, 0.55);
  background: linear-gradient(135deg, rgba(18, 247, 212, 0.16), rgba(176, 38, 255, 0.13));
  box-shadow: 0 0 28px rgba(18, 247, 212, 0.12);
}

.music-toggle.is-off {
  color: #aab9c1;
  border-color: rgba(173, 248, 255, 0.12);
}

.music-bars {
  display: inline-grid;
  grid-template-columns: repeat(3, 3px);
  align-items: end;
  gap: 3px;
  height: 15px;
}

.music-bars i {
  display: block;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(var(--cyan), var(--green));
  box-shadow: 0 0 10px rgba(18, 247, 212, 0.45);
  animation: music-bars 720ms ease-in-out infinite;
}

.music-bars i:nth-child(2) {
  animation-delay: 120ms;
}

.music-bars i:nth-child(3) {
  animation-delay: 240ms;
}

.music-toggle.is-off .music-bars i {
  height: 4px;
  animation-play-state: paused;
  background: #66747b;
  box-shadow: none;
}

.section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 150px) 0;
  scroll-margin-top: 110px;
}

.hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding-top: 112px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 48px rgba(18, 247, 212, 0.18), 0 0 60px rgba(176, 38, 255, 0.24);
}

h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  line-height: 1.05;
}

p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.76;
}

.hero-text {
  max-width: 620px;
  color: #eaf5fb;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.72;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.hero .reveal {
  transform: translateY(0);
  opacity: 1;
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 9px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-primary {
  color: #001512;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 16px 54px rgba(18, 247, 212, 0.36);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: #d9e8ef;
}

.hero-stats {
  display: grid;
  max-width: 700px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 28px;
}

.hero-stats span,
.pill-grid span {
  border: 1px solid rgba(173, 248, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #d8eef4;
}

.hero-stats span {
  padding: 10px 12px;
  font-size: 0.82rem;
}

.hero-stats strong {
  color: var(--green);
}

.contract-card {
  position: relative;
  display: grid;
  max-width: 700px;
  gap: 14px;
  margin-top: 18px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(18, 247, 212, 0.22);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(18, 247, 212, 0.18), transparent 36%),
    radial-gradient(circle at 90% 18%, rgba(176, 38, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(18, 247, 212, 0.09), rgba(176, 38, 255, 0.06)),
    rgba(2, 7, 9, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.contract-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, transparent 58%);
  opacity: 0.62;
  transform: translateX(-105%);
  animation: card-sweep 5.5s ease-in-out infinite;
}

.contract-card::after {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  content: "";
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(18, 247, 212, 0.18), transparent 40%, rgba(176, 38, 255, 0.16));
  opacity: 0;
  transition: opacity 220ms ease;
}

.contract-card:hover {
  border-color: rgba(18, 247, 212, 0.42);
  box-shadow: 0 28px 90px rgba(18, 247, 212, 0.13), 0 22px 70px rgba(0, 0, 0, 0.46);
  transform: translateY(-3px);
}

.contract-card:hover::after {
  opacity: 1;
}

.contract-card-header,
.contract-meta,
.contract-actions,
.contract-field {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contract-card-header {
  justify-content: space-between;
}

.contract-card-header div:first-child {
  display: grid;
  gap: 6px;
}

.contract-card-header span,
.contract-meta span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contract-card-header strong {
  color: #fff;
  font-size: 1rem;
}

.contract-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(18, 247, 212, 0.16);
  border-radius: 999px;
  color: #e4f3f8;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.contract-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(145, 255, 71, 0.75);
  animation: status-pulse 1.65s ease-in-out infinite;
}

.contract-field {
  min-width: 0;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(173, 248, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(18, 247, 212, 0.08), rgba(255, 255, 255, 0.035), rgba(176, 38, 255, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 22px rgba(18, 247, 212, 0.045);
}

.contract-field code {
  min-width: 0;
  color: #f3fbff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.94rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contract-field button,
.contract-actions button,
.contract-actions a,
.footer-ca button {
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid rgba(173, 248, 255, 0.14);
  border-radius: 8px;
  color: #aebcc3;
  background: rgba(255, 255, 255, 0.04);
  cursor: not-allowed;
}

.contract-actions a {
  text-decoration: none;
  cursor: pointer;
}

.contract-field button[data-copy-ca],
.footer-ca button[data-copy-ca] {
  color: #06100e;
  border-color: rgba(18, 247, 212, 0.48);
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 12px 30px rgba(18, 247, 212, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.contract-field button[data-copy-ca]:hover,
.footer-ca button[data-copy-ca]:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.contract-field button[data-copy-ca].copied,
.footer-ca button[data-copy-ca].copied {
  color: #001512;
  box-shadow: 0 0 30px rgba(166, 255, 80, 0.24);
}

.contract-meta {
  flex-wrap: wrap;
}

.contract-actions {
  flex-wrap: wrap;
}

.contract-actions button,
.contract-actions a {
  min-width: 180px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contract-actions .contract-primary-action {
  border-color: rgba(18, 247, 212, 0.24);
  color: #eafdf9;
  background: linear-gradient(135deg, rgba(18, 247, 212, 0.16), rgba(176, 38, 255, 0.14));
}

.contract-card:hover .contract-actions .contract-primary-action {
  border-color: rgba(18, 247, 212, 0.44);
  background: linear-gradient(135deg, rgba(18, 247, 212, 0.22), rgba(176, 38, 255, 0.2));
  transform: translateY(-1px);
}

#official-ca-card {
  isolation: isolate;
  width: 100%;
  max-width: 700px;
  padding: 22px;
  border: 1px solid rgba(18, 247, 212, 0.34);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(18, 247, 212, 0.13), rgba(4, 8, 12, 0.88) 44%, rgba(176, 38, 255, 0.13)),
    rgba(3, 8, 11, 0.92);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.5),
    0 0 42px rgba(18, 247, 212, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

#official-ca-card .contract-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

#official-ca-card .contract-card-header span {
  color: var(--green);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

#official-ca-card .contract-card-header strong {
  display: block;
  color: #fff;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.15;
}

#official-ca-card .contract-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
  border-color: rgba(173, 248, 255, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 0% 50%, rgba(18, 247, 212, 0.14), transparent 40%),
    rgba(255, 255, 255, 0.055);
}

#official-ca-card .contract-field code {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 2px;
  color: #f8fdff;
  font-size: 0.98rem;
}

#official-ca-card .contract-field button,
#official-ca-card .contract-actions button,
#official-ca-card .contract-actions a {
  border-radius: 10px;
  font-weight: 850;
}

#official-ca-card .contract-field button {
  min-width: 150px;
  color: #f8fffc;
  border-color: rgba(18, 247, 212, 0.48);
  background:
    linear-gradient(135deg, rgba(18, 247, 212, 0.28), rgba(176, 38, 255, 0.2)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 12px 34px rgba(18, 247, 212, 0.16);
}

#official-ca-card .contract-field button:hover {
  border-color: rgba(166, 255, 80, 0.7);
  background:
    linear-gradient(135deg, rgba(18, 247, 212, 0.38), rgba(166, 255, 80, 0.2)),
    rgba(255, 255, 255, 0.1);
}

#official-ca-card .contract-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#official-ca-card .contract-meta span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(173, 248, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

#official-ca-card .contract-meta em {
  color: var(--green);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#official-ca-card .contract-meta strong {
  color: #f4fbff;
  font-size: 0.94rem;
  letter-spacing: 0;
  text-transform: none;
}

#official-ca-card .contract-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#official-ca-card .contract-actions button,
#official-ca-card .contract-actions a {
  min-width: 0;
  min-height: 44px;
  color: #dceaf0;
}

#official-ca-card .market-button {
  display: grid;
  grid-template-columns: 34px minmax(0, 215px);
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-inline: 14px;
  overflow: hidden;
  text-align: left;
}

#official-ca-card .market-button img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(18, 247, 212, 0.18);
}

#official-ca-card .market-button > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.1;
}

#official-ca-card .contract-actions .contract-primary-action {
  color: #06100e;
  border-color: rgba(18, 247, 212, 0.52);
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 14px 36px rgba(18, 247, 212, 0.18);
}

#official-ca-card .contract-actions .contract-primary-action img {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.16);
}

#official-ca-card .market-logo-badge {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 247, 212, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 1), rgba(223, 255, 249, 0.96) 46%, rgba(18, 247, 212, 0.42) 68%, rgba(176, 38, 255, 0.2)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 28px rgba(18, 247, 212, 0.34),
    0 0 0 5px rgba(18, 247, 212, 0.055),
    inset 0 0 18px rgba(255, 255, 255, 0.42);
}

#official-ca-card .market-logo-badge img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
}

#official-ca-card .contract-primary-action .market-logo-badge {
  border-color: rgba(0, 0, 0, 0.12);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.92), rgba(220, 255, 237, 0.78) 52%, rgba(0, 0, 0, 0.08)),
    rgba(255, 255, 255, 0.6);
  box-shadow:
    0 0 24px rgba(0, 0, 0, 0.12),
    0 0 0 5px rgba(0, 0, 0, 0.035),
    inset 0 0 14px rgba(255, 255, 255, 0.34);
}

#official-ca-card .contract-primary-action .market-logo-badge img {
  filter: contrast(1.08) brightness(1.02) saturate(1.05);
  transform: scale(1.2);
}

#official-ca-card .dexscreener-button .market-logo-badge img {
  filter: contrast(1.48) brightness(1.18) saturate(0.9);
  transform: scale(1.5);
}

#official-ca-card .dexscreener-button {
  border-color: rgba(18, 247, 212, 0.2);
  background:
    radial-gradient(circle at 18% 50%, rgba(18, 247, 212, 0.16), transparent 9rem),
    linear-gradient(135deg, rgba(18, 247, 212, 0.075), rgba(176, 38, 255, 0.13)),
    rgba(255, 255, 255, 0.045);
}

#official-ca-card .dexscreener-button span:last-child {
  color: #f2fbff;
  text-shadow: 0 0 18px rgba(18, 247, 212, 0.14);
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 55vw, 720px);
}

.gate-frame {
  position: absolute;
  inset: 7% 3%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(173, 248, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 55%, rgba(18, 247, 212, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 54%);
  box-shadow: inset 0 0 90px rgba(18, 247, 212, 0.1), 0 40px 130px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

.logo-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(74%, 560px);
  place-items: center;
}

.logo-core img {
  width: 100%;
  border-radius: 50%;
  filter: drop-shadow(0 0 42px rgba(18, 247, 212, 0.34));
  animation: logo-pulse 4s ease-in-out infinite;
}

.lock-pulse {
  position: absolute;
  inset: 42% 42% 22%;
  border-radius: 40%;
  box-shadow: 0 0 0 0 rgba(18, 247, 212, 0.52);
  animation: lock-pulse 2.2s ease-out infinite;
}

.gate-door {
  position: absolute;
  top: 18%;
  bottom: 18%;
  z-index: 1;
  width: 17%;
  border: 1px solid rgba(18, 247, 212, 0.2);
  background: linear-gradient(90deg, rgba(176, 38, 255, 0.18), rgba(18, 247, 212, 0.08));
  opacity: 0.55;
}

.door-left {
  left: 21%;
  transform-origin: left center;
  animation: gate-left 5s ease-in-out infinite;
}

.door-right {
  right: 21%;
  transform-origin: right center;
  animation: gate-right 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(18, 247, 212, 0.28);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 30px var(--green);
}

.orbit-one {
  inset: 1%;
}

.orbit-two {
  inset: 13%;
  border-color: rgba(176, 38, 255, 0.34);
  animation-direction: reverse;
  animation-duration: 26s;
}

.orbit::before {
  top: 11%;
  left: 30%;
}

.orbit::after {
  right: 18%;
  bottom: 16%;
  background: var(--purple);
  box-shadow: 0 0 30px var(--purple);
}

.floating-card {
  position: absolute;
  z-index: 4;
  width: min(230px, 42vw);
  padding: 15px;
  border: 1px solid rgba(173, 248, 255, 0.2);
  border-radius: 10px;
  background: rgba(4, 9, 11, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  animation: card-float 5s ease-in-out infinite;
}

.floating-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-card strong {
  color: #fff;
  font-size: 1rem;
}

.card-telegram {
  top: 18%;
  left: 0;
}

.card-proof {
  right: 0;
  bottom: 26%;
  animation-delay: -1.5s;
}

.card-access {
  left: 15%;
  bottom: 7%;
  animation-delay: -2.7s;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 16px 0;
  animation: ticker 32s linear infinite;
}

.ticker span {
  color: #dcfbff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 790px;
  font-size: 1.03rem;
}

.problem-grid,
.feature-grid,
.auto-grid,
.chat-mock-grid,
.pill-grid {
  display: grid;
  gap: 16px;
}

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

.problem-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
  margin-bottom: 16px;
}

.problem-panel,
.problem-card,
.problem-detail {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(173, 248, 255, 0.14);
  border-radius: 12px;
  background: rgba(4, 9, 11, 0.78);
  box-shadow: 0 26px 84px rgba(0, 0, 0, 0.25);
}

.problem-panel {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
}

.problem-panel::before,
.problem-card::before,
.problem-detail::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--cx, 50%) var(--cy, 50%), rgba(18, 247, 212, 0.16), transparent 15rem),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 240ms ease, transform 700ms ease;
  pointer-events: none;
}

.problem-panel:hover::before,
.problem-card:hover::before,
.problem-card.active::before,
.problem-detail:hover::before {
  opacity: 1;
  transform: translateX(28%);
}

.problem-panel > *,
.problem-card > *,
.problem-detail > * {
  position: relative;
  z-index: 1;
}

.problem-panel span,
.problem-detail span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.problem-panel strong {
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.05;
}

.problem-panel p,
.problem-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.problem-panel.risky {
  border-color: rgba(255, 93, 130, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 93, 130, 0.09), transparent 44%),
    rgba(4, 9, 11, 0.78);
}

.problem-panel.safe {
  border-color: rgba(18, 247, 212, 0.34);
  background:
    linear-gradient(135deg, rgba(18, 247, 212, 0.12), rgba(166, 255, 80, 0.06)),
    rgba(4, 9, 11, 0.82);
}

.problem-vs {
  display: grid;
  width: 58px;
  min-height: 58px;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(18, 247, 212, 0.28);
  border-radius: 50%;
  color: #001512;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 36px rgba(18, 247, 212, 0.2);
  font-weight: 950;
  animation: logo-pulse 3.5s ease-in-out infinite;
}

.problem-card {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 20px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.problem-card span {
  color: var(--danger);
  font-weight: 950;
}

.problem-card strong {
  align-self: end;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.05;
}

.problem-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.problem-card:hover,
.problem-card.active {
  border-color: rgba(18, 247, 212, 0.56);
  background: linear-gradient(135deg, rgba(18, 247, 212, 0.1), rgba(176, 38, 255, 0.07)), rgba(4, 9, 11, 0.86);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 0 42px rgba(18, 247, 212, 0.1);
  transform: translateY(-4px);
}

.problem-card.active span {
  color: var(--green);
}

.problem-detail {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 20px;
  border-color: rgba(18, 247, 212, 0.24);
  background:
    linear-gradient(135deg, rgba(18, 247, 212, 0.1), rgba(176, 38, 255, 0.07)),
    rgba(4, 9, 11, 0.84);
}

.problem-detail strong {
  color: #fff;
  font-size: 1.45rem;
}

.glass-card,
.feature-card,
.compare-row,
.member-list,
.admin-log,
.phone-chat,
.commands-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.glass-card::before,
.feature-card::before,
.phone-chat::before,
.commands-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 220ms ease, transform 700ms ease;
}

.glass-card:hover::before,
.feature-card:hover::before,
.phone-chat:hover::before,
.commands-grid article:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.glass-card {
  min-height: 245px;
  padding: 24px;
}

.glass-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--danger);
  font-weight: 900;
}

.split-section,
.security-section {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
}

.comparison-stack {
  display: grid;
  gap: 12px;
}

.compare-row {
  padding: 18px;
}

.compare-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-row.active {
  border-color: rgba(18, 247, 212, 0.38);
  background: linear-gradient(135deg, rgba(18, 247, 212, 0.14), rgba(176, 38, 255, 0.09));
}

.compare-row.muted {
  border-color: rgba(255, 93, 130, 0.24);
}

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

.feature-card {
  min-height: 245px;
  padding: 24px;
}

.feature-card b {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 46px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--cyan), var(--green), var(--purple), var(--cyan));
  box-shadow: 0 0 34px rgba(18, 247, 212, 0.26);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 1.6vw, 24px);
  perspective: 1600px;
}

.solution-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 520px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(18, 247, 212, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(176, 38, 255, 0.12), transparent 36%),
    radial-gradient(circle at var(--cx, 50%) var(--cy, 40%), rgba(18, 247, 212, 0.13), transparent 14rem),
    rgba(2, 7, 8, 0.88);
  box-shadow: 0 30px 95px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  color: var(--white);
  cursor: pointer;
  transform: translateY(0) scale(1);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
  will-change: transform;
}

.solution-card > * {
  position: relative;
  z-index: 2;
}

.solution-card::before {
  position: absolute;
  inset: 0;
  content: "";
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.9), rgba(18, 247, 212, 0.9), rgba(119, 255, 74, 0.55));
  opacity: 0.42;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 260ms ease;
}

.solution-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.14) 44%, transparent 61%),
    radial-gradient(circle at var(--cx, 50%) var(--cy, 40%), rgba(18, 247, 212, 0.18), transparent 18rem);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 240ms ease, transform 760ms ease;
  pointer-events: none;
  mix-blend-mode: screen;
}

.card-sheen {
  position: absolute;
  inset: 1px;
  z-index: 1;
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(18, 247, 212, 0.12), transparent 44%);
  pointer-events: none;
}

.solution-art {
  display: grid;
  place-items: center;
  align-self: start;
  min-height: 250px;
  margin: -6px -6px 8px;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 56%, rgba(18, 247, 212, 0.08), transparent 52%);
  overflow: hidden;
}

.solution-art img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: contain;
  image-rendering: auto;
  transform: translate3d(0, 0, 0) scale(1.02);
  backface-visibility: hidden;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42));
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 520ms ease;
}

.solution-copy {
  display: grid;
  align-self: end;
  gap: 12px;
  padding: 6px 6px 2px;
  text-align: left;
}

.solution-kicker {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-copy strong {
  color: #ffffff;
  font-size: clamp(1.36rem, 2vw, 2rem);
  line-height: 0.98;
}

.solution-copy strong::after {
  display: block;
  width: min(160px, 70%);
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--green));
  transform: scaleX(0.55);
  transform-origin: left;
  transition: transform 320ms ease;
}

.solution-copy span:last-child {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.solution-card:hover,
.solution-card.active {
  border-color: rgba(18, 247, 212, 0.68);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.5), 0 0 54px rgba(18, 247, 212, 0.18);
  background:
    linear-gradient(145deg, rgba(176, 38, 255, 0.17), transparent 36%),
    radial-gradient(circle at var(--cx, 50%) var(--cy, 40%), rgba(18, 247, 212, 0.19), transparent 16rem),
    rgba(2, 7, 8, 0.95);
  transform: translateY(-8px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(1.012);
}

.solution-card:hover::before,
.solution-card.active::before {
  opacity: 0.92;
}

.solution-card:hover::after,
.solution-card.active::after {
  opacity: 1;
  transform: translateX(28%);
}

.solution-card:hover .solution-art img,
.solution-card.active .solution-art img {
  transform: translate3d(0, -8px, 0) scale(1.08);
  filter: drop-shadow(0 30px 44px rgba(18, 247, 212, 0.16)) drop-shadow(0 24px 34px rgba(0, 0, 0, 0.45));
}

.solution-card:hover .solution-copy strong::after,
.solution-card.active .solution-copy strong::after {
  transform: scaleX(1);
}

.tabs {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid rgba(173, 248, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
}

.tab-button,
.demo-controls button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(173, 248, 255, 0.16);
  border-radius: 9px;
  color: #d8e8ee;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  font-weight: 900;
}

.tab-button.active,
.demo-controls button.active {
  color: #001512;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.flow-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: clamp(16px, 2vw, 26px);
}

.flow-steps {
  position: relative;
  display: grid;
  gap: 12px;
}

.flow-steps::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 42px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--cyan), var(--purple), var(--green));
  opacity: 0.34;
  box-shadow: 0 0 24px rgba(18, 247, 212, 0.2);
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px 16px;
  align-items: start;
  padding: 18px 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(5, 10, 13, 0.78);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.flow-step::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--cx, 30%) var(--cy, 50%), rgba(18, 247, 212, 0.15), transparent 14rem),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.flow-step span {
  position: relative;
  z-index: 1;
  grid-row: span 2;
  display: grid;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  border: 1px solid rgba(18, 247, 212, 0.32);
  background: rgba(18, 247, 212, 0.08);
  font-weight: 900;
}

.flow-step strong,
.flow-step em,
.flow-step b {
  position: relative;
  z-index: 1;
}

.flow-step strong {
  align-self: end;
  padding-top: 3px;
}

.flow-step em {
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.flow-step b {
  grid-column: 2;
  justify-self: start;
  max-width: 100%;
  padding: 8px 11px;
  border: 1px solid rgba(18, 247, 212, 0.24);
  border-radius: 999px;
  color: #dffcff;
  background: rgba(18, 247, 212, 0.08);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  white-space: normal;
}

.flow-step:hover,
.flow-step.active {
  border-color: rgba(18, 247, 212, 0.58);
  background: linear-gradient(135deg, rgba(18, 247, 212, 0.12), rgba(176, 38, 255, 0.08));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), 0 0 42px rgba(18, 247, 212, 0.11);
  transform: translateY(-3px);
}

.flow-step:hover::before,
.flow-step.active::before {
  opacity: 1;
}

.flow-step.active span {
  color: #001512;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.telegram-panel,
.demo-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(4, 9, 11, 0.86);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.chat-header strong {
  margin-left: 10px;
  margin-right: auto;
}

.chat-header em {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.chat-body,
.demo-stage {
  display: grid;
  gap: 12px;
  min-height: 420px;
  align-content: center;
  padding: 22px;
}

.bubble {
  width: fit-content;
  max-width: 90%;
  padding: 13px 14px;
  border-radius: 14px 14px 14px 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #e9f7fb;
  animation: bubble-in 420ms ease both;
}

.bubble.bot {
  border: 1px solid rgba(18, 247, 212, 0.22);
}

.bubble.user {
  justify-self: end;
  border-radius: 14px 14px 4px 14px;
  background: linear-gradient(135deg, rgba(18, 247, 212, 0.18), rgba(176, 38, 255, 0.18));
}

.flow-preview-card {
  display: grid;
  gap: 9px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(18, 247, 212, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(18, 247, 212, 0.09), rgba(176, 38, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  animation: bubble-in 420ms ease both;
}

.flow-preview-card span {
  color: var(--green);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 900;
}

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

.join-lock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.join-lock-grid b {
  position: relative;
  padding: 10px 10px 10px 28px;
  border: 1px solid rgba(18, 247, 212, 0.18);
  border-radius: 8px;
  color: #e9fbff;
  background: rgba(18, 247, 212, 0.055);
  font-size: 0.78rem;
}

.join-lock-grid b::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 16px rgba(166, 255, 80, 0.5);
  transform: translateY(-50%);
}

.security-badge {
  display: grid;
  min-height: 450px;
  place-items: center;
  padding: 30px;
  border: 1px solid rgba(18, 247, 212, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(18, 247, 212, 0.18), transparent 60%),
    rgba(4, 9, 11, 0.72);
  box-shadow: inset 0 0 90px rgba(18, 247, 212, 0.12), 0 30px 110px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.security-badge img {
  width: min(260px, 54%);
  border-radius: 50%;
}

.security-badge strong {
  display: block;
  max-width: 350px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
}

.security-badge span {
  color: var(--green);
  margin-top: 10px;
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.security-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.security-rule {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 11px;
  min-height: 86px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(173, 248, 255, 0.13);
  border-radius: 9px;
  background:
    radial-gradient(circle at var(--cx, 50%) var(--cy, 50%), rgba(18, 247, 212, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.05);
  color: #dff4f8;
  text-align: left;
  cursor: pointer;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.security-rule::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 220ms ease, transform 620ms ease;
  pointer-events: none;
}

.security-rule span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(18, 247, 212, 0.28);
  border-radius: 50%;
  color: var(--green);
  background: rgba(18, 247, 212, 0.08);
  font-size: 0.78rem;
  font-weight: 950;
}

.security-rule strong {
  color: #fff;
  line-height: 1.1;
}

.security-rule em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.security-rule:hover,
.security-rule.active {
  border-color: rgba(18, 247, 212, 0.58);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28), 0 0 35px rgba(18, 247, 212, 0.1);
  transform: translateY(-3px);
}

.security-rule:hover::before,
.security-rule.active::before {
  opacity: 1;
  transform: translateX(35%);
}

.security-rule.active span {
  color: #001512;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.security-detail-card {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(18, 247, 212, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(18, 247, 212, 0.1), rgba(176, 38, 255, 0.08)),
    rgba(4, 9, 11, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.security-detail-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--green));
  animation: security-line 2.4s ease-in-out infinite;
}

.security-detail-card > * {
  position: relative;
  z-index: 1;
}

.security-detail-card span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.security-detail-card strong {
  color: #fff;
  font-size: 1.4rem;
}

.security-detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.security-lock-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.security-lock-chain b {
  position: relative;
  min-height: 48px;
  padding: 10px;
  border: 1px solid rgba(18, 247, 212, 0.16);
  border-radius: 9px;
  color: #e9fbff;
  background: rgba(18, 247, 212, 0.055);
  font-size: 0.76rem;
  text-align: center;
}

.security-lock-chain b::after {
  position: absolute;
  top: 50%;
  right: -9px;
  width: 10px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.security-lock-chain b:last-child::after {
  display: none;
}

.auto-grid.enforcement-grid {
  position: relative;
  grid-template-columns: 1.05fr 0.9fr 0.95fr;
  gap: 18px;
}

.enforcement-panel,
.flow-node {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 247, 212, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(176, 38, 255, 0.11), transparent 40%),
    rgba(4, 9, 11, 0.84);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.enforcement-panel::before,
.flow-node::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--cx, 50%) var(--cy, 45%), rgba(18, 247, 212, 0.16), transparent 15rem),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 240ms ease, transform 700ms ease;
  pointer-events: none;
}

.enforcement-panel:hover::before,
.flow-node:hover::before,
.flow-node.active::before {
  opacity: 1;
  transform: translateX(28%);
}

.enforcement-panel {
  display: grid;
  gap: 16px;
  min-height: 460px;
  padding: 22px;
}

.panel-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.panel-topline span,
.threshold-card span,
.admin-event span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-topline strong {
  color: #fff;
  text-align: right;
}

.threshold-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(173, 248, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.threshold-card strong {
  font-size: 1.35rem;
}

.holder-rows,
.enforcement-flow {
  display: grid;
  gap: 12px;
}

.holder-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(173, 248, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.holder-row span {
  color: #eef8fb;
  font-weight: 850;
}

.holder-row strong {
  color: #fff;
}

.holder-row em {
  color: var(--green);
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.holder-row.fail {
  border-color: rgba(255, 93, 130, 0.56);
  box-shadow: 0 0 36px rgba(255, 93, 130, 0.08);
  animation: alert-pulse 1.7s ease-in-out infinite;
}

.holder-row.fail em {
  color: var(--danger);
}

.scan-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
  box-shadow: 0 0 28px rgba(18, 247, 212, 0.5);
  animation: vertical-scan 3.6s ease-in-out infinite;
}

.enforcement-flow {
  align-content: center;
}

.flow-node {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 12px;
  width: 100%;
  padding: 16px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.flow-node span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #001512;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-weight: 950;
}

.flow-node strong {
  align-self: end;
}

.flow-node em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.flow-node:hover,
.flow-node.active {
  border-color: rgba(18, 247, 212, 0.66);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36), 0 0 40px rgba(18, 247, 212, 0.11);
  transform: translateY(-3px);
}

.flow-node.danger-node span {
  color: #1b0208;
  background: linear-gradient(135deg, var(--danger), #ff9ab0);
}

.telegram-action-card {
  align-content: space-between;
}

.telegram-command {
  padding: 18px;
  border: 1px solid rgba(18, 247, 212, 0.24);
  border-radius: 10px;
  color: #dffcff;
  background: rgba(0, 0, 0, 0.25);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  line-height: 1.55;
  box-shadow: inset 0 0 30px rgba(18, 247, 212, 0.06);
}

.telegram-action-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-event {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-left: 3px solid var(--cyan);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.admin-event strong {
  color: #fff;
}

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

.phone-chat {
  min-height: 320px;
  padding: 22px;
}

.phone-chat strong {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  text-transform: uppercase;
}

.phone-chat button {
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  color: #001512;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-weight: 900;
}

.hash {
  color: #fff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.community-section {
  padding-top: clamp(70px, 8vw, 120px);
}

.community-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(18, 247, 212, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 247, 212, 0.14), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(176, 38, 255, 0.14), transparent 24rem),
    rgba(4, 9, 11, 0.78);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
}

.community-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.09), transparent),
    radial-gradient(circle at var(--cx, 52%) var(--cy, 45%), rgba(18, 247, 212, 0.14), transparent 18rem);
  opacity: 0.42;
  transform: translateX(-30%);
  animation: card-sweep 8s ease-in-out infinite;
}

.community-core,
.community-links {
  position: relative;
  z-index: 1;
}

.community-core {
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(173, 248, 255, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 42%, rgba(18, 247, 212, 0.16), transparent 15rem),
    rgba(0, 0, 0, 0.22);
  text-align: center;
}

.community-core img {
  position: relative;
  z-index: 2;
  width: min(180px, 62%);
  border-radius: 50%;
  filter: drop-shadow(0 0 38px rgba(18, 247, 212, 0.34));
  animation: logo-pulse 4.6s ease-in-out infinite;
}

.community-core span,
.community-core strong {
  position: relative;
  z-index: 2;
}

.community-core span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.community-core strong {
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.05;
}

.community-orbit {
  position: absolute;
  border: 1px solid rgba(18, 247, 212, 0.22);
  border-radius: 50%;
  animation: rotate 24s linear infinite;
}

.community-orbit::before {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 26px rgba(166, 255, 80, 0.7);
}

.orbit-a {
  inset: 12%;
}

.orbit-b {
  inset: 23%;
  border-color: rgba(176, 38, 255, 0.28);
  animation-direction: reverse;
  animation-duration: 32s;
}

.orbit-a::before {
  top: 8%;
  left: 62%;
}

.orbit-b::before {
  right: 10%;
  bottom: 20%;
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(18, 247, 212, 0.7);
}

.community-links {
  display: grid;
  gap: 14px;
}

.community-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 172px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(173, 248, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.community-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cx, 50%) var(--cy, 50%), rgba(18, 247, 212, 0.18), transparent 12rem),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.community-card > * {
  position: relative;
  z-index: 1;
}

.community-card:hover {
  border-color: rgba(18, 247, 212, 0.46);
  background:
    linear-gradient(135deg, rgba(18, 247, 212, 0.1), rgba(176, 38, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.38), 0 0 42px rgba(18, 247, 212, 0.1);
}

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

.social-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(18, 247, 212, 0.34);
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42) 48%, rgba(18, 247, 212, 0.16)),
    linear-gradient(135deg, rgba(18, 247, 212, 0.28), rgba(176, 38, 255, 0.18));
  box-shadow: 0 0 34px rgba(18, 247, 212, 0.22), inset 0 0 24px rgba(255, 255, 255, 0.12);
}

.x-card .social-icon {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.36) 48%, rgba(176, 38, 255, 0.16)),
    linear-gradient(135deg, rgba(176, 38, 255, 0.32), rgba(18, 247, 212, 0.18));
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  filter: saturate(0.95) contrast(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.community-card:hover .social-icon img {
  transform: scale(1.25) rotate(-2deg);
  filter: saturate(1.08) contrast(1.08) brightness(1.05);
}

.social-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.social-copy em {
  color: var(--green);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-copy strong {
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.social-copy small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.community-card b {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(18, 247, 212, 0.3);
  border-radius: 999px;
  color: #eafffb;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.86rem;
  transition: transform 180ms ease, background 180ms ease;
}

.community-card:hover b {
  color: #001512;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  transform: translateX(2px);
}

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

.pill-grid span {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 13px;
  text-align: center;
  font-weight: 800;
}

.demo-shell {
  display: grid;
  grid-template-columns: 1fr 260px;
}

.demo-controls {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(18, 247, 212, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  animation: bubble-in 360ms ease both;
}

.progress-bar {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-bar span {
  display: block;
  width: var(--p);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--green));
  animation: sweep 1.4s ease infinite;
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(4, 9, 11, 0.76);
  text-align: center;
}

.final-cta img {
  width: 138px;
  margin-bottom: 18px;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(18, 247, 212, 0.32);
}

.final-cta h2,
.final-cta p,
.final-cta .actions,
.final-cta img {
  position: relative;
  z-index: 1;
}

.final-cta > p:not(.eyebrow) {
  max-width: 680px;
  color: #dff4f8;
  font-size: 1.15rem;
}

.cta-orb {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 247, 212, 0.18), rgba(176, 38, 255, 0.12), transparent 70%);
  animation: logo-pulse 5s ease-in-out infinite;
}

.site-footer {
  position: relative;
  display: grid;
  width: min(1200px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1fr) auto auto minmax(240px, auto) auto;
  align-items: center;
  gap: 18px;
  margin: 0 auto 30px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(173, 248, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(18, 247, 212, 0.08), rgba(176, 38, 255, 0.06)),
    rgba(4, 9, 11, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(18, 247, 212, 0.12), transparent);
  opacity: 0.45;
  pointer-events: none;
}

.footer-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(18, 247, 212, 0.28);
}

.footer-brand strong {
  display: block;
  color: #fff;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.footer-brand span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.footer-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(18, 247, 212, 0.2);
  border-radius: 999px;
  color: #eafffb;
  background: rgba(18, 247, 212, 0.07);
  white-space: nowrap;
}

.footer-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(166, 255, 80, 0.65);
}

.footer-status strong {
  font-size: 0.82rem;
}

.footer-socials {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 8px;
}

.footer-socials a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(173, 248, 255, 0.13);
  border-radius: 999px;
  color: #d9e8ef;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 900;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.footer-socials img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05);
}

.footer-socials a:hover {
  color: #001512;
  border-color: rgba(18, 247, 212, 0.42);
  background: linear-gradient(135deg, var(--cyan), var(--green));
  transform: translateY(-1px);
}

.footer-ca {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(173, 248, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-ca span,
.footer-ca em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.footer-ca strong {
  color: #fff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.footer-ca button {
  width: fit-content;
  min-height: 32px;
  margin-top: 4px;
  padding: 7px 10px;
  font-size: 0.76rem;
}

.site-footer p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.reveal {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 0.9, 0.2, 1);
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

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

@keyframes logo-pulse {
  0%, 100% { transform: scale(1); filter: saturate(1); }
  50% { transform: scale(1.035); filter: saturate(1.25); }
}

@keyframes lock-pulse {
  to { box-shadow: 0 0 0 48px rgba(18, 247, 212, 0); }
}

@keyframes gate-left {
  0%, 100% { transform: translateX(0) skewY(-8deg); }
  50% { transform: translateX(-42%) skewY(-8deg); }
}

@keyframes gate-right {
  0%, 100% { transform: translateX(0) skewY(8deg); }
  50% { transform: translateX(42%) skewY(8deg); }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

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

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

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

@keyframes alert-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 93, 130, 0); }
  50% { box-shadow: 0 0 34px rgba(255, 93, 130, 0.18); }
}

@keyframes vertical-scan {
  0%, 100% { transform: translateY(22px); opacity: 0; }
  12%, 88% { opacity: 1; }
  50% { transform: translateY(438px); opacity: 1; }
}

@keyframes sweep {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(90deg); }
}

@keyframes card-sweep {
  0%, 42% { transform: translateX(-105%); }
  70%, 100% { transform: translateX(105%); }
}

@keyframes status-pulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.45); opacity: 1; }
}

@keyframes music-bars {
  0%, 100% { height: 5px; }
  50% { height: 15px; }
}

@keyframes security-line {
  0%, 100% { transform: scaleX(0.25); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .security-section,
  .flow-shell,
  .auto-grid,
  .auto-grid.enforcement-grid,
  .community-shell,
  .demo-shell {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .problem-grid,
  .chat-mock-grid,
  .pill-grid,
  .solution-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-controls {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .problem-showcase {
    grid-template-columns: 1fr;
  }

  .problem-vs {
    width: 48px;
    min-height: 48px;
    margin: -2px auto;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    background:
      radial-gradient(circle at 18% 10%, rgba(176, 38, 255, 0.1), transparent 20rem),
      radial-gradient(circle at 80% 12%, rgba(18, 247, 212, 0.09), transparent 22rem),
      linear-gradient(135deg, #010203, #041012 52%, #020405);
  }

  body::before {
    background-size: 58px 58px;
    opacity: 0.42;
  }

  .nav {
    top: 10px;
    right: 8px;
    left: 8px;
    width: auto;
    max-width: calc(100vw - 16px);
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
    transform: none;
  }

  .brand {
    width: 100%;
  }

  .brand span {
    max-width: calc(100vw - 76px);
    font-size: 0.78rem;
  }

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

  .menu-toggle {
    display: inline-flex !important;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 9px 12px;
    color: #f4fbff;
    font-size: 0.72rem;
    background: linear-gradient(135deg, rgba(18, 247, 212, 0.13), rgba(176, 38, 255, 0.12));
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(18, 247, 212, 0.55);
    box-shadow: 0 0 22px rgba(18, 247, 212, 0.12);
  }

  .nav nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 6px;
    overflow: visible;
    padding: 4px 0 0;
  }

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

  .nav nav a {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 8px 11px;
    border: 1px solid rgba(173, 248, 255, 0.12);
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.72rem;
    text-align: center;
  }

  .nav nav .mobile-menu-launch {
    display: inline-flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    color: #f4fbff;
    border-color: rgba(18, 247, 212, 0.32);
    background: linear-gradient(135deg, rgba(18, 247, 212, 0.18), rgba(176, 38, 255, 0.2));
  }

  .nav-cta {
    display: none;
  }

  .music-toggle {
    min-height: 38px;
    min-width: 0;
    width: 100%;
    padding: 9px 11px;
    gap: 7px;
    overflow: hidden;
    color: #f4fbff;
    background: linear-gradient(135deg, rgba(18, 247, 212, 0.2), rgba(176, 38, 255, 0.18));
  }

  .music-label {
    display: inline;
    font-size: 0.7rem;
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section {
    width: min(100% - 22px, 1200px);
    padding: 58px 0;
    scroll-margin-top: 82px;
  }

  .hero {
    min-height: auto;
    gap: 26px;
    padding-top: 178px;
    overflow: hidden;
  }

  .hero-copy,
  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.15rem, 9.2vw, 2.72rem);
    line-height: 0.96;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1;
  }

  .hero-text,
  .section-heading p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .actions,
  .hero-stats,
  .contract-card {
    width: 100%;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 100%;
  }

  .contract-card {
    max-width: 100%;
    padding: 15px;
    border-radius: 12px;
  }

  #official-ca-card {
    padding: 16px;
  }

  #official-ca-card .contract-card-header,
  #official-ca-card .contract-field,
  #official-ca-card .contract-meta,
  #official-ca-card .contract-actions {
    grid-template-columns: 1fr;
  }

  #official-ca-card .contract-status {
    width: fit-content;
  }

  #official-ca-card .contract-field button,
  #official-ca-card .contract-actions button,
  #official-ca-card .contract-actions a {
    width: 100%;
  }

  #official-ca-card .market-button {
    grid-template-columns: 34px minmax(0, 210px);
  }

  .contract-card-header,
  .contract-field {
    align-items: flex-start;
    flex-direction: column;
  }

  .contract-card-header {
    gap: 6px;
  }

  .contract-field button,
  .contract-actions button,
  .contract-actions a {
    width: 100%;
  }

  .contract-meta,
  .contract-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: clamp(430px, 116vw, 520px);
    margin-top: 6px;
    margin-bottom: 18px;
    overflow: visible;
  }

  .logo-core {
    width: min(78vw, 335px);
  }

  .gate-frame {
    inset: 9% 1% 10%;
    opacity: 0.78;
  }

  .floating-card {
    width: min(164px, 43vw);
    padding: 11px;
    border-radius: 9px;
    font-size: 0.74rem;
  }

  .floating-card span {
    margin-bottom: 5px;
    font-size: 0.66rem;
  }

  .floating-card strong {
    font-size: 0.88rem;
    line-height: 1.22;
  }

  .card-telegram {
    top: 8%;
    left: 3%;
  }

  .card-access {
    right: 3%;
    bottom: 9%;
    left: auto;
  }

  .card-proof {
    display: none;
  }

  .feature-grid,
  .problem-grid,
  .chat-mock-grid,
  .pill-grid,
  .solution-cards {
    grid-template-columns: 1fr;
  }

  .problem-panel,
  .problem-card,
  .problem-detail {
    border-radius: 12px;
  }

  .problem-panel {
    min-height: 0;
    padding: 18px;
  }

  .problem-card {
    min-height: 132px;
    padding: 18px;
  }

  .solution-card {
    max-width: 440px;
    min-height: 0;
    padding: 14px;
    margin-inline: auto;
  }

  .solution-art {
    min-height: 210px;
  }

  .solution-art img {
    height: 220px;
  }

  .solution-copy strong {
    font-size: 1.55rem;
  }

  .tabs {
    display: grid;
    width: 100%;
    gap: 6px;
    padding: 5px;
  }

  .tab-button,
  .demo-controls button {
    width: 100%;
    min-height: 44px;
  }

  .flow-step {
    grid-template-columns: 40px 1fr;
    gap: 8px 12px;
    padding: 14px;
    border-radius: 12px;
  }

  .flow-steps::before {
    left: 34px;
  }

  .flow-step span {
    width: 40px;
    height: 40px;
  }

  .flow-step b {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }

  .flow-step em {
    grid-column: 2;
    font-size: 0.95rem;
  }

  .telegram-panel,
  .demo-shell {
    border-radius: 12px;
  }

  .chat-body,
  .demo-stage {
    min-height: 340px;
    padding: 16px;
  }

  .bubble {
    max-width: 96%;
    font-size: 0.95rem;
  }

  .flow-preview-card {
    padding: 14px;
  }

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

  .security-lock-chain {
    grid-template-columns: 1fr;
  }

  .security-lock-chain b::after {
    display: none;
  }

  .security-badge {
    min-height: 290px;
    padding: 24px;
    border-radius: 18px;
  }

  .security-badge img {
    width: min(190px, 58%);
  }

  .security-badge strong {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
  }

  .security-rule {
    min-height: 78px;
  }

  .security-detail-card {
    padding: 16px;
  }

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

  .enforcement-panel {
    min-height: auto;
    min-width: 0;
    padding: 16px;
    border-radius: 12px;
  }

  .panel-topline,
  .holder-row {
    align-items: flex-start;
  }

  .panel-topline {
    display: grid;
  }

  .panel-topline strong {
    min-width: 0;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .threshold-card,
  .holder-row,
  .flow-node,
  .telegram-command,
  .admin-event,
  .phone-chat {
    border-radius: 12px;
  }

  .flow-node {
    grid-template-columns: 40px 1fr;
    min-width: 0;
    padding: 14px;
  }

  .flow-node strong,
  .flow-node em,
  .telegram-action-card p,
  .telegram-command,
  .admin-event strong {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .telegram-command {
    padding: 14px;
    font-size: 0.82rem;
    line-height: 1.5;
    white-space: normal;
  }

  .admin-event {
    padding: 14px;
  }

  .flow-node span {
    width: 40px;
    height: 40px;
  }

  .phone-chat {
    min-height: 240px;
    padding: 18px;
  }

  .phone-chat strong {
    margin-bottom: 22px;
  }

  .community-shell {
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
  }

  .community-core {
    min-height: 250px;
    padding: 20px;
    border-radius: 14px;
  }

  .community-core img {
    width: min(148px, 54%);
  }

  .community-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 16px;
    border-radius: 14px;
  }

  .social-icon {
    width: 52px;
    height: 52px;
    font-size: 0.86rem;
  }

  .social-copy strong {
    font-size: 1.12rem;
  }

  .social-copy small {
    font-size: 0.88rem;
  }

  .community-card b {
    grid-column: 1 / -1;
    width: 100%;
  }

  .final-cta {
    padding-bottom: 84px;
  }

  .site-footer {
    width: min(100% - 22px, 1200px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 16px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

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

  .footer-status {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .footer-socials {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-socials a {
    width: 100%;
  }

  .footer-ca {
    width: 100%;
    text-align: left;
  }

  .footer-ca button {
    width: 100%;
  }

  .site-footer p {
    font-size: 0.86rem;
  }
}

@media (max-width: 390px) {
  .brand span {
    max-width: calc(100vw - 74px);
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2rem, 9.3vw, 2.36rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
  }

  .section {
    width: min(100% - 18px, 1200px);
  }

  .hero-visual {
    min-height: clamp(400px, 112vw, 470px);
  }

  .logo-core {
    width: min(76vw, 300px);
  }

  .gate-frame {
    inset: 10% 0 11%;
  }

  .floating-card {
    width: min(148px, 42vw);
    padding: 9px;
  }

  .floating-card strong {
    font-size: 0.82rem;
  }

  #official-ca-card .market-button {
    grid-template-columns: 32px minmax(0, 176px);
    gap: 10px;
  }

  #official-ca-card .market-logo-badge {
    width: 32px;
    height: 32px;
  }

}

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