:root {
  --mist: #eef2f0;
  --mist-dim: #e2e8e4;
  --ink: #0f211b;
  --ink-soft: #1b342b;
  --paper-dark: #16281f;
  --signal: #ff5a36;
  --signal-dim: #ffd9cc;
  --caught: #159a6b;
  --caught-bright: #22c98c;
  --amber: #ffae2b;
  --line: rgba(15, 33, 27, 0.12);
  --line-dark: rgba(238, 242, 240, 0.14);
  --shadow: 0 20px 60px -20px rgba(15, 33, 27, 0.35);
  --ff-display: "Fraunces", Georgia, serif;
  --ff-body: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --container: 1180px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  margin: 0;
  width: 100%;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--ff-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open,
body.chat-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

section,
footer {
  scroll-margin-top: 92px;
}

::selection {
  background: var(--signal);
  color: #fff;
}

:focus-visible {
  outline: 2.5px solid var(--signal);
  outline-offset: 3px;
}

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

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--caught);
  font-family: var(--ff-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--caught);
  box-shadow: 0 0 0 4px rgba(21, 154, 107, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 15.5px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: var(--mist);
  background: var(--ink);
}

.btn-signal {
  color: #fff;
  background: var(--signal);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost-dark {
  color: var(--mist);
  background: transparent;
  border-color: var(--line-dark);
}

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

.btn-primary:hover {
  box-shadow: 0 14px 30px -10px rgba(15, 33, 27, 0.45);
}

.btn-signal:hover {
  box-shadow: 0 14px 34px -8px rgba(255, 90, 54, 0.55);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 0.8, 0.24, 1),
    transform 0.8s cubic-bezier(0.16, 0.8, 0.24, 1);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="scale"] {
  transform: translateY(16px) scale(0.96);
}

[data-reveal="scale"].in-view {
  transform: translateY(0) scale(1);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition:
    padding 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(238, 242, 240, 0.84);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px) saturate(1.4);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--signal);
}

.logo i {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal);
}

.logo i::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--signal);
  border-radius: 50%;
  opacity: 0.55;
  animation: pulseRing 2.2s ease-out infinite;
}

.nav-links,
.nav-cta {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 30px;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--signal);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  gap: 12px;
}

