/* wordmark */
/* wordmark */
.wordmark {
  font-size: 21px; font-weight: 700; letter-spacing: -0.5px;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 5px;
}
.wordmark img {
  width: 25px; height: 25px;
  display: block;
}
.wordmark .cursor {
  width: 9px; height: 20px; background: var(--accent);
  animation: blink 1.2s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* buttons */
.btn {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14.5px; text-decoration: none;
  border: none; cursor: pointer;
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}
.btn:hover { background: var(--accent-bright); transform: translateY(-1px); box-shadow: var(--shadow-btn-hover); }
.btn.outline { background: transparent; color: var(--text); border: 1px solid var(--line-bright); }
.btn.outline:hover { border-color: var(--accent); color: var(--accent-bright); box-shadow: none; transform: none; }
.nav-links a.btn, .nav-links a.btn:hover { color: #fff; }

/* lang switch */
.lang-switch {
  display: flex; border: 1px solid var(--line-bright); border-radius: 7px; overflow: hidden;
  font-family: var(--font-mono); font-size: 12px;
}
.lang-switch button {
  background: transparent; color: var(--text-dim);
  border: none; padding: 7px 12px; cursor: pointer; font-family: inherit; font-size: inherit;
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease;
}
.lang-switch button.active { background: var(--accent); color: #fff; font-weight: 600; }

/* eyebrow labels */
.eyebrow, .sec-eyebrow {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em;
  color: var(--accent-bright); margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: "\25B8"; font-size: 11px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note {
  margin-top: 28px; font-family: var(--font-mono); font-size: 12.5px; color: var(--text-dim);
  display: flex; align-items: center; gap: 9px;
}
.hero-note code {
  background: var(--panel); border: 1px solid var(--line);
  padding: 4px 9px; border-radius: 5px; color: var(--accent-bright); font-size: 12px;
}

/* chat mockup */
.chat {
  background: var(--panel); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px var(--line-bright);
  max-width: 380px; margin-left: auto;
}
.chat-head {
  background: linear-gradient(135deg, rgba(47,111,237,0.20), rgba(47,111,237,0.05)), var(--bg-soft);
  color: #fff; display: flex; align-items: center; gap: 11px; padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.chat-ava {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; font-family: var(--font-heading);
}
.chat-head .who { font-size: 14px; font-weight: 600; }
.chat-head .status { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim); display: flex; align-items: center; gap: 6px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); display: inline-block; box-shadow: 0 0 8px rgba(74,222,128,0.6); }
.chat-body { padding: 16px 14px; display: flex; flex-direction: column; gap: 9px; min-height: 310px; }

.msg {
  max-width: 82%; padding: 9px 13px; border-radius: 12px;
  font-size: 13.6px; line-height: 1.45;
  opacity: 0; transform: translateY(6px); animation: pop 0.4s ease forwards;
}
.msg.bot { background: #1D2530; border: 1px solid var(--line); color: var(--text); align-self: flex-start; border-bottom-left-radius: 3px; }
.msg.user { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.msg:nth-child(1) { animation-delay: 0.3s; }
.msg:nth-child(2) { animation-delay: 1.1s; }
.msg:nth-child(3) { animation-delay: 1.9s; }
.msg:nth-child(4) { animation-delay: 2.7s; }
.msg:nth-child(5) { animation-delay: 3.5s; }
@keyframes pop { to { opacity: 1; transform: translateY(0); } }

.tg-card {
  position: absolute; right: -14px; bottom: -34px;
  background: var(--panel); border: 1px solid var(--line-bright); border-radius: 11px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  padding: 13px 16px; width: 270px; font-size: 13px;
  opacity: 0; transform: translateY(10px); animation: pop 0.5s ease 4.4s forwards;
}
.tg-card .tg-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tg-ico { width: 22px; height: 22px; border-radius: 50%; background: var(--telegram); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; }
.tg-card b { font-size: 13px; color: var(--text); }
.tg-card .row { color: var(--text-dim); line-height: 1.55; }
.tg-card .row strong { color: var(--text); }
.tg-card .stamp { font-family: var(--font-mono); font-size: 11px; color: var(--accent-bright); margin-top: 6px; }

@media (prefers-reduced-motion: reduce) {
  .msg, .tg-card { animation: none !important; opacity: 1 !important; transform: none !important; }
  .wordmark .cursor { animation: none; }
}

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.step {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px 26px; transition: border-color var(--duration-fast) ease, transform var(--duration-fast) ease;
}
.step:hover { border-color: var(--accent); transform: translateY(-3px); }
.step .n { font-family: var(--font-mono); font-size: 12px; color: var(--accent-bright); margin-bottom: 16px; letter-spacing: 0.08em; }
.step h3 { font-size: 18px; margin-bottom: 9px; letter-spacing: -0.3px; }
.step p { font-size: 14.5px; color: var(--text-dim); }

/* why band */
.band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 44px; }
.band-item { border-left: 2px solid var(--accent); padding-left: 20px; }
.band-item h3 { font-size: 16.5px; margin-bottom: 8px; color: var(--accent-bright); }
.band-item p { font-size: 14.5px; color: var(--text-dim); }

@media (max-width: 920px) {
  .steps, .band-grid { grid-template-columns: 1fr; }
}

/* pricing */
.price-card {
  margin-top: 46px; background: var(--bg-soft);
  border: 1px solid var(--line-bright); border-radius: var(--radius-lg);
  max-width: 520px; padding: 40px 42px;
  box-shadow: var(--shadow-card);
}
.founding {
  display: inline-block; background: var(--accent-dim); color: var(--accent-bright);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 6px; margin-bottom: 18px;
  border: 1px solid rgba(47,111,237,0.3);
}
.price-tag { font-family: var(--font-heading); font-size: 44px; font-weight: 700; letter-spacing: -1px; }
.price-tag small { font-size: 16px; font-weight: 500; color: var(--text-dim); letter-spacing: 0; }
.price-setup { font-size: 14.5px; color: var(--text-dim); margin: 6px 0 26px; }
.price-list { list-style: none; margin-bottom: 30px; }
.price-list li { padding: 10px 0; font-size: 14.5px; color: var(--text-dim); display: flex; gap: 11px; align-items: flex-start; border-bottom: 1px dashed var(--line); }
.price-list li:last-child { border-bottom: none; }
.tick { color: var(--accent-bright); font-weight: 700; flex-shrink: 0; }

/* FAQ */
.faq { max-width: 760px; }
details { border-bottom: 1px solid var(--line); padding: 20px 4px; }
summary {
  cursor: pointer; font-weight: 600; font-size: 15.5px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); letter-spacing: -0.2px;
}
summary::after { content: "+"; color: var(--accent-bright); font-size: 20px; font-weight: 500; }
details[open] summary::after { content: "\2013"; }
details p { margin-top: 12px; font-size: 14.6px; color: var(--text-dim); max-width: 62ch; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}