﻿:root {
  --bg: #070b14;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --line: rgba(148, 163, 184, 0.25);
  --text: #f4f8ff;
  --muted: #b5c5df;
  --brand: #fcd535;
  --brand-2: #f59e0b;
  --accent: #facc15;
  --good: #34d399;
  --shadow: 0 20px 60px rgba(3, 8, 20, 0.5);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: radial-gradient(1400px 900px at 8% -10%, rgba(34, 211, 238, 0.14), transparent 55%),
    radial-gradient(1100px 700px at 100% 0%, rgba(125, 211, 252, 0.2), transparent 60%), var(--bg);
  font-family: "Space Grotesk", "Noto Sans KR", "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

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

.grid-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 95%);
  animation: noiseShift 14s linear infinite;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.38;
  pointer-events: none;
  z-index: -1;
  transform: translate3d(0, 0, 0);
  animation: orbDrift 14s ease-in-out infinite;
}

.orb.a {
  width: 280px;
  height: 280px;
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.8), rgba(125, 211, 252, 0.1));
  top: 14vh;
  left: 5vw;
}

.orb.b {
  width: 360px;
  height: 360px;
  background: linear-gradient(120deg, rgba(250, 204, 21, 0.48), rgba(34, 197, 94, 0.14));
  bottom: -4vh;
  right: 2vw;
  animation-delay: 1.8s;
}

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

.topbar-wrap {
  position: sticky;
  top: 10px;
  z-index: 60;
  padding-top: 14px;
}

.topbar {
  backdrop-filter: blur(14px);
  background: rgba(10, 16, 33, 0.76);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  animation: topbarFloat 6s ease-in-out infinite;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(150deg, rgba(125, 211, 252, 0.26), rgba(15, 23, 42, 0.7));
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.brand-meta h1 {
  margin: 0;
  font-size: 15px;
}

.brand-meta p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.38);
  background: rgba(36, 30, 13, 0.36);
  min-width: 0;
}

.topbar-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.monitoring-action-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.monitoring-clock-pill {
  min-height: 42px;
  min-width: 164px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(250, 204, 21, 0.24);
  background: linear-gradient(140deg, rgba(18, 27, 46, 0.92), rgba(34, 27, 9, 0.92));
  color: #eef5ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.monitoring-clock-pill.compact {
  min-width: 100%;
  justify-content: center;
}

.monitoring-clock-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3d47a;
}

.monitoring-clock-pill b {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
}

.mobile-nav-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(250, 204, 21, 0.54);
  background: rgba(35, 30, 12, 0.78);
  color: #ffe9b0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-nav-btn span,
.mobile-nav-btn span::before,
.mobile-nav-btn span::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-btn span {
  position: relative;
}

.mobile-nav-btn span::before {
  position: absolute;
  top: -5px;
}

.mobile-nav-btn span::after {
  position: absolute;
  top: 5px;
}

.mobile-nav-btn.open span {
  background: transparent;
}

.mobile-nav-btn.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-nav-btn.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 86;
  background: rgba(1, 4, 12, 0.56);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: 0.24s ease;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  z-index: 87;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(320px, 86vw);
  border-left: 1px solid rgba(250, 204, 21, 0.34);
  background: linear-gradient(165deg, rgba(8, 13, 24, 0.98), rgba(19, 17, 9, 0.96));
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
  transform: translateX(104%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

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

.mobile-drawer-head {
  padding: 16px 14px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.mobile-drawer-head b {
  display: block;
  font-size: 16px;
}

.mobile-drawer-head small {
  display: block;
  margin-top: 4px;
  color: #a9bed9;
  font-size: 11px;
}

.mobile-drawer-links {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.mobile-drawer-link {
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 14px;
}

.mobile-drawer-link.active {
  border-color: rgba(250, 204, 21, 0.72);
  background: linear-gradient(120deg, rgba(88, 67, 18, 0.58), rgba(40, 33, 13, 0.56));
}

.mobile-drawer-actions {
  margin-top: auto;
  display: grid;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.mobile-drawer-actions .monitoring-action-group {
  display: grid;
  gap: 8px;
}

.mobile-drawer-actions .monitoring-clock-pill {
  width: 100%;
  justify-content: center;
}

.mobile-drawer .btn {
  width: 100%;
}

.pill-link {
  color: #f2dfad;
  border: 1px solid rgba(250, 204, 21, 0);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  letter-spacing: 0.01em;
  transition: 0.25s ease, box-shadow 0.25s ease;
}

.pill-link:hover {
  color: #fff4cf;
  border-color: rgba(250, 204, 21, 0.7);
  background: rgba(53, 42, 15, 0.56);
  box-shadow: inset 0 0 0 1px rgba(250, 204, 21, 0.35);
}

.pill-link.active {
  color: #03131d;
  border-color: rgba(250, 204, 21, 0.9);
  background: linear-gradient(140deg, #fcd535, #f59e0b);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
  animation: activePulse 2.8s ease-in-out infinite;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: 0.28s ease;
}

.btn.theme-toggle {
  min-width: 98px;
  white-space: nowrap;
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn.primary {
  background: linear-gradient(110deg, var(--accent), #f59e0b);
  color: #121212;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.36);
  animation: buttonGlow 3s ease-in-out infinite;
}

.btn.primary:hover,
.btn.ghost:hover {
  transform: translateY(-2px);
}

.hero {
  margin-top: 62px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(32px, 5.2vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 10.5em;
  text-wrap: balance;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  word-break: keep-all;
  line-break: strict;
}

.hero-copy h2 .headline-accent {
  display: inline-block;
  padding: 0 0.18em;
  margin: 0 0.02em;
  color: #fcd535;
  text-shadow: 0 0 14px rgba(250, 204, 21, 0.42), 0 10px 22px rgba(0, 0, 0, 0.34);
  animation: heartBeat 1.18s ease-in-out infinite;
}

.hero-copy h2 .headline-accent:nth-of-type(2) {
  animation-delay: 0.18s;
}

.hero-copy p {
  margin-top: 18px;
  color: #c7d5ea;
  font-size: clamp(14px, 1.9vw, 18px);
  line-height: 1.8;
  max-width: 56ch;
}

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

.meta-strip {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.live-users-breakout {
  margin: 0;
  width: auto;
  flex: 1 1 100%;
  max-width: 100%;
  min-height: 44px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.72);
  border-radius: 999px;
  padding: 8px 15px;
  background:
    radial-gradient(120% 180% at -8% -20%, rgba(255, 205, 92, 0.22), transparent 55%),
    linear-gradient(112deg, rgba(63, 44, 10, 0.86), rgba(13, 21, 38, 0.92) 56%, rgba(7, 16, 34, 0.96));
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 236, 176, 0.22),
    inset 0 -10px 18px rgba(5, 10, 22, 0.26),
    0 0 0 1px rgba(250, 204, 21, 0.12);
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  animation: liveRibbonBreathe 3.8s ease-in-out infinite;
}

.live-users-breakout::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 12%, rgba(255, 235, 171, 0.24) 48%, transparent 82%);
  transform: translateX(-130%);
  animation: liveRibbonShine 4.4s ease-in-out infinite;
}

.live-users-breakout::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  opacity: 0.68;
  pointer-events: none;
}

.live-users-breakout > * {
  position: relative;
  z-index: 1;
}

.live-users-breakout:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 224, 125, 0.92);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 236, 176, 0.25),
    inset 0 -10px 18px rgba(5, 10, 22, 0.2),
    0 0 0 1px rgba(250, 204, 21, 0.2);
}

.live-users-kicker {
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.84);
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.26), rgba(250, 204, 21, 0.06));
  color: #ffedb8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  transform: translateY(-1px);
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.32);
}

.live-users-label {
  color: #ffd98a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.live-users-breakout strong {
  color: #fcd535;
  font-size: clamp(28px, 4.4vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(250, 204, 21, 0.48);
  transform-origin: 58% 62%;
  animation: heartBeat 1.06s ease-in-out infinite;
}

.live-users-unit {
  color: #ffe9ba;
  font-size: 15px;
  font-weight: 800;
}

.live-users-note {
  color: #a9bfdc;
  font-size: 11.5px;
}

.meta-pill {
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 999px;
  background: rgba(9, 13, 27, 0.6);
  color: #c7d6ed;
  font-size: 11px;
  padding: 7px 11px;
  animation: subtlePulse 4.6s ease-in-out infinite;
}

.meta-pill b {
  color: #f8fbff;
}

.chip {
  border: 1px solid rgba(250, 204, 21, 0.44);
  background: rgba(35, 30, 14, 0.56);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  color: #ffe7a5;
  animation: chipDrift 5s ease-in-out infinite;
}

.hero-panel {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.64));
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  animation: panelBreathe 5.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -40%;
  width: 70%;
  height: 190%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(250, 204, 21, 0.14), rgba(255, 255, 255, 0));
  transform: rotate(12deg);
  animation: panelSweep 9s linear infinite;
  pointer-events: none;
}

.panel-title {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.live-panel-clock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  color: #f0d98e;
  font-size: 11px;
  font-weight: 700;
}

.live-panel-clock b {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.04em;
}

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

.ticker-card {
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 14px;
  padding: 12px;
  background: rgba(8, 12, 26, 0.72);
  animation: statBeat 3.4s ease-in-out infinite;
  transition: box-shadow 1.05s ease, border-color 1.05s ease, transform 1.05s ease;
}

.ticker-card:nth-child(2) {
  animation-delay: 0.25s;
}

.ticker-card:nth-child(3) {
  animation-delay: 0.5s;
}

.ticker-card:nth-child(4) {
  animation-delay: 0.75s;
}

.ticker-card h4 {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker-card p {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.ticker-card small {
  color: var(--muted);
  font-size: 11px;
}

.live-big {
  margin-top: 10px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  border-radius: 16px;
  padding: 14px;
  background: rgba(8, 12, 26, 0.72);
  position: relative;
  overflow: hidden;
  transition: box-shadow 1.05s ease, border-color 1.05s ease, transform 1.05s ease;
}

.live-big::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(250, 204, 21, 0.12), rgba(255, 255, 255, 0));
  transform: translateX(-120%);
  animation: shimmerX 4.6s ease-in-out infinite;
  pointer-events: none;
}