.nav .btn {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(238, 242, 240, 0.4);
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger span {
  position: relative;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

.burger[aria-expanded="true"] span {
  background: transparent;
}

.burger[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.burger[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  padding: 0 36px;
  color: var(--mist);
  background: var(--ink);
  font-family: var(--ff-display);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.mobile-panel.open {
  transform: translateY(0);
}

.mobile-panel a:not(.btn) {
  font-size: clamp(2rem, 10vw, 3.1rem);
  font-weight: 500;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
}

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

.ring {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.ring-one {
  width: 640px;
  height: 640px;
  top: -220px;
  right: -180px;
  animation: driftSlow 26s ease-in-out infinite;
}

.ring-two {
  width: 420px;
  height: 420px;
  top: -60px;
  right: 40px;
  border-color: rgba(255, 90, 54, 0.18);
  animation: driftSlow 20s ease-in-out infinite reverse;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero h1 {
  max-width: 680px;
  margin: 20px 0 22px;
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.2vw, 4.35rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.015em;
}

.hero h1 span {
  display: inline;
}

.lede {
  max-width: 540px;
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-family: var(--ff-mono);
  font-size: 12.5px;
}

.trust-row > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.avatars {
  display: flex;
}

.avatars span {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-left: -9px;
  border: 2px solid var(--mist);
  border-radius: 50%;
  color: var(--mist);
  background: var(--ink);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 800;
}

.avatars span:first-child {
  margin-left: 0;
}

.feed-card {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 18px;
  border-radius: 22px;
  color: var(--mist);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.feed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 220px at 90% -10%, rgba(255, 90, 54, 0.2), transparent 60%),
    radial-gradient(420px 200px at -10% 110%, rgba(34, 201, 140, 0.16), transparent 60%);
}

.feed-head,
.feed-foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.feed-head {
  margin-bottom: 16px;
}

.feed-head .title,
.avg,
.panel-head,
.metric span,
.table-head,
.telegram-ready,
.label,
.price-label {
  font-family: var(--ff-mono);
}

.feed-head .title {
  color: rgba(238, 242, 240, 0.62);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live,
.telegram-ready,
.chat-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--caught-bright);
  font-family: var(--ff-mono);
  font-size: 11.5px;
}

.live i,
.telegram-ready i,
.chat-head span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--caught-bright);
  animation: blink 1.4s ease-in-out infinite;
}

.feed-list {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  gap: 9px;
}

.feed-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 13px;
  border: 1px solid rgba(238, 242, 240, 0.08);
  border-radius: 13px;
  background: rgba(238, 242, 240, 0.05);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: rowIn 0.5s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
}

.chan {
  display: flex;
  width: 32px;
  height: 32px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
}

.chan.wa,
.source-pill.wa {
  color: var(--caught-bright);
  background: rgba(34, 201, 140, 0.16);
}

.chan.ig,
.source-pill.ig {
  color: var(--signal);
  background: rgba(255, 90, 54, 0.16);
}

.chan.web,
.source-pill.web,
.chan.form,
.source-pill.form {
  color: var(--amber);
  background: rgba(255, 174, 43, 0.16);
}

.feed-row .body {
  min-width: 0;
  flex: 1;
}

.feed-row .msg {
  overflow: hidden;
  color: rgba(238, 242, 240, 0.92);
  font-size: 13.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-row .from {
  margin-top: 2px;
  color: rgba(238, 242, 240, 0.42);
  font-family: var(--ff-mono);
  font-size: 10.5px;
}

.feed-row .status {
  min-width: 64px;
  flex: none;
  text-align: right;
  font-family: var(--ff-mono);
  font-size: 11.5px;
}

.ticking {
  color: var(--amber);
}

.got {
  display: inline-flex;
  gap: 4px;
  color: var(--caught-bright);
  font-weight: 600;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.3, 1.6, 0.5, 1);
}

.got.show {
  opacity: 1;
  transform: scale(1);
}

.feed-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 242, 240, 0.1);
}

.avg {
  color: rgba(238, 242, 240, 0.55);
  font-size: 12px;
}

.avg b {
  color: var(--mist);
  font-size: 15px;
}

.stat-strip {
  padding: 34px 0;
  border-block: 1px solid var(--line);
}

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

.stat {
  text-align: center;
}

.num {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--signal);
}

.label {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 12px;
}

section {
  padding: 110px 0;
}

.section-head {
  max-width: 660px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head h2,
.cta-band h2 {
  margin: 16px 0 14px;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.section-head p,
.cta-band p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.dark h2 {
  color: var(--mist);
}

.dark p {
  color: rgba(238, 242, 240, 0.68);
}

.svc-cluster {
  margin-bottom: 64px;
}

.svc-cluster:last-child {
  margin-bottom: 0;
}

.svc-cluster-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.svc-cluster-head h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}

.svc-cluster-head span {
  height: 1px;
  flex: 1;
  border-bottom: 1px dashed var(--line);
}

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

.svc-card,
.proof-card {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 0.4s cubic-bezier(0.16, 0.8, 0.24, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.svc-card:hover,
.proof-card:hover {
  border-color: transparent;
  box-shadow: 0 26px 50px -24px rgba(15, 33, 27, 0.28);
  transform: translateY(-6px);
}

.icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 13px;
  color: var(--ink-soft);
  background: var(--mist);
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
}

.icon-green {
  color: var(--caught);
  background: rgba(21, 154, 107, 0.1);
}

.icon-signal {
  color: var(--signal);
  background: rgba(255, 90, 54, 0.1);
}

.icon-amber {
  color: var(--amber);
  background: rgba(255, 174, 43, 0.12);
}

.svc-card h4,
.how-item h4,
.proof-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.svc-card p,
.how-item p,
.proof-card p,
.price-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

.tag {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--ink-soft);
  font-family: var(--ff-mono);
  font-size: 10px;
  opacity: 0.5;
  text-transform: uppercase;
}

.optional {
  border-style: dashed;
}

.demo-panel,
.dashboard-section {
  margin: 0 28px;
  border-radius: 28px;
  color: var(--mist);
  background: var(--ink);
}

.demo-panel {
  padding: 64px 8px 70px;
}

.demo-tabs {
  display: flex;
  width: max-content;
  gap: 8px;
  margin: 0 auto 30px;
  padding: 6px;
  border: 1px solid rgba(238, 242, 240, 0.1);
  border-radius: 100px;
  background: rgba(238, 242, 240, 0.06);
}

.demo-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 0;
  border-radius: 100px;
  color: rgba(238, 242, 240, 0.62);
  background: none;
  font-size: 14px;
  font-weight: 800;
}

