/* ── NAV ── */
.nav-inner {
  gap: 16px;
}

.nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  transition: color 0.15s;
}

.nav-back:hover {
  color: var(--text);
}

.nav-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.nav-title {
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--mono);
}

/* ── HERO ── */
.hero {
  padding: 72px 0 64px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2.5s ease infinite;
}

.hero-name {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-name .accent {
  color: var(--blue);
}

.hero-tagline {
  font-size: 16px;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat-val {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--mono);
  color: var(--text);
  letter-spacing: -0.5px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

/* ── FEATURES ── */
#features {
  padding: 64px 0;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.feat-card {
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s;
}

.feat-card:hover {
  border-color: var(--blue-border);
}

.feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-icon.blue {
  background: var(--blue-dim);
  color: #6EC6F0;
}

.feat-icon.purple {
  background: var(--purple-dim);
  color: #AFA9EC;
}

.feat-icon.teal {
  background: var(--teal-dim);
  color: #5DCAA5;
}

.feat-icon.amber {
  background: rgba(133, 79, 11, 0.18);
  color: #EF9F27;
}

.feat-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feat-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.feat-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ── DEMO ── */
#demo {
  padding: 64px 0;
}

.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.demo-text h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.demo-text p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 12px;
}

.demo-text p:last-child {
  margin-bottom: 0;
}

.demo-commands {
  margin-top: 20px;
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.demo-commands-header {
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--border);
  font-size: 11px;
  font-family: var(--mono);
  color: var(--text-3);
  letter-spacing: 0.5px;
}

.cmd-list {
  list-style: none;
  padding: 8px 0;
}

.cmd-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 14px;
  font-size: 12px;
}

.cmd-list li:hover {
  background: var(--bg-3);
}

.cmd-name {
  font-family: var(--mono);
  color: var(--blue);
  white-space: nowrap;
  min-width: 120px;
}

.cmd-desc {
  color: var(--text-3);
}

/* ── TELEGRAM CHAT MOCKUP ── */
.tg-window {
  background: #17212b;
  border-radius: var(--radius-lg);
  border: 0.5px solid #2b5278;
  overflow: hidden;
  font-family: var(--font);
}

.tg-header {
  background: #242f3d;
  border-bottom: 1px solid #1d2733;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2CA5E0 0%, #1A7FAD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.tg-bot-name {
  font-size: 14px;
  font-weight: 500;
  color: #e8f1fa;
}

.tg-bot-status {
  font-size: 12px;
  color: #6ab3d9;
}

.tg-messages {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 340px;
}

.tg-bubble {
  max-width: 80%;
  padding: 7px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
}

.tg-bubble.user {
  background: #2b5278;
  color: #e8f1fa;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.tg-bubble.bot {
  background: #182533;
  color: #c8d7e5;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 0.5px solid #253547;
}

.tg-bubble.bot code {
  font-family: var(--mono);
  font-size: 11px;
  background: #0d1a27;
  padding: 1px 5px;
  border-radius: 3px;
  color: #6ab3d9;
}

.tg-time {
  font-size: 10px;
  color: #5b7d99;
  margin-top: 2px;
  text-align: right;
}

.tg-spacer {
  height: 6px;
}

.tg-date-divider {
  text-align: center;
  font-size: 11px;
  color: #4d6b85;
  padding: 4px 0;
}

.tg-system-msg {
  text-align: center;
  font-size: 11px;
  color: #4d6b85;
  background: #1d2e3d;
  border-radius: 8px;
  padding: 4px 10px;
  align-self: center;
}

.tg-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: #182533;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  border: 0.5px solid #253547;
  width: fit-content;
  align-self: flex-start;
}

.tg-typing span {
  width: 6px;
  height: 6px;
  background: #5b7d99;
  border-radius: 50%;
  animation: typing-dot 1.2s ease infinite;
}

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

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

@keyframes typing-dot {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

.tg-bubble .highlight {
  color: #6ab3d9;
  font-weight: 500;
}

.tg-bubble .success {
  color: #5DCAA5;
}

.tg-bubble .warn {
  color: #EF9F27;
}

/* ── MODERATION DEMO ── */
#try-it {
  padding: 64px 0;
}

.mod-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.mod-tg-window {
  display: flex;
  flex-direction: column;
}