.live-user {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.live-sub {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.live-chart-wrap {
  margin-top: 12px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 14px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(8, 12, 26, 0.9), rgba(8, 12, 26, 0.64));
  transition: box-shadow 1.05s ease, border-color 1.05s ease, transform 1.05s ease;
}

.live-chart-wrap svg {
  width: 100%;
  height: 146px;
  display: block;
  filter: drop-shadow(0 3px 16px rgba(250, 204, 21, 0.15));
}

.live-chart-meta {
  margin-top: 7px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
}

.rank-tabs {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.rank-tab {
  border: 1px solid rgba(125, 211, 252, 0.32);
  background: rgba(8, 12, 26, 0.7);
  color: #b8cae4;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.rank-tab.active {
  border-color: rgba(250, 204, 21, 0.9);
  color: #071018;
  background: linear-gradient(130deg, #fcd535, #f59e0b);
}

.hero-panel.live-refresh .live-big,
.hero-panel.live-refresh .live-chart-wrap,
.hero-panel.live-refresh .ticker-card {
  border-color: rgba(250, 204, 21, 0.55);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.42), 0 0 26px rgba(250, 204, 21, 0.24);
  transform: translateY(-1px);
}

.section {
  margin-top: 62px;
  padding-top: 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.page-hero {
  margin-top: 54px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.42));
  box-shadow: var(--shadow);
}

.seo-breadcrumb {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.seo-breadcrumb a {
  color: #9ee7ff;
  text-decoration: none;
}

.seo-breadcrumb a:hover {
  text-decoration: underline;
}

.seo-breadcrumb .sep {
  color: rgba(148, 163, 184, 0.72);
}

.seo-breadcrumb [aria-current="page"] {
  color: #f3f8ff;
  font-weight: 700;
}

.page-hero h2 {
  margin: 0;
  font-size: clamp(30px, 5.6vw, 58px);
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.page-hero p a,
.section-head p a,
.card p a {
  color: #8fd6ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero p a:hover,
.section-head p a:hover,
.card p a:hover {
  color: #fcd535;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  background: rgba(10, 16, 33, 0.6);
  padding: 10px 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #eef4ff;
  line-height: 1.5;
}

.faq-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.kpi {
  border-radius: 14px;
  border: 1px solid rgba(125, 211, 252, 0.32);
  background: rgba(8, 12, 26, 0.76);
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.kpi::after {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(250, 204, 21, 0.2), rgba(255, 255, 255, 0));
  animation: kpiSweep 4.8s linear infinite;
}

.kpi b {
  display: block;
  font-size: 22px;
  margin-top: 4px;
}

.section-head {
  margin-bottom: 16px;
  position: relative;
  padding-left: 14px;
}

.section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 1.2em;
  border-radius: 999px;
  background: linear-gradient(180deg, #fcd535, #f59e0b);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.14);
  animation: barPulse 2.6s ease-in-out infinite;
}

.section-head h2,
.section-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 10px 0 0;
  color: #aebfda;
  line-height: 1.7;
  max-width: 62ch;
}

@media (min-width: 921px) {
  .topbar-wrap {
    top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: 0;
    background: rgba(8, 12, 18, 0.96);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  }

  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
    width: min(1400px, calc(100vw - 40px));
    margin: 0 auto;
    min-height: 78px;
    padding: 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
  }

  .brand {
    justify-self: start;
  }

  .top-links {
    justify-self: stretch;
    justify-content: center;
    margin-inline: auto;
    gap: 30px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .top-links .pill-link {
    position: relative;
    padding: 6px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #eef5ff;
    font-size: 15px;
    font-weight: 600;
  }

  .top-links .pill-link:hover {
    color: #fff4cf;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .top-links .pill-link.active {
    color: #fcd535;
    border: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
  }

  .top-links .pill-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(252, 213, 53, 0), rgba(252, 213, 53, 0.92), rgba(252, 213, 53, 0));
  }

  .topbar-actions {
    justify-self: end;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 14px;
  }

  .topbar-actions .btn.ghost {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #eef5ff;
    font-size: 15px;
    font-weight: 600;
  }

  .topbar-actions .btn.ghost:hover {
    color: #fff4cf;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .topbar-actions .btn.primary {
    min-height: 44px;
    padding: 0 18px;
  }

  .hero + .section .section-head p {
    max-width: none;
    white-space: nowrap;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

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

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

.ops-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.ops-main,
.ops-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(250, 204, 21, 0.06), rgba(250, 204, 21, 0) 28%),
    linear-gradient(160deg, rgba(11, 18, 36, 0.94), rgba(14, 23, 42, 0.88));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.ops-main {
  padding: 22px;
}

.ops-side {
  display: grid;
  gap: 18px;
}

.ops-card {
  padding: 18px;
}

.ops-copy {
  display: grid;
  gap: 10px;
}

.ops-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(250, 204, 21, 0.42);
  border-radius: 999px;
  padding: 6px 11px;
  color: #f7d15b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(250, 204, 21, 0.08);
}

.ops-copy h4 {
  margin: 0;
  color: #f4f7fb;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
}

.ops-card .ops-copy h4 {
  font-size: clamp(18px, 1.45vw, 23px);
}

.ops-copy p {
  margin: 0;
  color: #b8c6dd;
  font-size: 14px;
  line-height: 1.72;
}

.ops-frame {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 20px;
  padding: 14px;
  overflow: hidden;
  background:
    radial-gradient(560px 180px at 50% 0%, rgba(250, 204, 21, 0.14), rgba(250, 204, 21, 0)),
    linear-gradient(180deg, rgba(12, 20, 34, 0.98), rgba(8, 14, 28, 0.96));
}

.ops-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.22;
  pointer-events: none;
}

.ops-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.18), rgba(250, 204, 21, 0));
  filter: blur(8px);
  opacity: 0.7;
  pointer-events: none;
}

.ops-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.32));
}

.ops-frame-main {
  min-height: 410px;
}

.ops-frame-settings {
  min-height: 222px;
}

.ops-frame-log {
  min-height: 156px;
}

.ops-frame[data-ops-preview] {
  cursor: zoom-in;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ops-frame[data-ops-preview]:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 204, 21, 0.34);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26);
}

.ops-frame[data-ops-preview]:focus-visible {
  outline: none;
  border-color: rgba(255, 231, 167, 0.78);
  box-shadow: 0 0 0 2px rgba(255, 231, 167, 0.32), 0 18px 32px rgba(0, 0, 0, 0.22);
}

.ops-lightbox {
  z-index: 96;
  padding: 28px 36px;
  background: rgba(4, 8, 18, 0.92);
  backdrop-filter: blur(7px);
}

.ops-lightbox-stage {
  width: min(92vw, 1680px);
  max-height: calc(100vh - 70px);
  display: grid;
  place-items: center;
  overflow: auto;
  scrollbar-width: none;
}

.ops-lightbox-stage img {
  display: block;
  width: min(calc(92vw * var(--ops-preview-zoom, 1)), 2200px);
  height: auto;
  max-width: none;
  max-height: calc(100vh - 70px);
  object-fit: fill;
  border-radius: 0;
  filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.52));
  cursor: default;
  user-select: none;
  transition: width 0.18s ease, filter 0.18s ease;
}

.ops-lightbox-stage::-webkit-scrollbar {
  display: none;
}

.ops-lightbox[data-zoomed="true"] .ops-lightbox-stage {
  cursor: grab;
}

.ops-lightbox[data-panning="true"] .ops-lightbox-stage {
  cursor: grabbing;
}

.ops-lightbox[data-zoomed="true"] .ops-lightbox-stage img {
  max-height: none;
}

.ops-lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.94;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.ops-lightbox-close:hover {
  transform: scale(1.04);
  opacity: 1;
}

.ops-lightbox-tools {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(8, 14, 28, 0.78);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.ops-lightbox-tool {
  min-width: 46px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(12, 20, 34, 0.92);
  color: #f8fafc;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.ops-lightbox-tool:hover {
  transform: translateY(-1px);
  border-color: rgba(250, 204, 21, 0.42);
  background: rgba(19, 29, 48, 0.96);
}

.ops-lightbox-tool:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.ops-lightbox-zoom-label {
  min-width: 74px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.visual-card {
  margin: 0;
  border: 1px solid rgba(125, 211, 252, 0.36);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(10, 16, 33, 0.86), rgba(16, 24, 39, 0.82));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  animation: cardBreath 6.2s ease-in-out infinite;
}

.visual-card img {
  display: block;
  width: 100%;
  height: clamp(170px, 23vw, 240px);
  object-fit: cover;
  object-position: center;
  background: radial-gradient(500px 200px at 50% -20%, rgba(250, 204, 21, 0.22), rgba(0, 0, 0, 0));
  padding: 0;
  animation: mediaFloat 8s ease-in-out infinite;
}

.visual-card img[src^="/ai-preview-"] {
  object-fit: contain;
  padding: 8px;
  background:
    radial-gradient(500px 220px at 50% -30%, rgba(250, 204, 21, 0.18), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(7, 15, 30, 0.95), rgba(7, 15, 30, 0.75));
}

.visual-card figcaption {
  padding: 12px 14px 14px;
  color: #c1d0e6;
  font-size: 13px;
  line-height: 1.6;
}

.card {
  border: 1px solid rgba(125, 211, 252, 0.3);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.78), rgba(17, 24, 39, 0.74));
  border-radius: 18px;
  padding: 18px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: cardBreath 5.5s ease-in-out infinite;
}

.card::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.88), transparent);
  opacity: 0.6;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(250, 204, 21, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.card h4 {
  margin: 0 0 8px;
  font-size: 21px;
  color: #ffffff;
}

.card p {
  margin: 0;
  color: #b8c8df;
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  border-left: 3px solid rgba(250, 204, 21, 0.72);
  padding: 14px 14px 14px 16px;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(8, 12, 26, 0.74), rgba(18, 22, 35, 0.72));
  animation: rowFlow 6.4s ease-in-out infinite;
}

.timeline-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

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

.insight-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.insight-card {
  border: 1px solid rgba(250, 204, 21, 0.34);
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(19, 16, 8, 0.86), rgba(11, 14, 25, 0.86));
  padding: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  animation: cardBreath 5.6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-card h5 {
  margin: 0 0 8px;
  font-size: 15px;
}

.insight-card p {
  margin: 0;
  color: #bfcee2;
  line-height: 1.6;
  font-size: 13px;
}

.insight-card > p:not(.insight-impact) {
  min-height: 42px;
}

.insight-impact {
  margin-top: auto;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(250, 204, 21, 0.36);
  background: linear-gradient(120deg, rgba(74, 57, 14, 0.5), rgba(25, 22, 11, 0.42));
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 8px;
  align-items: end;
}

.insight-impact span {
  color: #f4dfa4;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.insight-impact strong {
  justify-self: end;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fcd535;
  text-shadow: 0 0 18px rgba(250, 204, 21, 0.45);
  transform-origin: 72% 60%;
}

.insight-impact strong.done-beat {
  animation: bamPop 0.38s cubic-bezier(0.18, 0.9, 0.22, 1.25) 1 both,
    heartBeat 1.2s ease-in-out 0.4s infinite;
}

.insight-impact em {
  grid-column: 1 / -1;
  font-style: normal;
  color: #ffeec2;
  font-size: 11px;
  opacity: 0.92;
}

.insight-meter {
  display: none;
}

.insight-meter > span {
  display: none;
}

.insight-meta {
  margin-top: 7px;
  display: flex;
  justify-content: space-between;
  color: #d6c28f;
  font-size: 11px;
}

.cta-band {
  margin-top: 54px;
  border: 1px solid rgba(250, 204, 21, 0.5);
  background: linear-gradient(130deg, rgba(56, 44, 14, 0.52), rgba(8, 12, 26, 0.88));
  border-radius: 22px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-band h4 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  padding: 22px 0 36px;
  color: #90a4bf;
  font-size: 12px;
}

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

.footer a:hover {
  color: #fcd535;
}

.content-link-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-link-row .btn {
  min-height: 42px;
}

.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.floating-telegram {
  position: relative;
}

.floating-comatalk {
  position: relative;
}

.floating-comatalk-btn {
  position: relative;
  width: 116px;
  height: 54px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1px solid rgba(250, 204, 21, 0.62);
  cursor: pointer;
  background: linear-gradient(145deg, #211b08, #352909);
  color: #ffeab3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 34px rgba(3, 8, 20, 0.5), inset 0 1px 0 rgba(255, 220, 128, 0.12);
  animation: floaty 3.1s ease-in-out infinite, breathe 2.8s ease-in-out infinite;
  transition: transform 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
}

.floating-comatalk-btn:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(250, 204, 21, 0.85);
  filter: saturate(1.08);
}

.floating-comatalk.open .floating-comatalk-btn {
  border-color: rgba(250, 204, 21, 0.85);
  background: linear-gradient(145deg, #171508, #2a2207);
}

.floating-comatalk-btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fcd535;
  box-shadow: 0 0 14px rgba(250, 204, 21, 0.72);
  animation: ringPulse 1.8s ease-in-out infinite;
}

.floating-comatalk-btn-label {
  font-size: 11px;
  letter-spacing: 0.11em;
  font-weight: 800;
}