.demo-tab.active {
  color: var(--ink);
  background: var(--mist);
}

.demo-phone {
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(238, 242, 240, 0.12);
  border-radius: 24px;
  background: var(--paper-dark);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.5);
}

.demo-phone-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(238, 242, 240, 0.1);
}

.av {
  display: flex;
  width: 36px;
  height: 36px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--caught);
  font-size: 14px;
  font-weight: 800;
}

.name {
  font-size: 14.5px;
  font-weight: 800;
}

.status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--caught-bright);
  font-family: var(--ff-mono);
  font-size: 11px;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--caught-bright);
}

.demo-log {
  display: flex;
  height: 340px;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding: 20px 18px;
  scroll-behavior: smooth;
}

.demo-log::-webkit-scrollbar,
.alert-feed::-webkit-scrollbar,
.chat-log::-webkit-scrollbar {
  width: 5px;
}

.demo-log::-webkit-scrollbar-thumb,
.alert-feed::-webkit-scrollbar-thumb,
.chat-log::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: rgba(238, 242, 240, 0.18);
}

.bubble,
.chat-message {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  animation: rowIn 0.4s ease forwards;
}

.bubble.user,
.chat-message.user {
  align-self: flex-end;
  color: #fff;
  background: var(--signal);
  border-bottom-right-radius: 5px;
}

.bubble.bot,
.chat-message.bot {
  align-self: flex-start;
  color: var(--mist);
  background: rgba(238, 242, 240, 0.08);
  border-bottom-left-radius: 5px;
}

.bubble .meta,
.chat-message .meta {
  display: block;
  margin-top: 5px;
  opacity: 0.55;
  font-family: var(--ff-mono);
  font-size: 10px;
}

.typing {
  display: flex;
  align-self: flex-start;
  gap: 4px;
  padding: 13px 15px;
  border-radius: 16px;
  border-bottom-left-radius: 5px;
  background: rgba(238, 242, 240, 0.08);
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(238, 242, 240, 0.6);
  animation: typingBounce 1.1s ease-in-out infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.demo-input {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(238, 242, 240, 0.1);
}

.demo-input input,
.chat-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(238, 242, 240, 0.12);
  border-radius: 100px;
  color: var(--mist);
  background: rgba(238, 242, 240, 0.06);
  outline: none;
}

.demo-input input {
  padding: 12px 18px;
  font-size: 14px;
}

.demo-input input::placeholder,
.chat-form input::placeholder {
  color: rgba(238, 242, 240, 0.42);
}

.demo-input button {
  display: flex;
  width: 44px;
  height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--signal);
}

.demo-input button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-hint {
  margin: 16px 0 0;
  color: rgba(238, 242, 240, 0.46);
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 11.5px;
}

.dashboard-section {
  padding: 86px 0;
}