.mod-chat {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 340px;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mod-bubble-in {
  animation: bubble-in 0.18s ease forwards;
}

.mod-hint {
  font-size: 13px;
  color: #4d6b85;
  text-align: center;
  padding: 16px 8px;
  line-height: 1.5;
}

.mod-hint strong {
  color: #6ab3d9;
}

.mod-compose {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #1d2733;
  background: #1a2633;
}

.mod-input {
  flex: 1;
  background: #253545;
  border: 0.5px solid #334d66;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 16px;
  font-family: var(--font);
  color: #e8f1fa;
  outline: none;
  transition: border-color 0.15s;
}

.mod-input::placeholder {
  color: #4d6b85;
}

.mod-input:focus {
  border-color: #2CA5E0;
}

.mod-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2CA5E0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.1s;
}

.mod-btn:hover {
  background: #3eb8f5;
}

.mod-btn:active {
  transform: scale(0.93);
}

.mod-btn:disabled {
  background: #1e3347;
  cursor: not-allowed;
  transform: none;
  opacity: 0.5;
}

.mod-btn svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.mod-action-note {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #5b7d99;
}

/* ── COLD OUTREACH INTERACTIVE (pure CSS checkbox/radio hack) ── */

/* Hide all control inputs */
.cc-radio {
  display: none;
}

/* Schedule row: hidden when "Send now" active.
   #cold-call prefix beats .cc-form-row { display:grid } defined later in file. */
#cold-call .cc-schedule-row {
  display: none;
}

#cc-later:checked~.cc-schedule-row {
  display: grid;
}

/* Message textarea: swap between default (readonly) and custom (editable) */
.cc-textarea-custom {
  display: none;
}

#cc-msg-custom:checked~.cc-textarea-default {
  display: none;
}

#cc-msg-custom:checked~.cc-textarea-custom {
  display: block;
}

/* Toggle active states driven by :checked */
#cc-now:checked~.cc-toggle-group label[for="cc-now"],
#cc-later:checked~.cc-toggle-group label[for="cc-later"],
#cc-msg-default:checked~.cc-toggle-group label[for="cc-msg-default"],
#cc-msg-custom:checked~.cc-toggle-group label[for="cc-msg-custom"] {
  background: var(--bg-2);
  color: var(--text);
  border: 0.5px solid var(--border);
}

/* Native date/time pickers */
.cc-input[type="date"],
.cc-input[type="time"] {
  color-scheme: dark;
}

/* Telegram login widget wrapper */
.cc-tg-auth {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* Custom Telegram auth button */
.tg-auth-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #2CA5E0;
  color: #fff;
  font-size: 13px;
  font-family: var(--font);
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.tg-auth-button:hover {
  background: #3eb8f5;
}

.tg-auth-button:active {
  transform: scale(0.97);
}

.tg-auth-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Rules panel */
.mod-rules {
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.mod-rules-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.mod-rules-sub {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 16px;
}

.mod-rule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.mod-rule-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mod-tag {
  font-size: 10px;
  font-family: var(--mono);
  letter-spacing: 0.4px;
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
  font-weight: 500;
}

.mod-tag.red {
  background: rgba(229, 62, 62, 0.15);
  color: #f87171;
  border: 0.5px solid rgba(229, 62, 62, 0.3);
}

.mod-tag.yellow {
  background: rgba(234, 179, 8, 0.12);
  color: #facc15;
  border: 0.5px solid rgba(234, 179, 8, 0.25);
}

.mod-rule-text {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.4;
}

/* Legend */
.mod-legend {
  border-top: 0.5px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mod-legend-title {
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-3);
  font-family: var(--mono);
  margin-bottom: 4px;
}

.mod-legend-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mod-verdict {
  font-size: 10px;
  font-family: var(--mono);
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  min-width: 46px;
  text-align: center;
}

.mod-verdict.clean {
  background: rgba(93, 202, 165, 0.13);
  color: #5DCAA5;
  border: 0.5px solid rgba(93, 202, 165, 0.3);
}

.mod-verdict.warn {
  background: rgba(239, 159, 39, 0.12);
  color: #EF9F27;
  border: 0.5px solid rgba(239, 159, 39, 0.25);
}

.mod-verdict.delete {
  background: rgba(229, 62, 62, 0.13);
  color: #f87171;
  border: 0.5px solid rgba(229, 62, 62, 0.28);
}

.mod-legend-text {
  font-size: 12px;
  color: var(--text-3);
}

/* ── COLD OUTREACH ── */
#cold-call {
  padding: 64px 0;
}

/* Step flow */
.cc-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.cc-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  flex: 1;
  min-width: 130px;
  transition: border-color 0.15s;
}