.floating-comatalk-unread {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(140deg, #f43f5e, #dc2626);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.35);
}

.floating-comatalk-unread[hidden] {
  display: none !important;
}

.floating-comatalk-panel {
  position: absolute;
  right: calc(100% + 18px);
  bottom: 0;
  width: min(380px, calc(100vw - 28px));
  border-radius: 17px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(15, 12, 5, 0.96), rgba(25, 20, 7, 0.96));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 12px;
  transform-origin: right center;
  transform: scale(0.92) translateX(10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.floating-comatalk.open .floating-comatalk-panel {
  transform: scale(1) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-comatalk-head {
  padding: 2px 2px 10px;
}

.floating-comatalk-brand {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.floating-comatalk-brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #041324;
  background: linear-gradient(135deg, #fcd535, #f59e0b);
}

.floating-comatalk-brand-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.floating-comatalk-brand-copy b {
  color: #f2f7ff;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.floating-comatalk-brand-copy small {
  color: #93acc9;
  font-size: 11px;
}

.floating-comatalk-body {
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(250, 204, 21, 0.16);
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(20, 16, 6, 0.94), rgba(17, 13, 5, 0.96));
  padding: 10px;
}

.floating-comatalk-view {
  display: none;
}

.floating-comatalk-view.active {
  display: block;
}

.floating-comatalk-homecard {
  border-radius: 13px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: linear-gradient(150deg, rgba(32, 24, 8, 0.9), rgba(36, 26, 9, 0.86));
  padding: 12px;
  display: grid;
  gap: 8px;
}

.floating-comatalk-home-title {
  margin: 0;
  color: #e9f4ff;
  font-size: 14px;
  font-weight: 700;
}

.floating-comatalk-home-copy {
  margin: 0;
  color: #d9cba1;
  font-size: 12px;
  line-height: 1.55;
}

.floating-comatalk-home-cta {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(250, 204, 21, 0.56);
  background: linear-gradient(135deg, #fcd535, #f59e0b);
  color: #1a1304;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.floating-comatalk-home-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.floating-comatalk-home-cta.secondary {
  border: 1px solid rgba(250, 204, 21, 0.3);
  background: rgba(32, 24, 8, 0.82);
  color: #f5e8c5;
  font-size: 13px;
  font-weight: 700;
}

.floating-comatalk-home-preview {
  margin: 0;
  min-height: 38px;
  color: #cdbf95;
  font-size: 11px;
  line-height: 1.45;
  border-top: 1px dashed rgba(250, 204, 21, 0.2);
  padding-top: 8px;
}

.floating-comatalk-profile {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}

.floating-comatalk-notify {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e7d8b1;
  font-size: 12px;
  line-height: 1.4;
}

.floating-comatalk-notify input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #facc15;
}

.floating-comatalk-settings-top {
  margin-bottom: 10px;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.floating-comatalk-settings-top p {
  margin: 0;
  color: #cfbf91;
  font-size: 12px;
}

.floating-comatalk-settings-status {
  margin: 10px 0 0;
  min-height: 16px;
  color: #ccbfa2;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.floating-comatalk-settings-status[data-state="ok"] {
  color: #86efac;
}

.floating-comatalk-settings-status[data-state="error"] {
  color: #fca5a5;
}

.floating-comatalk-settings-avatar {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #071321;
  background: linear-gradient(135deg, #fcd535, #f59e0b);
}

.floating-comatalk-input {
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(26, 20, 8, 0.72);
  color: #f6efd9;
  font-size: 12px;
  padding: 0 10px;
  outline: none;
}

.floating-comatalk-input::placeholder {
  color: #baaa79;
}

.floating-comatalk-input:focus {
  border-color: rgba(250, 204, 21, 0.66);
}

.floating-comatalk-chatlist,
.floating-comatalk-chatroom {
  display: none;
}

.floating-comatalk-chatlist.active,
.floating-comatalk-chatroom.active {
  display: grid;
}

.floating-comatalk-chatlist {
  gap: 8px;
}

.floating-comatalk-listhead {
  display: grid;
  gap: 2px;
}

.floating-comatalk-listhead b {
  color: #f2e8c8;
  font-size: 12px;
}

.floating-comatalk-listhead small {
  color: #bca973;
  font-size: 10.5px;
}

.floating-comatalk-chatlist-items {
  display: grid;
  gap: 7px;
  padding-right: 0;
}

.floating-comatalk-chatlist-items.is-scroll {
  max-height: min(42vh, 380px);
  overflow-y: auto;
  padding-right: 2px;
}

.floating-comatalk-chatlist-items.is-scroll::-webkit-scrollbar {
  width: 7px;
}

.floating-comatalk-chatlist-items.is-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.floating-comatalk-chatlist-items.is-scroll::-webkit-scrollbar-thumb {
  background: rgba(250, 204, 21, 0.42);
  border-radius: 999px;
}

.floating-comatalk-recovery {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(250, 204, 21, 0.24);
  border-radius: 12px;
  background: rgba(22, 16, 8, 0.68);
  padding: 10px;
}

.floating-comatalk-recovery-title {
  margin: 0;
  color: #f2e8c8;
  font-size: 11px;
  font-weight: 700;
}

.floating-comatalk-recovery-foot {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.floating-comatalk-recovery-status {
  color: #bca973;
  font-size: 10px;
  line-height: 1.4;
}

.floating-comatalk-recovery-submit {
  min-height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(250, 204, 21, 0.34);
  background: rgba(27, 20, 8, 0.82);
  color: #f5e8c5;
  font-size: 11px;
  font-weight: 700;
  padding: 0 10px;
  cursor: pointer;
}

.floating-comatalk-recovery-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.floating-comatalk-listitem {
  width: 100%;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(22, 16, 8, 0.68);
  border-radius: 12px;
  padding: 9px 10px;
  display: grid;
  gap: 4px;
  text-align: left;
  cursor: pointer;
}

.floating-comatalk-listitem.active {
  border-color: rgba(250, 204, 21, 0.56);
  background: rgba(42, 31, 10, 0.7);
}

.floating-comatalk-listtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.floating-comatalk-listtop b {
  color: #f8efcf;
  font-size: 12px;
}

.floating-comatalk-listbadges {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.floating-comatalk-liststatus,
.floating-comatalk-listunread {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.floating-comatalk-liststatus.open {
  color: #86efac;
  background: rgba(34, 197, 94, 0.17);
}

.floating-comatalk-liststatus.closed {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.17);
}

.floating-comatalk-listunread {
  color: #1f1404;
  background: rgba(250, 204, 21, 0.95);
}

.floating-comatalk-listpreview {
  color: #e8dbc0;
  font-size: 11.5px;
  line-height: 1.4;
}

.floating-comatalk-listtime {
  color: #9a8a5d;
  font-size: 10px;
}

.floating-comatalk-chatroom {
  gap: 8px;
}

.floating-comatalk-roomhead {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
}

.floating-comatalk-back {
  min-height: 30px;
  border-radius: 9px;
  border: 1px solid rgba(250, 204, 21, 0.34);
  background: rgba(45, 34, 10, 0.78);
  color: #f8e8b8;
  font-size: 11px;
  font-weight: 700;
  padding: 0 10px;
  cursor: pointer;
}

.floating-comatalk-roomcopy {
  display: grid;
  gap: 1px;
}

.floating-comatalk-roomtitle {
  color: #f5ebcc;
  font-size: 12px;
}

.floating-comatalk-roommeta {
  color: #bca973;
  font-size: 10px;
  line-height: 1.35;
}

.floating-comatalk-feed {
  display: grid;
  gap: 9px;
  padding: 3px 2px 8px;
  max-height: min(34vh, 270px);
  overflow-y: auto;
}

.floating-comatalk-feed::-webkit-scrollbar {
  width: 8px;
}

.floating-comatalk-feed::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.floating-comatalk-feed::-webkit-scrollbar-thumb {
  background: rgba(250, 204, 21, 0.42);
  border-radius: 999px;
}

.floating-comatalk-empty {
  padding: 14px 10px;
  border-radius: 12px;
  border: 1px dashed rgba(250, 204, 21, 0.28);
  color: #d0c29a;
  font-size: 12px;
  text-align: center;
}

.floating-comatalk-quick-profile {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(250, 204, 21, 0.26);
  border-radius: 12px;
  padding: 10px;
  background: rgba(34, 25, 9, 0.66);
}

.floating-comatalk-quick-profile[hidden] {
  display: none !important;
}

.floating-comatalk-quick-title {
  margin: 0;
  color: #f1e4be;
  font-size: 11px;
  line-height: 1.4;
}

.floating-comatalk-quick-foot {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.floating-comatalk-quick-status {
  color: #ccbfa2;
  font-size: 10.5px;
  line-height: 1.4;
}

.floating-comatalk-quick-status[data-state="ok"] {
  color: #86efac;
}

.floating-comatalk-quick-status[data-state="error"] {
  color: #fca5a5;
}

.floating-comatalk-quick-note {
  margin: 0;
  color: #bca973;
  font-size: 10px;
  line-height: 1.45;
}

.floating-comatalk-msg {
  width: min(100%, 92%);
  display: grid;
  gap: 5px;
  padding: 10px 11px;
  border-radius: 12px;
}

.floating-comatalk-msg.visitor {
  justify-self: end;
  border: 1px solid rgba(250, 204, 21, 0.34);
  background: rgba(52, 38, 10, 0.62);
}

.floating-comatalk-msg.admin {
  justify-self: start;
  border: 1px solid rgba(250, 204, 21, 0.24);
  background: rgba(42, 30, 10, 0.62);
}

.floating-comatalk-msg.system {
  justify-self: start;
  border: 1px solid rgba(94, 234, 212, 0.26);
  background: rgba(15, 44, 41, 0.62);
}

.floating-comatalk-meta {
  margin: 0;
  color: #c9bb93;
  font-size: 10.5px;
}

.floating-comatalk-msg-body {
  margin: 0;
  color: #eff6ff;
  font-size: 12.5px;
  line-height: 1.6;
  word-break: break-word;
}

.floating-comatalk-form {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.floating-comatalk-textarea {
  min-height: 74px;
  max-height: 180px;
  resize: vertical;
  border-radius: 12px;
  border: 1px solid rgba(250, 204, 21, 0.24);
  background: rgba(26, 20, 8, 0.72);
  color: #fff5dc;
  font-size: 13px;
  line-height: 1.6;
  padding: 10px 11px;
  outline: none;
}

.floating-comatalk-textarea::placeholder {
  color: #baaa79;
}

.floating-comatalk-textarea:focus {
  border-color: rgba(250, 204, 21, 0.66);
}

.floating-comatalk-textarea:disabled {
  opacity: 0.65;
}

.floating-comatalk-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.floating-comatalk-status {
  color: #ccbfa2;
  font-size: 11px;
  line-height: 1.4;
}

.floating-comatalk-status[data-state="ok"] {
  color: #86efac;
}

.floating-comatalk-status[data-state="error"] {
  color: #fca5a5;
}

.floating-comatalk-send {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 10px;
  border: 1px solid rgba(250, 204, 21, 0.56);
  background: linear-gradient(135deg, #fcd535, #f59e0b);
  color: #1a1304;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.floating-comatalk-send:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.floating-comatalk-save {
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(250, 204, 21, 0.34);
  background: rgba(27, 20, 8, 0.82);
  color: #f5e8c5;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.floating-comatalk-quick-save {
  min-height: 34px;
  padding: 0 11px;
  border-radius: 10px;
  border: 1px solid rgba(250, 204, 21, 0.34);
  background: rgba(27, 20, 8, 0.82);
  color: #f5e8c5;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.floating-comatalk-link {
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(125, 211, 252, 0.32);
  background: rgba(8, 18, 32, 0.82);
  color: #d7edff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.floating-comatalk-link:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.floating-comatalk-tabs {
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid rgba(250, 204, 21, 0.28);
  background: rgba(23, 18, 7, 0.86);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
}

.floating-comatalk-tab {
  min-height: 34px;
  border-radius: 9px;
  border: 0;
  background: transparent;
  color: #d1c08f;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.floating-comatalk-tab.active {
  background: linear-gradient(135deg, #fcd535, #f59e0b);
  color: #1a1304;
}

.floating-telegram-btn {
  position: relative;
  width: 116px;
  height: 54px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1px solid rgba(250, 204, 21, 0.62);
  cursor: pointer;
  background: linear-gradient(145deg, #211b08, #352909);
  color: #ffeab3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 34px rgba(3, 8, 20, 0.5), inset 0 1px 0 rgba(255, 220, 128, 0.12);
  animation: floaty 3.1s ease-in-out infinite, breathe 2.8s ease-in-out infinite;
  transition: transform 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
}

.floating-telegram-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(250, 204, 21, 0.4);
  animation: ringPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

.floating-telegram-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  pointer-events: none;
}

.floating-telegram-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.08);
  border-color: rgba(250, 204, 21, 0.85);
}

.floating-telegram.open .floating-telegram-btn {
  border-color: rgba(250, 204, 21, 0.85);
  background: linear-gradient(145deg, #171508, #2a2207);
}

.floating-telegram-btn-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.floating-telegram-panel {
  position: absolute;
  right: calc(100% + 18px);
  bottom: 0;
  width: min(360px, calc(100vw - 28px));
  border-radius: 17px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(15, 12, 5, 0.96), rgba(25, 20, 7, 0.96));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 12px;
  transform-origin: right center;
  transform: scale(0.92) translateX(10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.floating-telegram.open .floating-telegram-panel {
  transform: scale(1) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-telegram-head {
  padding: 2px 2px 10px;
}

.floating-telegram-channel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.floating-telegram-channel-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ed957, #47b74f);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.floating-telegram-channel-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.floating-telegram-channel-copy b {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.floating-telegram-channel-copy small {
  color: #9dacbf;
  font-size: 11px;
}

.floating-telegram-feed {
  display: grid;
  gap: 12px;
  padding: 10px;
  max-height: min(62vh, 760px);
  overflow-y: auto;
  border-radius: 16px;
  border: 1px solid rgba(250, 204, 21, 0.16);
  background:
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(152, 207, 151, 0.16), rgba(177, 223, 173, 0.08)),
    linear-gradient(160deg, rgba(203, 233, 184, 0.92), rgba(214, 236, 193, 0.84));
}

.floating-telegram-feed::-webkit-scrollbar {
  width: 8px;
}

.floating-telegram-feed::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.floating-telegram-feed::-webkit-scrollbar-thumb {
  background: rgba(74, 145, 94, 0.46);
  border-radius: 999px;
}

.floating-telegram-post,
.floating-telegram-fallback {
  display: grid;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.floating-telegram-fallback {
  grid-template-columns: 1fr;
}

.floating-telegram-post:hover,
.floating-telegram-fallback:hover {
  transform: translateY(-1px);
}

.floating-telegram-date {
  justify-self: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(74, 145, 94, 0.74);
  color: #f3fff3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.floating-telegram-media {
  width: min(100%, 270px);
  min-height: 150px;
  justify-self: start;
  border-radius: 14px 14px 14px 8px;
  border: 1px solid rgba(32, 58, 28, 0.14);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 8px 18px rgba(51, 84, 46, 0.12);
}

.floating-telegram-bubble {
  width: min(100%, 282px);
  justify-self: start;
  display: grid;
  gap: 6px;
  padding: 12px 14px 10px;
  border-radius: 18px 18px 18px 8px;
  border: 1px solid rgba(34, 56, 33, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(51, 84, 46, 0.08);
}

.floating-telegram-bubble strong {
  color: #122033;
  font-size: 13px;
  line-height: 1.52;
  letter-spacing: -0.01em;
  display: block;
  white-space: normal;
  overflow: visible;
}

.floating-telegram-bubble small {
  color: #6f7f93;
  font-size: 11px;
  line-height: 1.45;
  text-align: right;
}

.floating-telegram-subscribe {
  margin-top: 10px;
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 13px;
  border: 1px solid rgba(250, 204, 21, 0.54);
  background: linear-gradient(135deg, #fcd535, #f59e0b);
  color: #1a1304;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.22);
}

.floating-telegram-empty {
  padding: 16px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(74, 145, 94, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: #516671;
  font-size: 12px;
  text-align: center;
}

.floating-btn {
  position: relative;
  width: 116px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(250, 204, 21, 0.62);
  cursor: pointer;
  background: linear-gradient(145deg, #211b08, #352909);
  color: #ffeab3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 34px rgba(3, 8, 20, 0.5), inset 0 1px 0 rgba(255, 220, 128, 0.12);
  animation: floaty 3.1s ease-in-out infinite, breathe 2.8s ease-in-out infinite;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.floating-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(250, 204, 21, 0.4);
  animation: ringPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

.floating-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  pointer-events: none;
}

.floating-btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: saturate(1.08);
}

.floating.open > .floating-btn {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(250, 204, 21, 0.85);
  background: linear-gradient(145deg, #171508, #2a2207);
}

.floating-btn-icon {
  width: 18px;
  height: 14px;
  position: relative;
  display: inline-block;
}

.floating-btn-icon::before,
.floating-btn-icon::after,
.floating-btn-icon i {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease, bottom 0.22s ease;
}

.floating-btn-icon::before {
  top: 0;
}

.floating-btn-icon i {
  top: 6px;
}

.floating-btn-icon::after {
  bottom: 0;
}

.floating.open > .floating-btn .floating-btn-icon::before {
  top: 6px;
  transform: rotate(18deg);
}

.floating.open > .floating-btn .floating-btn-icon i {
  opacity: 0;
}

.floating.open > .floating-btn .floating-btn-icon::after {
  bottom: 6px;
  transform: rotate(-18deg);
}

.floating-telegram.open .floating-btn-icon::before {
  top: 6px;
  transform: rotate(18deg);
}

.floating-telegram.open .floating-btn-icon i {
  opacity: 0;
}

.floating-telegram.open .floating-btn-icon::after {
  bottom: 6px;
  transform: rotate(-18deg);
}

.floating-btn-label {
  font-size: 11px;
  letter-spacing: 0.11em;
  font-weight: 800;
}

.floating-panel {
  position: absolute;
  right: calc(100% + 18px);
  bottom: 0;
  width: 270px;
  border-radius: 17px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background: linear-gradient(160deg, rgba(15, 12, 5, 0.96), rgba(25, 20, 7, 0.96));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 10px;
  transform-origin: right center;
  transform: scale(0.88) translateX(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.23s ease;
}

.floating-panel-head {
  padding: 4px 4px 8px;
}

.floating-panel-head p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.floating-panel-head small {
  color: var(--muted);
  font-size: 11px;
}

.floating-divider {
  height: 1px;
  margin: 8px 2px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.45), transparent);
}

.floating-primary {
  width: 100%;
  border: none;
  text-align: left;
  border-radius: 12px;
  padding: 10px 11px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #fcd535, #f59e0b);
  color: #03131d;
  cursor: pointer;
}

.floating.open .floating-panel {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
}

.floating-link,
.floating-panel button {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  color: var(--text);
  border-radius: 12px;
  padding: 10px 11px;
  font-size: 12.5px;
  cursor: pointer;
  transform: translateY(8px);
  opacity: 0;
  transition: background 0.22s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.floating.open .floating-panel .floating-link,
.floating.open .floating-panel button {
  transform: translateY(0);
  opacity: 1;
}

.floating.open .floating-panel > *:nth-child(1) {
  transition-delay: 40ms;
}
.floating.open .floating-panel > *:nth-child(2) {
  transition-delay: 80ms;
}
.floating.open .floating-panel > *:nth-child(3) {
  transition-delay: 120ms;
}
.floating.open .floating-panel > *:nth-child(4) {
  transition-delay: 160ms;
}
.floating.open .floating-panel > *:nth-child(5) {
  transition-delay: 200ms;
}
.floating.open .floating-panel > *:nth-child(6) {
  transition-delay: 240ms;
}
.floating.open .floating-panel > *:nth-child(7) {
  transition-delay: 280ms;
}
.floating.open .floating-panel > *:nth-child(8) {
  transition-delay: 320ms;
}
.floating.open .floating-panel > *:nth-child(9) {
  transition-delay: 360ms;
}

.floating-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.floating-link em {
  font-style: normal;
  color: #ffd26a;
}

.floating-panel a:hover,
.floating-panel button:hover {
  background: rgba(78, 62, 17, 0.55);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 17, 0.88);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.promo-modal {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 75;
  width: min(390px, calc(100vw - 22px));
  opacity: 0;
  pointer-events: auto;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.promo-modal.open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.promo-card {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(250, 204, 21, 0.48);
  overflow: hidden;
  position: relative;
  pointer-events: auto;
  background:
    radial-gradient(380px 180px at 50% -14%, rgba(250, 204, 21, 0.34), transparent 66%),
    radial-gradient(460px 220px at 110% 15%, rgba(59, 130, 246, 0.18), transparent 60%),
    linear-gradient(165deg, #071426, #090f1f 45%, #0f182b);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(250, 204, 21, 0.12) inset;
  animation: cardBreath 5.2s ease-in-out infinite;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 22px);
  opacity: 0.42;
}

.promo-inner {
  position: relative;
  z-index: 1;
  padding: 14px 14px 12px;
}

.promo-topline {
  margin: 0;
  color: #ffd76a;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: left;
}

.promo-title {
  margin: 4px 0 0;
  text-align: left;
  font-size: clamp(24px, 5.4vw, 36px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #38f6dc;
  text-shadow: 0 0 28px rgba(56, 246, 220, 0.36);
}

.promo-copy {
  margin: 10px 0 0;
  color: #d6e6f8;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.promo-badge {
  margin: 10px 0 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.65);
  background: linear-gradient(120deg, rgba(82, 61, 12, 0.92), rgba(245, 158, 11, 0.28));
  color: #ffd84f;
  font-size: clamp(18px, 4.2vw, 24px);
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 5px 13px 6px;
  text-shadow: 0 0 14px rgba(250, 204, 21, 0.5);
  animation: heartBeat 1.2s ease-in-out infinite;
}

.promo-note {
  margin: 7px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: #ffdca2;
  font-weight: 700;
}

.promo-actions {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.promo-start {
  border: none;
  min-height: 44px;
  border-radius: 12px;
  font-size: 19px;
  font-weight: 900;
  color: #171107;
  cursor: pointer;
  background: linear-gradient(180deg, #ffe78d, #fcd535 44%, #f59e0b);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.22s ease;
}

.promo-start:hover {
  transform: translateY(-2px) scale(1.01);
}

.promo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f5cb4f;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 11px;
  padding: 0 4px;
}

.promo-hide-today {
  border: none;
  background: transparent;
  color: #f5cb4f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0;
  cursor: pointer;
  opacity: 0.92;
}

.promo-hide-today:hover {
  opacity: 1;
  text-decoration: underline;
}

.promo-close {
  border: 1px solid rgba(250, 204, 21, 0.34);
  background: rgba(12, 22, 36, 0.72);
  color: #d4e7ff;
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 11px;
  cursor: pointer;
}

.trial-event-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "copy badge"
    "copy cta";
  align-items: start;
  gap: 10px;
  border: 1px solid rgba(250, 204, 21, 0.76);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 12px;
  background: linear-gradient(118deg, rgba(112, 80, 18, 0.92), rgba(31, 24, 8, 0.94));
  color: #fff6d8;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28), inset 0 1px 0 rgba(255, 231, 166, 0.35);
  animation: trialEventPulse 2.4s ease-in-out infinite;
}

.trial-event-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0 12px,
    rgba(255, 255, 255, 0) 12px 24px
  );
  opacity: 0.24;
  pointer-events: none;
}

.trial-event-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0), rgba(255, 233, 173, 0.36), rgba(255, 255, 255, 0));
  transform: translateX(-130%);
  animation: eventShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.trial-event-banner > * {
  position: relative;
  z-index: 1;
}

.trial-event-banner:hover {
  border-color: rgba(255, 228, 135, 0.95);
  transform: translateY(-1px);
}

.trial-event-badge {
  grid-area: badge;
  justify-self: end;
  align-self: start;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.9);
  background: linear-gradient(130deg, #ffd369, #f59e0b);
  color: #1b1206;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.35);
}

.trial-event-copy {
  grid-area: copy;
  display: grid;
  gap: 1px;
}

.trial-event-copy strong {
  font-size: 12px;
  line-height: 1.25;
}

.trial-event-copy small {
  font-size: 11px;
  line-height: 1.35;
  color: #ffe9b6;
}

.trial-event-cta {
  grid-area: cta;
  justify-self: end;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(255, 226, 139, 0.85);
  background: rgba(255, 236, 178, 0.1);
  color: #fff4d7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 5px 9px;
}

.modal-card {
  width: min(680px, 94vw);
  border-radius: 20px;
  border: 1px solid rgba(250, 204, 21, 0.28);
  background: linear-gradient(160deg, rgba(5, 10, 22, 0.98), rgba(9, 15, 30, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 22px;
  transform: translateY(14px);
  transition: 0.25s ease;
}

.modal.open .modal-card {
  transform: translateY(0);
}

.modal-card h5 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.modal-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 0;
  font-size: 16px;
}

.modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  flex-wrap: wrap;
  justify-content: flex-end;
}

#trialClose.btn.ghost {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.36);
  background: linear-gradient(145deg, rgba(9, 18, 34, 0.94), rgba(10, 17, 30, 0.94));
  color: #dbe9ff;
  font-weight: 800;
}

#trialClose.btn.ghost:hover {
  border-color: rgba(250, 204, 21, 0.72);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.trial-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 16px;
  align-items: stretch;
}

.trial-box {
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 14px;
  padding: 14px;
  background: rgba(6, 12, 24, 0.78);
}

.trial-box small {
  color: var(--muted);
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.trial-box .btn.primary {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trial-qr {
  width: 180px;
  height: 180px;
  border-radius: 14px;
  border: 1px solid rgba(125, 211, 252, 0.3);
  background: #fff;
  padding: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.99);
  transition: 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

@keyframes trialEventPulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.24), inset 0 1px 0 rgba(255, 231, 166, 0.3);
    filter: saturate(1);
  }
  50% {
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.38), inset 0 1px 0 rgba(255, 231, 166, 0.42);
    filter: saturate(1.08);
  }
}

@keyframes eventShine {
  0%,
  100% {
    transform: translateX(-130%);
  }
  56% {
    transform: translateX(130%);
  }
}

@keyframes liveRibbonBreathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
  50% {
    transform: translateY(-1px) scale(1.004);
    filter: saturate(1.08);
  }
}

@keyframes liveRibbonShine {
  0%,
  100% {
    transform: translateX(-130%);
  }
  56% {
    transform: translateX(120%);
  }
}

@keyframes noiseShift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 36px 22px, 22px 36px;
  }
}

@keyframes orbDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -12px, 0) scale(1.06);
  }
}

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

@keyframes activePulse {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.55);
  }
}

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    filter: saturate(1);
  }
  50% {
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.5);
    filter: saturate(1.08);
  }
}