.dashboard-section .wrap {
  max-width: 1480px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.9fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.dashboard-console {
  width: 100%;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(238, 242, 240, 0.13);
  border-radius: 20px;
  background: rgba(238, 242, 240, 0.07);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

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

.metric,
.lead-table-wrap,
.alert-feed-wrap {
  border: 1px solid rgba(238, 242, 240, 0.12);
  border-radius: 14px;
  background: rgba(238, 242, 240, 0.07);
}

.metric {
  padding: 16px;
}

.metric span {
  display: block;
  margin-bottom: 9px;
  color: rgba(238, 242, 240, 0.5);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric strong {
  color: var(--mist);
  font-size: 2rem;
}

.dashboard-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(290px, 0.82fr);
  gap: 14px;
  align-items: stretch;
}

.lead-table-wrap,
.alert-feed-wrap {
  min-width: 0;
  padding: 16px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--mist);
  font-size: 13px;
  font-weight: 700;
}

.panel-head > span:first-child,
.telegram-ready {
  white-space: nowrap;
}

.mini-btn {
  padding: 8px 10px;
  border: 1px solid rgba(238, 242, 240, 0.14);
  border-radius: 999px;
  color: var(--mist);
  background: rgba(238, 242, 240, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.lead-table,
.alert-feed {
  display: grid;
  gap: 8px;
}

.lead-row {
  display: grid;
  grid-template-columns: 64px minmax(150px, 1fr) 88px 92px;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(238, 242, 240, 0.1);
  border-radius: 12px;
  color: rgba(238, 242, 240, 0.78);
  background: rgba(238, 242, 240, 0.06);
  font-size: 0.84rem;
}

.table-head {
  color: rgba(238, 242, 240, 0.42);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-row strong {
  display: block;
  color: var(--mist);
}

.lead-row small {
  display: block;
  margin-top: 3px;
  color: rgba(238, 242, 240, 0.5);
}

.source-pill,
.status-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-tag {
  color: var(--mist);
  background: rgba(238, 242, 240, 0.1);
}

.alert-feed {
  max-height: 388px;
  overflow: auto;
  padding-right: 4px;
}

.alert {
  padding: 12px;
  border: 1px solid rgba(238, 242, 240, 0.1);
  border-radius: 12px;
  background: rgba(238, 242, 240, 0.06);
}

.alert strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mist);
  font-size: 13.5px;
}

.alert span {
  color: rgba(238, 242, 240, 0.55);
  font-size: 12.5px;
  line-height: 1.5;
}

.how-list {
  display: flex;
  flex-direction: column;
}

.how-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.how-item:last-child {
  border-bottom: 1px solid var(--line);
}

.idx {
  padding-top: 4px;
  color: var(--signal);
  font-family: var(--ff-mono);
  font-size: 14px;
}

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

.proof-card span {
  color: var(--signal);
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card h3 {
  margin-top: 14px;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.cta-band {
  position: relative;
  overflow: hidden;
  margin: 0 28px;
  padding: 80px 8px;
  border-radius: 28px;
  color: var(--mist);
  background: var(--ink);
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 300px at 50% 0%, rgba(255, 90, 54, 0.18), transparent 65%);
}

.cta-band .wrap {
  position: relative;
  max-width: 760px;
}

.cta-band .eyebrow {
  color: var(--amber);
}

.cta-band .eyebrow::before {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 174, 43, 0.18);
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(238, 242, 240, 0.68);
}

.price-split {
  display: grid;
  max-width: 560px;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 auto 36px;
  text-align: left;
}

.price-item {
  padding: 22px 22px 24px;
  border: 1px solid rgba(238, 242, 240, 0.12);
  border-radius: 16px;
  background: rgba(238, 242, 240, 0.05);
}

.price-label {
  color: var(--amber);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-item h4 {
  margin: 8px 0 10px;
  color: var(--mist);
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
}

.price-item p {
  color: rgba(238, 242, 240, 0.62);
  font-size: 13.5px;
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.fine {
  margin: 26px 0 0 !important;
  color: rgba(238, 242, 240, 0.42) !important;
  font-family: var(--ff-mono);
  font-size: 12px !important;
}

.contact-wrap {
  max-width: 720px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label.wide {
  grid-column: 1 / -1;
}

.lead-form label span {
  color: var(--ink-soft);
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.lead-form input,
.lead-form select {
  min-height: 52px;
  padding: 0 16px;
}

.lead-form textarea {
  padding: 15px 18px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 90, 54, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.12);
}

.lead-form .btn {
  justify-self: start;
}

footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.foot-brand p {
  max-width: 280px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.foot-col h5 {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.foot-col a {
  display: block;
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 14.5px;
}

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--ink-soft);
  font-family: var(--ff-mono);
  font-size: 11.5px;
}

.float-wa,
.chat-launcher {
  position: fixed;
  z-index: 80;
  border: 0;
  box-shadow: 0 14px 30px -8px rgba(15, 33, 27, 0.45);
}

.float-wa {
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--caught);
  opacity: 0;
  transform: translateY(120px) scale(0.7);
  transition: transform 0.5s cubic-bezier(0.16, 0.8, 0.24, 1), opacity 0.5s ease;
}

.float-wa svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.float-wa.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.float-wa::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--caught);
  border-radius: 50%;
  opacity: 0.5;
  animation: pulseRing 2.4s ease-out infinite;
}

.chat-launcher {
  right: 94px;
  bottom: 28px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--mist);
  background: var(--ink);
  font-weight: 800;
}

.chat-launcher span {
  position: absolute;
  top: -8px;
  right: -4px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid var(--mist);
  border-radius: 50%;
  color: #fff;
  background: var(--signal);
  font-size: 11px;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 94px;
  z-index: 90;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  width: min(390px, calc(100vw - 28px));
  max-height: min(560px, calc(100svh - 126px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(238, 242, 240, 0.14);
  border-radius: 20px;
  color: var(--mist);
  background: var(--paper-dark);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transform-origin: right bottom;
  transition:
    opacity 0.24s ease,
    transform 0.24s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.chat-widget.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(238, 242, 240, 0.1);
  background: var(--ink);
}

.chat-head div {
  display: grid;
  gap: 2px;
}

.chat-head strong {
  font-size: 1rem;
}

.chat-head button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(238, 242, 240, 0.14);
  border-radius: 50%;
  color: var(--mist);
  background: rgba(238, 242, 240, 0.08);
  font-size: 1.2rem;
}

.chat-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: min(280px, calc(100svh - 310px));
  overflow-y: auto;
  padding: 14px 14px 12px;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 12px;
}

.quick-replies button {
  flex: 1 1 calc(50% - 8px);
  padding: 9px 11px;
  border: 1px solid rgba(238, 242, 240, 0.12);
  border-radius: 999px;
  color: var(--mist);
  background: rgba(238, 242, 240, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(238, 242, 240, 0.1);
}

.chat-form input {
  min-height: 48px;
  padding: 0 16px;
}

.chat-form button {
  min-width: 78px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--signal);
  font-weight: 800;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  display: flex;
  max-width: min(440px, calc(100vw - 28px));
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  color: var(--mist);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast i {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--caught-bright);
}

@keyframes pulseRing {
  0% {
    opacity: 0.7;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}

@keyframes driftSlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-16px, 18px) scale(1.03);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@keyframes rowIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes typingBounce {
  0%,
  60%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

@media (max-width: 1180px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-console {
    max-width: 900px;
    margin: 0 auto;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

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

@media (max-width: 900px) {
  .svc-grid,
  .proof-strip,
  .dashboard-columns,
  .price-split,
  .lead-form,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .stat-wrap,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .lead-form label.wide {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .wrap {
    padding: 0 20px;
  }

  .nav-wrap {
    max-width: 390px;
    margin-right: 0;
    margin-left: 0;
  }

  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 118px 0 60px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10.6vw, 3.1rem);
    line-height: 1.06;
  }

  .hero-copy {
    max-width: 350px;
  }

  .hero h1 span {
    display: block;
  }

  .lede {
    font-size: 16px;
  }

  .hero-ctas,
  .hero-ctas .btn {
    width: 100%;
  }

  .trust-row {
    align-items: flex-start;
  }

  section {
    padding: 76px 0;
  }

  .demo-panel,
  .dashboard-section,
  .cta-band {
    margin: 0 14px;
  }

  .demo-panel {
    padding: 48px 0 54px;
  }

  .demo-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .demo-phone {
    margin: 0 14px;
  }

  .how-item {
    grid-template-columns: 40px 1fr;
  }

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

  .table-head {
    display: none;
  }

  .float-wa {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .chat-launcher {
    right: auto;
    left: 20px;
    bottom: 16px;
    min-height: 48px;
  }

  .chat-widget {
    top: auto;
    right: 10px;
    bottom: 78px;
    left: 10px;
    width: auto;
    max-height: min(560px, calc(100svh - 100px));
    transform-origin: center bottom;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