.cc-step-active {
  border-color: var(--blue-border);
  background: var(--blue-dim);
}

.cc-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--text-3);
  flex-shrink: 0;
}

.cc-step-active .cc-step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.cc-step-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.cc-step-desc {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 1px;
}

.cc-arrow {
  width: 24px;
  flex-shrink: 0;
  height: 1px;
  background: var(--border);
  position: relative;
}

.cc-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--border);
}

/* Panel layout */
.cc-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Form card */
.cc-form-card {
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cc-form-section {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-form-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.2px;
}

.cc-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 0.5px solid var(--blue-border);
  color: var(--blue);
  font-size: 10px;
  font-family: var(--mono);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-phone-row {
  display: flex;
  gap: 8px;
}

.cc-phone-row .cc-input {
  flex: 1;
}

.cc-otp-btn {
  padding: 7px 14px;
  background: var(--blue-dim);
  border: 0.5px solid var(--blue-border);
  border-radius: 6px;
  color: var(--blue);
  font-size: 12px;
  font-family: var(--font);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.cc-otp-btn:hover {
  background: rgba(44, 165, 224, 0.2);
}

.cc-verified,
.cc-tg-connected-state {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(93, 202, 165, 0.06);
  border: 0.5px solid rgba(93, 202, 165, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #5DCAA5;
}

.cc-tg-connected-state[hidden] {
  display: none;
}

.cc-connected {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(93, 202, 165, 0.06);
  border: 0.5px solid rgba(93, 202, 165, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #5DCAA5;
}

.cc-form-note {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}

.cc-connected-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5DCAA5;
  animation: pulse 2.5s ease infinite;
  flex-shrink: 0;
}

.cc-disconnect {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.15s;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
}

.cc-disconnect:hover {
  color: var(--text-2);
}

.cc-divider {
  height: 0.5px;
  background: var(--border);
}

.cc-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.cc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cc-label {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.3px;
}

.cc-input {
  background: var(--bg-3);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--text);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.cc-toggle-group {
  display: flex;
  background: var(--bg-3);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 3px;
  gap: 3px;
  width: fit-content;
}

.cc-toggle {
  font-size: 12px;
  font-family: var(--font);
  color: var(--text-3);
  background: transparent;
  border: none;
  border-radius: 4px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.cc-toggle-active {
  background: var(--bg-2);
  color: var(--text);
  border: 0.5px solid var(--border);
}

.cc-textarea {
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-3);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--text-2);
  resize: none;
  outline: none;
  line-height: 1.6;
  height: 240px;
}

.cc-schedule-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-family: var(--font);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.cc-schedule-btn:hover {
  background: #3eb8f5;
}

.cc-schedule-btn svg {
  width: 15px;
  height: 15px;
}

/* Preview panel */
.cc-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-preview-label {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--mono);
}

.cc-avatar-purple {
  background: linear-gradient(135deg, #9B8EE0 0%, #6B5CE7 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-msg-area {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 200px;
}

.cc-link {
  color: #6ab3d9;
  text-decoration: underline;
}

.cc-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.5;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: 8px;
}

.cc-note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: var(--text-3);
}

.cc-note strong {
  color: var(--text-2);
}

/* ── TECH STACK ── */
#stack {
  padding: 64px 0;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.stack-group-title {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-3);
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 12px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  max-width: 320px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.toast.toast-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast.toast-error {
  border-color: rgba(229, 62, 62, 0.4);
}

.toast.toast-success {
  border-color: rgba(93, 202, 165, 0.4);
}

.toast.toast-info {
  border-color: var(--blue-border);
}

.toast-icon {
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1;
}

.toast-msg {
  line-height: 1.4;
  color: var(--text-2);
}

/* ── FOOTER ── */
.footer-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  transition: color 0.15s;
}

.footer-back:hover {
  color: var(--text-2);
}

.footer-back svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .hero {
    padding: 48px 0 44px;
  }

  #features,
  #demo,
  #try-it,
  #cold-call,
  #stack {
    padding: 48px 0;
  }

  .demo-layout,
  .mod-layout,
  .cc-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cc-flow {
    gap: 0;
  }

  .cc-step-desc {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
  }
}