@keyframes subtlePulse {
  0%,
  100% {
    border-color: rgba(250, 204, 21, 0.24);
    transform: translateY(0);
  }
  50% {
    border-color: rgba(250, 204, 21, 0.46);
    transform: translateY(-1px);
  }
}

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

@keyframes panelBreathe {
  0%,
  100% {
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
  50% {
    box-shadow: 0 24px 52px rgba(245, 158, 11, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }
}

@keyframes barPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.06);
  }
}

@keyframes cardBreath {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 40px rgba(3, 8, 20, 0.32);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(3, 8, 20, 0.42);
  }
}

@keyframes mediaFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.015);
  }
}

@keyframes rowFlow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}

@keyframes panelSweep {
  0% {
    transform: translateX(-120%) rotate(12deg);
  }
  100% {
    transform: translateX(260%) rotate(12deg);
  }
}

@keyframes shimmerX {
  0%,
  100% {
    transform: translateX(-120%);
  }
  60% {
    transform: translateX(160%);
  }
}

@keyframes lineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes flashLive {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(250, 204, 21, 0);
  }
  40% {
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.5), 0 0 28px rgba(250, 204, 21, 0.28);
  }
}

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

@keyframes kpiSweep {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  12%,
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(380%);
    opacity: 0;
  }
}

@keyframes meterFlow {
  0%,
  100% {
    filter: saturate(1);
    box-shadow: 0 0 0 rgba(250, 204, 21, 0);
  }
  50% {
    filter: saturate(1.18);
    box-shadow: 0 0 18px rgba(250, 204, 21, 0.35);
  }
}

@keyframes percentPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
  50% {
    transform: translateY(-1px) scale(1.04);
    filter: saturate(1.18);
  }
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1);
  }
  12% {
    transform: scale(1.11);
    filter: saturate(1.2);
  }
  24% {
    transform: scale(0.97);
  }
  36% {
    transform: scale(1.09);
    filter: saturate(1.22);
  }
  48% {
    transform: scale(1);
  }
}

@keyframes bamPop {
  0% {
    transform: scale(0.92);
    filter: saturate(0.92);
  }
  55% {
    transform: scale(1.24);
    filter: saturate(1.35);
    text-shadow: 0 0 24px rgba(250, 204, 21, 0.7);
  }
  100% {
    transform: scale(1);
    filter: saturate(1);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.06);
  }
}

@keyframes breathe {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(34, 211, 238, 0.34), inset 0 -8px 14px rgba(0, 26, 38, 0.22);
  }
  50% {
    box-shadow: 0 20px 40px rgba(34, 211, 238, 0.44), inset 0 -8px 14px rgba(0, 26, 38, 0.22);
  }
}

@media (max-width: 1180px) {
  .site {
    width: min(1140px, 94vw);
  }

  .topbar {
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .hero-panel {
    order: 2;
  }

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

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

@media (max-width: 920px) {
  .topbar-wrap {
    top: 8px;
    padding-top: 10px;
  }

  .topbar {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .brand-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-badge img {
    width: 24px;
    height: 24px;
  }

  .brand-meta h1 {
    font-size: 14px;
  }

  .mobile-nav-btn {
    display: inline-flex;
  }

  .top-links,
  .topbar-actions {
    display: none;
  }

  .hero-copy h2 {
    font-size: clamp(30px, 7.8vw, 52px);
    line-height: 1.12;
    max-width: 11.4em;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 1.72;
  }

  .page-hero {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .section {
    margin-top: 46px;
  }

  .card,
  .insight-card {
    padding: 15px;
  }

  .card h4 {
    font-size: 18px;
  }

  .visual-card img {
    height: clamp(160px, 30vw, 220px);
  }

  .kpi-strip {
    grid-template-columns: 1fr;
  }

  .kpi b {
    font-size: 20px;
  }

  .trial-box .btn.primary {
    font-size: 18px;
  }
}

@media (max-width: 740px) {
  .site {
    width: min(100%, 95vw);
  }

  .top-links {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .top-links::-webkit-scrollbar {
    display: none;
  }

  .pill-link {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 11.5px;
  }

  .hero {
    margin-top: 30px;
    gap: 16px;
  }

  .hero-copy h2 {
    font-size: clamp(28px, 10.2vw, 40px);
    max-width: 100%;
  }

  .hero-row {
    gap: 8px;
  }

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

  .meta-pill {
    font-size: 10.5px;
    padding: 6px 9px;
  }

  .live-users-breakout {
    min-height: 42px;
    justify-content: flex-start;
    gap: 6px;
    padding: 8px 10px;
  }

  .live-users-kicker {
    font-size: 9px;
    padding: 2px 6px;
  }

  .live-users-label {
    font-size: 12px;
  }

  .live-users-breakout strong {
    font-size: clamp(24px, 8.8vw, 32px);
  }

  .live-users-unit {
    font-size: 13px;
  }

  .live-users-note {
    display: none;
  }

  .chip {
    font-size: 11px;
    padding: 7px 10px;
  }

  .hero-panel {
    padding: 14px;
  }

  .live-chart-wrap svg {
    height: 130px;
  }

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

  .ticker-card p {
    font-size: 22px;
  }

  .cards-3,
  .visual-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding: 12px 11px 12px 13px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .btn {
    min-height: 42px;
  }

  .floating {
    right: 10px;
    bottom: 10px;
  }

  .floating-btn {
    width: 92px;
    height: 48px;
  }

  .floating-comatalk-btn,
  .floating-telegram-btn {
    width: 92px;
    height: 48px;
  }

  .floating-panel {
    width: min(286px, 84vw);
    bottom: 62px;
  }

  .floating-comatalk-panel,
  .floating-telegram-panel {
    width: min(320px, calc(100vw - 28px));
  }

  .floating-comatalk-profile {
    grid-template-columns: 1fr;
  }

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

  .trial-qr {
    width: 128px;
    height: 128px;
    justify-self: start;
  }

  .modal-card {
    padding: 16px;
    border-radius: 16px;
  }

  .modal-card h5 {
    font-size: 24px;
  }

  .modal-card p {
    font-size: 14px;
  }

  .trial-event-banner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "copy"
      "cta";
    gap: 6px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .trial-event-badge {
    justify-self: end;
  }

  .trial-event-copy strong {
    font-size: 11.5px;
  }

  .trial-event-copy small {
    font-size: 10.5px;
  }

  .trial-event-cta {
    justify-self: start;
    font-size: 10px;
    padding: 4px 8px;
  }

  .trial-box .btn.primary {
    font-size: 17px;
    min-height: 46px;
  }

  .promo-modal {
    right: 10px;
    bottom: 70px;
    width: min(360px, calc(100vw - 16px));
  }

  .promo-inner {
    padding: 12px 12px 10px;
  }

  .promo-start {
    min-height: 42px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .site {
    width: 94vw;
  }

  .brand-meta p {
    font-size: 10px;
  }

  .hero-copy h2 {
    font-size: clamp(24px, 11.2vw, 34px);
    line-height: 1.16;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .live-users-breakout strong {
    font-size: clamp(22px, 9.2vw, 30px);
  }

  .live-user {
    font-size: 15px;
  }

  .live-sub,
  .live-chart-meta {
    font-size: 10px;
  }

  .section-head h2,
  .section-head h3 {
    font-size: clamp(20px, 7vw, 28px);
  }

  .section-head p,
  .card p {
    font-size: 13px;
  }

  .promo-modal {
    right: 8px;
    bottom: 68px;
    width: calc(100vw - 16px);
  }
}

.hero-chips .chip {
  flex: 0 0 auto;
}

.hero-cta .btn {
  min-height: 44px;
}

.mobile-quickbar {
  display: none;
}

.mobile-quick-item {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 11px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 16, 30, 0.84);
  color: #d4e1f4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mobile-quick-item.active {
  border-color: rgba(250, 204, 21, 0.9);
  color: #11120f;
  background: linear-gradient(130deg, #fcd535, #f59e0b);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
}

.mobile-quick-trial {
  border: none;
  border-radius: 11px;
  min-height: 42px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  color: #181206;
  background: linear-gradient(130deg, #ffe38a, #fcd535 44%, #f59e0b);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
}

@media (max-width: 920px) {
  .site {
    width: 100%;
    padding-inline: 12px;
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }

  .topbar-wrap {
    top: 0;
    padding-top: 0;
    margin: 0 -12px;
    z-index: 88;
  }

  .topbar {
    border-top: none;
    border-radius: 0 0 18px 18px;
    padding: 12px 14px;
    gap: 10px;
    animation: none;
    background: linear-gradient(165deg, rgba(11, 19, 37, 0.94), rgba(10, 14, 26, 0.9));
  }

  .brand {
    gap: 10px;
  }

  .brand-meta p {
    display: none;
  }

  .mobile-nav-btn {
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero {
    margin-top: 16px;
    gap: 12px;
  }

  .hero-copy {
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 20px;
    padding: 16px 14px;
    background: linear-gradient(155deg, rgba(10, 18, 35, 0.92), rgba(8, 15, 30, 0.88));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  }

  .hero-copy h2 {
    font-size: clamp(29px, 8.8vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    max-width: 100%;
  }

  .hero-copy p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.64;
  }

  .meta-strip {
    margin-top: 12px;
  }

  .hero-row {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .hero-chips::-webkit-scrollbar {
    display: none;
  }

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

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

  .hero-panel {
    border-radius: 20px;
    padding: 14px;
  }

  .live-big {
    padding: 12px;
    border-radius: 14px;
  }

  .live-user {
    font-size: 16px;
  }

  .rank-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .rank-tabs::-webkit-scrollbar {
    display: none;
  }

  .rank-tab {
    flex: 0 0 auto;
  }

  .live-chart-wrap {
    padding: 10px 8px;
    border-radius: 12px;
  }

  .live-chart-wrap svg {
    height: 134px;
  }

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

  .ticker-card {
    border-radius: 12px;
    padding: 10px;
  }

  .ticker-card p {
    font-size: 20px;
  }

  .page-hero {
    margin-top: 16px;
    border-radius: 20px;
    padding: 18px 14px;
    background: linear-gradient(150deg, rgba(12, 20, 37, 0.92), rgba(10, 16, 31, 0.9));
  }

  .page-hero h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .page-hero p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
  }

  .section {
    margin-top: 24px;
    padding-top: 0;
    border-top: none;
  }

  .section-head {
    margin-bottom: 12px;
    padding-left: 12px;
  }

  .section-head h2,
  .section-head h3 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .section-head p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.56;
  }

  .cards-3,
  .visual-grid,
  .insight-grid,
  .kpi-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card,
  .insight-card,
  .visual-card {
    border-radius: 16px;
  }

  .card {
    padding: 14px;
  }

  .card h4 {
    font-size: 17px;
  }

  .card p {
    font-size: 13px;
    line-height: 1.62;
  }

  .timeline {
    gap: 10px;
  }

  .timeline-item {
    padding: 12px 11px 12px 13px;
    border-radius: 12px;
  }

  .cta-band {
    margin-top: 30px;
    padding: 16px 14px;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .footer {
    margin-top: 34px;
    padding: 16px 0 calc(18px + env(safe-area-inset-bottom));
  }

  .floating {
    right: 12px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    z-index: 95;
  }

  .floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    padding: 0;
    gap: 0;
  }

  .floating-comatalk-btn,
  .floating-telegram-btn {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    padding: 0;
    justify-content: center;
  }

  .floating-comatalk-btn-label,
  .floating-telegram-btn-label {
    display: none;
  }

  .floating-btn-label {
    display: none;
  }

  .floating-panel {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(154px + env(safe-area-inset-bottom));
    width: auto;
    border-radius: 18px;
    transform-origin: center bottom;
    transform: translateY(18px) scale(0.98);
  }

  .floating-comatalk-panel,
  .floating-telegram-panel {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(154px + env(safe-area-inset-bottom));
    width: auto;
    transform-origin: center bottom;
    transform: translateY(18px) scale(0.98);
  }

  .floating.open .floating-panel {
    transform: translateY(0) scale(1);
  }

  .floating-comatalk.open .floating-comatalk-panel,
  .floating-telegram.open .floating-telegram-panel {
    transform: translateY(0) scale(1);
  }

  .promo-modal {
    right: 10px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: min(360px, calc(100vw - 16px));
  }

  .mobile-quickbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 96;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(250, 204, 21, 0.36);
    background: linear-gradient(165deg, rgba(8, 13, 24, 0.94), rgba(14, 12, 7, 0.94));
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.44);
  }
}

@media (max-width: 740px) {
  .hero-cta {
    grid-template-columns: 1fr;
  }

  .floating-panel {
    bottom: calc(146px + env(safe-area-inset-bottom));
  }

  .floating-comatalk-panel,
  .floating-telegram-panel {
    bottom: calc(146px + env(safe-area-inset-bottom));
  }

  .mobile-quickbar {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    gap: 4px;
    padding: 7px;
    border-radius: 14px;
  }

  .mobile-quick-item,
  .mobile-quick-trial {
    min-height: 40px;
  }

  .mobile-quick-item {
    font-size: 11px;
  }

  .mobile-quick-trial {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .topbar {
    padding: 11px 12px;
  }

  .mobile-quick-item {
    font-size: 10.5px;
    letter-spacing: 0.01em;
  }
}

@media (max-width: 920px) {
  .floating,
  .mobile-quickbar {
    display: none !important;
  }

  body {
    background:
      radial-gradient(900px 540px at 8% -14%, rgba(22, 163, 194, 0.2), transparent 58%),
      radial-gradient(780px 440px at 100% 0%, rgba(250, 204, 21, 0.16), transparent 66%), var(--bg);
  }

  .site {
    width: 100%;
    padding: 0 0 30px;
  }

  .topbar-wrap {
    top: 0;
    margin: 0;
    padding-top: 0;
    z-index: 92;
  }

  .topbar {
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0 0 20px 20px;
    padding: 12px 14px;
    gap: 10px;
    background: linear-gradient(168deg, rgba(7, 16, 32, 0.95), rgba(11, 18, 34, 0.92));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
    animation: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-meta p {
    display: none;
  }

  .mobile-nav-btn {
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero {
    margin-top: 0;
    gap: 0;
  }

  .hero-copy,
  .hero-panel,
  .page-hero,
  .section,
  .split,
  .cta-band {
    margin-inline: 10px;
  }

  .hero-copy {
    margin-top: 12px;
    padding: 18px 14px 16px;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(160deg, rgba(8, 16, 32, 0.94), rgba(12, 16, 30, 0.9));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  }

  .hero-copy h2 {
    font-size: clamp(30px, 9.2vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 100%;
  }

  .hero-copy p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.62;
  }

  .meta-strip {
    margin-top: 13px;
  }

  .live-users-breakout {
    min-height: 46px;
    border-radius: 16px;
    justify-content: flex-start;
    gap: 7px;
    padding: 10px 12px;
  }

  .live-users-breakout strong {
    font-size: clamp(28px, 9vw, 36px);
  }

  .hero-row {
    margin-top: 13px;
    gap: 8px;
  }

  .hero-chips {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 3px;
  }

  .hero-chips::-webkit-scrollbar {
    display: none;
  }

  .hero-chips .chip {
    scroll-snap-align: start;
    font-size: 11.5px;
    padding: 8px 12px;
  }

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

  .hero-cta .btn {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    border-radius: 14px;
  }

  .hero-panel {
    margin-top: 10px;
    border-radius: 22px;
    padding: 14px;
    background: linear-gradient(160deg, rgba(12, 20, 36, 0.92), rgba(9, 14, 26, 0.9));
  }

  .live-big,
  .live-chart-wrap,
  .ticker-card {
    border-radius: 14px;
  }

  .rank-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
    padding-bottom: 2px;
  }

  .rank-tabs::-webkit-scrollbar {
    display: none;
  }

  .rank-tab {
    flex: 0 0 auto;
  }

  .live-chart-wrap {
    padding: 9px;
  }

  .live-chart-wrap svg {
    height: 128px;
  }

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

  .ticker-card {
    padding: 10px;
  }

  .ticker-card p {
    font-size: 19px;
  }

  .page-hero {
    margin-top: 14px;
    border-radius: 22px;
    padding: 18px 14px 16px;
    background: linear-gradient(154deg, rgba(10, 18, 34, 0.95), rgba(13, 18, 30, 0.9));
  }

  .page-hero h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.06;
  }

  .page-hero p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.58;
  }

  .section {
    margin-top: 14px;
    padding-top: 0;
    border-top: none;
  }

  .section-head {
    margin: 0 0 10px;
    padding-left: 10px;
  }

  .section-head h2,
  .section-head h3 {
    font-size: clamp(22px, 7.2vw, 30px);
  }

  .section-head p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.55;
  }

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

  .cards-3,
  .visual-grid,
  .insight-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(84vw, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    margin-inline: 10px;
    padding: 2px 2px 8px;
  }

  .cards-3::-webkit-scrollbar,
  .visual-grid::-webkit-scrollbar,
  .insight-grid::-webkit-scrollbar {
    display: none;
  }

  .cards-3 > *,
  .visual-grid > *,
  .insight-grid > * {
    scroll-snap-align: start;
  }

  .card,
  .insight-card,
  .visual-card {
    border-radius: 16px;
  }

  .ops-showcase {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-inline: 10px;
  }

  .ops-main,
  .ops-card {
    border-radius: 18px;
  }

  .ops-main {
    padding: 16px;
    gap: 12px;
  }

  .ops-card {
    padding: 14px;
    gap: 12px;
  }

  .ops-copy h4 {
    font-size: 20px;
  }

  .ops-card .ops-copy h4 {
    font-size: 18px;
  }

  .ops-copy p {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .ops-frame {
    padding: 10px;
    border-radius: 16px;
  }

  .ops-frame-main {
    min-height: 280px;
  }

  .ops-frame-settings {
    min-height: 180px;
  }

  .ops-frame-log {
    min-height: 120px;
  }

  .card {
    padding: 14px;
    min-height: 100%;
  }

  .card h4 {
    font-size: 18px;
  }

  .card p {
    font-size: 13.5px;
    line-height: 1.62;
  }

  .kpi-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .kpi {
    padding: 10px;
    border-radius: 14px;
  }

  .kpi span {
    font-size: 11px;
  }

  .kpi b {
    font-size: 19px;
  }

  .timeline {
    gap: 10px;
    margin-inline: 10px;
  }

  .timeline-item {
    border-left-width: 2px;
    border-radius: 12px;
    padding: 12px 12px 12px 14px;
  }

  .timeline-item strong {
    font-size: 14px;
  }

  .cta-band {
    margin-top: 20px;
    padding: 16px 14px;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cta-band .btn {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }

  .footer {
    margin-top: 24px;
    padding: 14px 12px 24px;
    font-size: 11px;
    text-align: left;
  }

  .promo-modal {
    right: 10px;
    bottom: 14px;
    width: min(360px, calc(100vw - 20px));
  }

  .modal-card {
    width: min(680px, 96vw);
    border-radius: 18px;
    padding: 16px;
  }

  .ops-lightbox {
    padding: 18px 16px;
  }

  .ops-lightbox-stage {
    width: min(96vw, 1280px);
    max-height: calc(100vh - 52px);
  }

  .ops-lightbox-stage img {
    width: min(calc(96vw * var(--ops-preview-zoom, 1)), 1800px);
    max-height: calc(100vh - 52px);
  }

  .ops-lightbox-close {
    top: 10px;
    right: 12px;
    width: 46px;
    height: 46px;
    font-size: 34px;
  }

  .ops-lightbox-tools {
    bottom: 14px;
    gap: 6px;
    padding: 6px;
  }

  .ops-lightbox-tool {
    min-width: 42px;
    height: 38px;
    font-size: 20px;
  }

  .ops-lightbox-zoom-label {
    min-width: 68px;
    font-size: 14px;
  }

  .modal-card h5 {
    font-size: 25px;
  }

  .trial-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trial-qr {
    width: 132px;
    height: 132px;
  }
}

@media (max-width: 740px) {
  .hero-cta {
    grid-template-columns: 1fr;
  }

  .kpi-strip {
    grid-template-columns: 1fr;
  }

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

  .cards-3,
  .visual-grid,
  .insight-grid {
    grid-auto-columns: minmax(88vw, 1fr);
  }

  .live-users-note {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-copy,
  .hero-panel,
  .page-hero,
  .section,
  .split,
  .cards-3,
  .visual-grid,
  .insight-grid,
  .cta-band {
    margin-inline: 8px;
  }

  .topbar {
    border-radius: 0 0 18px 18px;
    padding: 11px 12px;
  }

  .hero-copy {
    padding: 16px 12px 14px;
    border-radius: 20px;
  }

  .hero-copy h2 {
    font-size: clamp(27px, 10.8vw, 36px);
  }

  .live-users-breakout {
    min-height: 44px;
    padding: 9px 10px;
  }

  .live-users-breakout strong {
    font-size: clamp(24px, 9.4vw, 30px);
  }

  .hero-panel,
  .page-hero,
  .cta-band {
    border-radius: 18px;
  }

  .cards-3,
  .visual-grid,
  .insight-grid {
    grid-auto-columns: minmax(90vw, 1fr);
  }
}

/* Desktop UA lock: keep desktop composition even on narrow windows. */
body.desktop-locked-view {
  min-width: 1024px;
}

body.desktop-locked-view .site {
  width: min(1240px, 95vw) !important;
  padding: 0 0 36px !important;
}

body.desktop-locked-view .topbar-wrap {
  top: 0 !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-top: 0 !important;
  background: rgba(8, 12, 18, 0.96) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18) !important;
}

body.desktop-locked-view .topbar {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 24px !important;
  width: min(1400px, calc(100vw - 40px)) !important;
  margin: 0 auto !important;
  min-height: 78px !important;
  padding: 0 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  animation: none !important;
}

body.desktop-locked-view .top-links,
body.desktop-locked-view .topbar-actions {
  display: flex !important;
}

body.desktop-locked-view .top-links {
  justify-content: center !important;
  margin-inline: auto !important;
  gap: 30px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.desktop-locked-view .top-links .pill-link {
  position: relative !important;
  padding: 6px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #eef5ff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

body.desktop-locked-view .top-links .pill-link:hover {
  color: #fff4cf !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body.desktop-locked-view .top-links .pill-link.active {
  color: #fcd535 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  animation: none !important;
}

body.desktop-locked-view .top-links .pill-link.active::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -10px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(252, 213, 53, 0), rgba(252, 213, 53, 0.92), rgba(252, 213, 53, 0)) !important;
}

body.desktop-locked-view .topbar-actions {
  justify-content: flex-end !important;
  gap: 14px !important;
}

body.desktop-locked-view .topbar-actions .btn.ghost {
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #eef5ff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

body.desktop-locked-view .topbar-actions .btn.ghost:hover {
  color: #fff4cf !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body.desktop-locked-view .mobile-nav-btn,
body.desktop-locked-view .mobile-drawer,
body.desktop-locked-view .mobile-drawer-backdrop,
body.desktop-locked-view .mobile-quickbar {
  display: none !important;
}

body.desktop-locked-view .floating {
  display: block !important;
}

body.desktop-locked-view .hero {
  grid-template-columns: 1.05fr 0.95fr !important;
  margin-top: 56px !important;
  gap: 22px !important;
}

body.desktop-locked-view .hero-cta {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.desktop-locked-view .split {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body.desktop-locked-view .cards-3,
body.desktop-locked-view .visual-grid,
body.desktop-locked-view .insight-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  grid-auto-columns: auto !important;
  overflow: visible !important;
  margin-inline: 0 !important;
  padding: 0 !important;
}

body.desktop-locked-view .kpi-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.desktop-locked-view .ticker {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.desktop-locked-view .hero-copy,
body.desktop-locked-view .hero-panel,
body.desktop-locked-view .page-hero,
body.desktop-locked-view .section,
body.desktop-locked-view .split,
body.desktop-locked-view .cta-band {
  margin-inline: 0 !important;
}

[data-theme="light"] body {
  background:
    radial-gradient(1400px 860px at -8% -12%, rgba(88, 162, 196, 0.1), transparent 54%),
    radial-gradient(1200px 760px at 108% -6%, rgba(214, 162, 53, 0.12), transparent 58%),
    linear-gradient(180deg, #f7f3eb 0%, #f2f4f8 48%, #edf2f7 100%);
  color: #122033;
}
[data-theme="light"] .grid-noise {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  opacity: 0.14;
}
[data-theme="light"] .orb {
  opacity: 0.12;
  filter: blur(28px);
}
[data-theme="light"] .topbar,
[data-theme="light"] .hero-panel,
[data-theme="light"] .page-hero,
[data-theme="light"] .ops-main,
[data-theme="light"] .ops-card,
[data-theme="light"] .card,
[data-theme="light"] .insight-card,
[data-theme="light"] .visual-card,
[data-theme="light"] .timeline-item,
[data-theme="light"] .kpi,
[data-theme="light"] .cta-band,
[data-theme="light"] .floating-panel,
[data-theme="light"] .floating-telegram-panel,
[data-theme="light"] .mobile-drawer,
[data-theme="light"] .modal-card,
[data-theme="light"] .trial-box {
  background: linear-gradient(165deg, rgba(255,255,255,.9), rgba(248,250,252,.84));
  border-color: rgba(173, 183, 198, 0.26);
  box-shadow: 0 18px 34px rgba(148, 163, 184, 0.1);
}
[data-theme="light"] .top-links,
[data-theme="light"] .live-users-breakout,
[data-theme="light"] .meta-pill,
[data-theme="light"] .chip,
[data-theme="light"] .live-chart-wrap,
[data-theme="light"] .ticker-card,
[data-theme="light"] .kpi-strip,
[data-theme="light"] .ops-frame,
[data-theme="light"] .visual-card figcaption {
  background: rgba(255,255,255,.74);
  border-color: rgba(173, 183, 198, 0.24);
}
[data-theme="light"] .topbar-actions {
  background: rgba(255,255,255,.74);
  border-color: rgba(173, 183, 198, 0.24);
}
[data-theme="light"] .btn.ghost,
[data-theme="light"] .floating-link,
[data-theme="light"] .floating-panel button,
[data-theme="light"] .mobile-drawer-link {
  background: rgba(255,255,255,.76);
  color: #122033;
  border-color: rgba(173, 183, 198, 0.28);
  box-shadow: none;
}
[data-theme="light"] .floating-comatalk-btn {
  background: linear-gradient(135deg, #efc24a, #d99820);
  border-color: rgba(217, 152, 32, 0.62);
  color: #271b08;
}
[data-theme="light"] .floating-comatalk-btn-dot {
  background: #fff3c9;
  box-shadow: 0 0 10px rgba(255, 243, 201, 0.55);
}
[data-theme="light"] .floating-comatalk-panel {
  border-color: rgba(217, 152, 32, 0.24);
  background: linear-gradient(165deg, rgba(255, 252, 245, 0.95), rgba(250, 246, 232, 0.92));
}
[data-theme="light"] .floating-comatalk-brand-badge {
  color: #1a1304;
}
[data-theme="light"] .floating-comatalk-brand-copy b {
  color: #2a1f0a;
}
[data-theme="light"] .floating-comatalk-brand-copy small,
[data-theme="light"] .floating-comatalk-home-copy,
[data-theme="light"] .floating-comatalk-home-preview,
[data-theme="light"] .floating-comatalk-listhead small,
[data-theme="light"] .floating-comatalk-roommeta,
[data-theme="light"] .floating-comatalk-listtime,
[data-theme="light"] .floating-comatalk-settings-top p,
[data-theme="light"] .floating-comatalk-settings-status,
[data-theme="light"] .floating-comatalk-quick-status,
[data-theme="light"] .floating-comatalk-meta,
[data-theme="light"] .floating-comatalk-status,
[data-theme="light"] .floating-comatalk-empty {
  color: #7c6840;
}
[data-theme="light"] .floating-comatalk-body {
  border-color: rgba(217, 152, 32, 0.2);
  background: linear-gradient(180deg, rgba(255, 248, 233, 0.97), rgba(250, 243, 225, 0.93));
}
[data-theme="light"] .floating-comatalk-homecard {
  border-color: rgba(217, 152, 32, 0.24);
  background: linear-gradient(165deg, rgba(255, 251, 241, 0.94), rgba(248, 240, 217, 0.92));
}
[data-theme="light"] .floating-comatalk-home-title {
  color: #2a1f0a;
}
[data-theme="light"] .floating-comatalk-quick-title {
  color: #2a1f0a;
}
[data-theme="light"] .floating-comatalk-quick-note {
  color: #8a7242;
}
[data-theme="light"] .floating-comatalk-quick-profile {
  border-color: rgba(217, 152, 32, 0.28);
  background: rgba(251, 241, 214, 0.9);
}
[data-theme="light"] .floating-comatalk-home-cta {
  border-color: rgba(217, 152, 32, 0.45);
  background: linear-gradient(135deg, #efc24a, #d99820);
  color: #271b08;
}
[data-theme="light"] .floating-comatalk-home-cta.secondary {
  border-color: rgba(217, 152, 32, 0.3);
  background: rgba(255, 250, 236, 0.9);
  color: #6a4a11;
}
[data-theme="light"] .floating-comatalk-input,
[data-theme="light"] .floating-comatalk-textarea {
  background: rgba(255, 253, 246, 0.88);
  border-color: rgba(217, 152, 32, 0.24);
  color: #2a1f0a;
}
[data-theme="light"] .floating-comatalk-listitem {
  border-color: rgba(217, 152, 32, 0.24);
  background: rgba(252, 243, 220, 0.85);
}
[data-theme="light"] .floating-comatalk-recovery {
  border-color: rgba(217, 152, 32, 0.24);
  background: rgba(252, 243, 220, 0.85);
}
[data-theme="light"] .floating-comatalk-recovery-title {
  color: #2a1f0a;
}
[data-theme="light"] .floating-comatalk-recovery-status {
  color: #8a7242;
}
[data-theme="light"] .floating-comatalk-recovery-submit {
  border-color: rgba(217, 152, 32, 0.3);
  background: rgba(255, 250, 236, 0.9);
  color: #6a4a11;
}
[data-theme="light"] .floating-comatalk-listitem.active {
  border-color: rgba(217, 152, 32, 0.52);
  background: rgba(248, 236, 202, 0.95);
}
[data-theme="light"] .floating-comatalk-listtop b,
[data-theme="light"] .floating-comatalk-roomtitle,
[data-theme="light"] .floating-comatalk-listpreview {
  color: #2a1f0a;
}
[data-theme="light"] .floating-comatalk-back {
  border-color: rgba(217, 152, 32, 0.42);
  background: rgba(253, 242, 213, 0.95);
  color: #271b08;
}
[data-theme="light"] .floating-comatalk-input::placeholder,
[data-theme="light"] .floating-comatalk-textarea::placeholder {
  color: #a08757;
}
[data-theme="light"] .floating-comatalk-msg.visitor {
  border-color: rgba(217, 152, 32, 0.34);
  background: rgba(247, 233, 193, 0.88);
}
[data-theme="light"] .floating-comatalk-msg.admin {
  border-color: rgba(217, 152, 32, 0.28);
  background: rgba(251, 241, 213, 0.9);
}
[data-theme="light"] .floating-comatalk-msg.system {
  border-color: rgba(66, 182, 170, 0.32);
  background: rgba(222, 247, 244, 0.9);
}
[data-theme="light"] .floating-comatalk-msg-body {
  color: #2a1f0a;
}
[data-theme="light"] .floating-comatalk-send {
  border-color: rgba(217, 152, 32, 0.45);
  background: linear-gradient(135deg, #efc24a, #d99820);
  color: #271b08;
}
[data-theme="light"] .floating-comatalk-save {
  border-color: rgba(217, 152, 32, 0.3);
  background: rgba(255, 250, 236, 0.9);
  color: #6a4a11;
}
[data-theme="light"] .floating-comatalk-quick-save {
  border-color: rgba(217, 152, 32, 0.3);
  background: rgba(255, 250, 236, 0.9);
  color: #6a4a11;
}
[data-theme="light"] .floating-comatalk-link {
  border-color: rgba(110, 164, 214, 0.32);
  background: rgba(233, 244, 255, 0.88);
  color: #1a3f64;
}
[data-theme="light"] .floating-comatalk-tabs {
  border-color: rgba(217, 152, 32, 0.24);
  background: rgba(255, 248, 232, 0.86);
}
[data-theme="light"] .floating-comatalk-tab {
  color: #8b6e32;
}
[data-theme="light"] .floating-comatalk-tab.active {
  background: linear-gradient(135deg, #efc24a, #d99820);
  color: #24180a;
}
[data-theme="light"] .floating-telegram-channel-copy b,
[data-theme="light"] .floating-telegram-bubble strong {
  color: #14263c;
}
[data-theme="light"] .floating-telegram-channel-copy small,
[data-theme="light"] .floating-telegram-bubble small,
[data-theme="light"] .floating-telegram-empty {
  color: #6b7f97;
}
[data-theme="light"] .floating-telegram-feed {
  border-color: rgba(173, 183, 198, 0.26);
  background:
    radial-gradient(circle at top right, rgba(91, 167, 220, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(226, 241, 222, 0.92), rgba(240, 247, 236, 0.84));
}
[data-theme="light"] .floating-telegram-feed::-webkit-scrollbar-track {
  background: rgba(230, 236, 243, 0.82);
}
[data-theme="light"] .floating-telegram-feed::-webkit-scrollbar-thumb {
  background: rgba(119, 159, 120, 0.52);
}
[data-theme="light"] .floating-telegram-date {
  background: rgba(119, 159, 120, 0.86);
  color: #ffffff;
}
[data-theme="light"] .floating-telegram-media,
[data-theme="light"] .floating-telegram-bubble {
  border-color: rgba(173, 183, 198, 0.22);
}
[data-theme="light"] .floating-telegram-empty {
  background: rgba(255,255,255,.72);
  border-color: rgba(173, 183, 198, 0.28);
}
[data-theme="light"] .ops-copy p {
  color: #4c627c;
}
[data-theme="light"] .ops-copy h4 {
  color: #122033;
}
[data-theme="light"] .ops-badge {
  border-color: rgba(183, 134, 11, 0.36);
  background: rgba(183, 134, 11, 0.08);
  color: #8b5e00;
}
[data-theme="light"] .ops-frame {
  background:
    radial-gradient(560px 180px at 50% 0%, rgba(250, 204, 21, 0.16), rgba(250, 204, 21, 0)),
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(15, 23, 42, 0.96));
}

[data-theme="light"] .ops-lightbox {
  background: rgba(7, 11, 19, 0.9);
}

@media (min-width: 921px) {
  [data-theme="light"] .topbar-wrap {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(173, 183, 198, 0.34);
    box-shadow: 0 14px 34px rgba(148, 163, 184, 0.08);
  }

  [data-theme="light"] .top-links {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  [data-theme="light"] .top-links .pill-link {
    color: #22354b;
  }

  [data-theme="light"] .top-links .pill-link:hover {
    color: #b57a10;
  }

  [data-theme="light"] .top-links .pill-link.active {
    color: #b57a10;
    background: transparent;
    box-shadow: none;
  }

  [data-theme="light"] .top-links .pill-link.active::after {
    background: linear-gradient(90deg, rgba(197, 138, 26, 0), rgba(197, 138, 26, 0.86), rgba(197, 138, 26, 0));
  }

  [data-theme="light"] .topbar-actions {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  [data-theme="light"] .topbar-actions .btn.ghost {
    color: #22354b;
  }

  [data-theme="light"] .topbar-actions .btn.ghost:hover {
    color: #b57a10;
  }

  [data-theme="light"] body.desktop-locked-view .topbar-wrap {
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom: 1px solid rgba(173, 183, 198, 0.34) !important;
    box-shadow: 0 14px 34px rgba(148, 163, 184, 0.08) !important;
  }

  [data-theme="light"] body.desktop-locked-view .topbar {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  [data-theme="light"] body.desktop-locked-view .brand-meta h1 {
    color: #132238 !important;
  }

  [data-theme="light"] body.desktop-locked-view .brand-meta p {
    color: #6f8098 !important;
  }

  [data-theme="light"] body.desktop-locked-view .top-links {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  [data-theme="light"] body.desktop-locked-view .top-links .pill-link {
    color: #22354b !important;
  }

  [data-theme="light"] body.desktop-locked-view .top-links .pill-link:hover {
    color: #b57a10 !important;
  }

  [data-theme="light"] body.desktop-locked-view .top-links .pill-link.active {
    color: #b57a10 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  [data-theme="light"] body.desktop-locked-view .top-links .pill-link.active::after {
    background: linear-gradient(90deg, rgba(197, 138, 26, 0), rgba(197, 138, 26, 0.86), rgba(197, 138, 26, 0)) !important;
  }

  [data-theme="light"] body.desktop-locked-view .topbar-actions {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  [data-theme="light"] body.desktop-locked-view .topbar-actions .btn.ghost {
    color: #22354b !important;
  }

  [data-theme="light"] body.desktop-locked-view .topbar-actions .btn.ghost:hover {
    color: #b57a10 !important;
  }
}

[data-theme="light"] .btn.primary,
[data-theme="light"] .pill-link.active {
  background: linear-gradient(135deg, #efc24a, #d99820);
  color: #21170a;
  box-shadow: 0 10px 24px rgba(217, 152, 32, 0.22);
  animation: none;
}
[data-theme="light"] .btn.primary:hover,
[data-theme="light"] .pill-link.active:hover {
  box-shadow: 0 14px 28px rgba(217, 152, 32, 0.24);
}
[data-theme="light"] .pill-link,
[data-theme="light"] .brand-meta p,
[data-theme="light"] .hero-copy p,
[data-theme="light"] .seo-breadcrumb,
[data-theme="light"] .section-head p,
[data-theme="light"] .page-hero p,
[data-theme="light"] .card p,
[data-theme="light"] .insight-card p,
[data-theme="light"] .timeline-item p,
[data-theme="light"] .meta-pill,
[data-theme="light"] .live-sub,
[data-theme="light"] .panel-title,
[data-theme="light"] .live-users-note,
[data-theme="light"] .live-panel-clock,
[data-theme="light"] .cta-band p,
[data-theme="light"] .kpi span,
[data-theme="light"] .ticker-card small {
  color: #63748b;
}
[data-theme="light"] .brand-meta h1,
[data-theme="light"] .hero-copy h2,
[data-theme="light"] .page-hero h2,
[data-theme="light"] .card h4,
[data-theme="light"] .insight-card h5,
[data-theme="light"] .timeline-item strong,
[data-theme="light"] .live-user,
[data-theme="light"] .ticker-card p,
[data-theme="light"] .kpi b,
[data-theme="light"] .section-head h2,
[data-theme="light"] .section-head h3,
[data-theme="light"] .cta-band h4 {
  color: #132238;
}
[data-theme="light"] .live-users-label,
[data-theme="light"] .live-users-unit,
[data-theme="light"] .live-panel-clock b,
[data-theme="light"] .floating-link em {
  color: #93651a;
}
[data-theme="light"] .live-users-kicker,
[data-theme="light"] .chip,
[data-theme="light"] .pill-link.active {
  color: #855811;
}
[data-theme="light"] .floating-panel a:hover,
[data-theme="light"] .floating-panel button:hover,
[data-theme="light"] .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(217, 152, 32, 0.3);
}
[data-theme="light"] .hero-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
[data-theme="light"] .seo-breadcrumb a {
  color: #276ea2;
}
[data-theme="light"] .seo-breadcrumb .sep {
  color: #8ea2b9;
}
[data-theme="light"] .seo-breadcrumb [aria-current="page"] {
  color: #132238;
}
[data-theme="light"] .page-hero p a,
[data-theme="light"] .section-head p a,
[data-theme="light"] .card p a {
  color: #1e6b9d;
}
[data-theme="light"] .page-hero p a:hover,
[data-theme="light"] .section-head p a:hover,
[data-theme="light"] .card p a:hover {
  color: #b57a10;
}
[data-theme="light"] .hero-copy h2 {
  text-shadow: none;
}
[data-theme="light"] .hero-copy h2 .headline-accent {
  color: #c58a1a;
  text-shadow: none;
  animation: none;
}
[data-theme="light"] .hero-copy h2 .headline-accent:nth-of-type(2) {
  animation: none;
}
[data-theme="light"] .live-users-breakout {
  background:
    radial-gradient(140% 180% at -10% -20%, rgba(255, 231, 179, 0.46), transparent 56%),
    linear-gradient(110deg, rgba(255, 253, 247, 0.98), rgba(247, 240, 219, 0.9) 55%, rgba(242, 245, 249, 0.96));
  border-color: rgba(220, 177, 71, 0.42);
  box-shadow:
    0 14px 28px rgba(191, 168, 120, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 0 0 1px rgba(220, 177, 71, 0.1);
  animation: none;
}
[data-theme="light"] .live-users-breakout::before,
[data-theme="light"] .live-users-breakout::after {
  opacity: 0.55;
}
[data-theme="light"] .live-users-breakout:hover {
  transform: translateY(-1px);
  border-color: rgba(220, 177, 71, 0.52);
  box-shadow:
    0 18px 30px rgba(191, 168, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 0 0 1px rgba(220, 177, 71, 0.12);
}
[data-theme="light"] .live-users-kicker {
  background: rgba(245, 234, 196, 0.92);
  border-color: rgba(220, 177, 71, 0.52);
  color: #855811;
  text-shadow: none;
}
[data-theme="light"] .live-users-breakout strong {
  color: #d38d15;
  text-shadow: none;
  animation: none;
}
[data-theme="light"] .meta-pill {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(212, 174, 86, 0.26);
  color: #5f7089;
}
[data-theme="light"] .meta-pill b {
  color: #132238;
}
[data-theme="light"] .chip {
  background: rgba(247, 242, 227, 0.86);
  border-color: rgba(212, 174, 86, 0.28);
}
[data-theme="light"] .card,
[data-theme="light"] .insight-card,
[data-theme="light"] .visual-card,
[data-theme="light"] .timeline-item {
  background: linear-gradient(160deg, rgba(255,255,255,.94), rgba(246,249,252,.9));
}
[data-theme="light"] .card::after {
  background: linear-gradient(90deg, transparent, rgba(217, 152, 32, 0.42), transparent);
  opacity: 0.36;
}
[data-theme="light"] .card:hover,
[data-theme="light"] .visual-card:hover,
[data-theme="light"] .insight-card:hover {
  box-shadow: 0 18px 28px rgba(148, 163, 184, 0.12);
}
[data-theme="light"] .hero-panel {
  background:
    linear-gradient(160deg, rgba(255,255,255,.92), rgba(246,249,252,.88)),
    linear-gradient(90deg, rgba(255,255,255,0), rgba(223, 177, 76, 0.06));
  animation: none;
}
[data-theme="light"] .hero-panel::before {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(219, 177, 89, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.45;
}
[data-theme="light"] .live-big,
[data-theme="light"] .live-chart-wrap,
[data-theme="light"] .ticker-card,
[data-theme="light"] .kpi,
[data-theme="light"] .cta-band {
  background: linear-gradient(160deg, rgba(250,252,255,.98), rgba(243,247,251,.94));
  border-color: rgba(177, 188, 202, 0.28);
  box-shadow: none;
}
[data-theme="light"] .live-big::after,
[data-theme="light"] .kpi::after,
[data-theme="light"] .hero-panel.live-refresh .live-big,
[data-theme="light"] .hero-panel.live-refresh .live-chart-wrap,
[data-theme="light"] .hero-panel.live-refresh .ticker-card {
  box-shadow: none;
}
[data-theme="light"] .rank-tab {
  background: rgba(244, 247, 251, 0.96);
  border-color: rgba(177, 188, 202, 0.3);
  color: #5f7089;
}
[data-theme="light"] .rank-tab.active {
  background: linear-gradient(135deg, #efc24a, #d99820);
  border-color: rgba(217, 152, 32, 0.6);
  color: #21170a;
}
[data-theme="light"] .live-chart-wrap svg {
  filter: drop-shadow(0 2px 12px rgba(42, 203, 118, 0.12));
}
[data-theme="light"] .live-sub,
[data-theme="light"] .live-chart-meta,
[data-theme="light"] .list,
[data-theme="light"] .faq-item p,
[data-theme="light"] .insight-card p,
[data-theme="light"] .insight-impact em,
[data-theme="light"] .insight-impact span,
[data-theme="light"] .visual-card figcaption,
[data-theme="light"] .timeline-item p,
[data-theme="light"] .footer {
  color: #576a82;
}
[data-theme="light"] .faq-item {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(177, 188, 202, 0.38);
}
[data-theme="light"] .faq-item summary {
  color: #132238;
}
[data-theme="light"] .insight-impact {
  background: linear-gradient(130deg, rgba(247, 241, 221, 0.92), rgba(245, 248, 252, 0.9));
  border-color: rgba(217, 152, 32, 0.22);
}
[data-theme="light"] .insight-impact strong {
  color: #c98a13;
  text-shadow: none;
}
[data-theme="light"] .section-head::before {
  box-shadow: 0 0 0 4px rgba(217, 152, 32, 0.08);
}
[data-theme="light"] .cta-band {
  background:
    linear-gradient(160deg, rgba(255,255,255,.96), rgba(247,240,220,.72)),
    radial-gradient(circle at 100% 0%, rgba(224, 170, 36, 0.1), transparent 46%);
}
[data-theme="light"] .conv-panel-proof,
[data-theme="light"] .conv-proof-card,
[data-theme="light"] .conv-monitor-overlay-card,
[data-theme="light"] .conv-mobile-proof-card,
[data-theme="light"] .conv-public-stage,
[data-theme="light"] .conv-public-side,
[data-theme="light"] .conv-public-feed,
[data-theme="light"] .conv-public-highlight,
[data-theme="light"] .conv-public-calendar-card,
[data-theme="light"] .conv-public-inline,
[data-theme="light"] .conv-public-kpi,
[data-theme="light"] .conv-public-row,
[data-theme="light"] .conv-public-chartbox,
[data-theme="light"] .conv-public-empty {
  background: linear-gradient(165deg, rgba(255,255,255,.95), rgba(246,249,252,.92));
  border-color: rgba(177, 188, 202, 0.24);
  box-shadow: 0 16px 28px rgba(148, 163, 184, 0.08);
}
[data-theme="light"] .conv-proof-head p,
[data-theme="light"] .conv-panel-proof p,
[data-theme="light"] .conv-proof-card p,
[data-theme="light"] .conv-proof-list li,
[data-theme="light"] .conv-final-copy p,
[data-theme="light"] .conv-mobile-proof-card p,
[data-theme="light"] .conv-modal-note,
[data-theme="light"] .conv-modal-card > p,
[data-theme="light"] .conv-public-copy p,
[data-theme="light"] .conv-public-stage-head p,
[data-theme="light"] .conv-public-chartmeta,
[data-theme="light"] .conv-public-row-id small,
[data-theme="light"] .conv-public-cell small,
[data-theme="light"] .conv-public-updated,
[data-theme="light"] .conv-public-feed-note,
[data-theme="light"] .conv-public-cal-note,
[data-theme="light"] .conv-public-stage-note { color: #5f7089; }
[data-theme="light"] .conv-hero-proof span,
[data-theme="light"] .conv-mobile-proof-strip span {
  background: rgba(247, 241, 221, 0.86);
  border-color: rgba(217, 152, 32, 0.24);
  color: #855811;
}
[data-theme="light"] .conv-panel-proof strong,
[data-theme="light"] .conv-proof-head h3,
[data-theme="light"] .conv-panel-proof strong,
[data-theme="light"] .conv-proof-card h4,
[data-theme="light"] .conv-final-copy h4,
[data-theme="light"] .conv-mobile-proof-card h4,
[data-theme="light"] .conv-public-copy h2,
[data-theme="light"] .conv-public-stage-head h3,
[data-theme="light"] .conv-public-row-id strong,
[data-theme="light"] .conv-public-inline strong,
[data-theme="light"] .conv-public-kpi strong,
[data-theme="light"] .conv-public-cell b { color: #0f172a; }
[data-theme="light"] .conv-public-kicker,
[data-theme="light"] .conv-public-minihead,
[data-theme="light"] .conv-public-highlight-rank,
[data-theme="light"] .conv-public-row-rank,
[data-theme="light"] .conv-proof-kicker,
[data-theme="light"] .conv-monitor-overlay-kicker { color: #855811; background: rgba(247, 231, 186, 0.86); border-color: rgba(217, 152, 32, 0.28); }
