:root {
  color-scheme: dark;
  --bg: #020307;
  --bg-elevated: #06080d;
  --panel: #0b1019;
  --panel-soft: rgba(17, 24, 36, 0.84);
  --panel-strong: #121927;
  --text: #f7f8ff;
  --muted: #9aa3b5;
  --muted-strong: #c3cad8;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --blue: #2f6bff;
  --cyan: #32ddd4;
  --teal: #19c5b6;
  --magenta: #f23aa6;
  --pink: #ff4d86;
  --orange: #ffb22e;
  --purple: #9b62ff;
  --whatsapp: #22d36f;
  --ink: #05070b;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(47, 107, 255, 0.18), transparent 520px),
    linear-gradient(135deg, rgba(242, 58, 166, 0.12), transparent 36%),
    linear-gradient(225deg, rgba(50, 221, 212, 0.1), transparent 42%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 78%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--cyan);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 3, 7, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  min-width: max-content;
  line-height: 1;
}

.brand-word {
  color: var(--text);
  font-size: 1.75rem;
  font-weight: 900;
}

.brand-word span,
.mockup-logo span,
.site-footer strong span {
  color: var(--orange);
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.nav-links a {
  border-radius: 8px;
  padding: 8px 2px;
  transition:
    color 160ms ease,
    text-shadow 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
  text-shadow: 0 0 18px rgba(50, 221, 212, 0.34);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  box-shadow:
    0 16px 44px rgba(47, 107, 255, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.button-primary:hover {
  box-shadow:
    0 20px 54px rgba(50, 221, 212, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.button-secondary,
.button-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.button-outline {
  border-color: rgba(50, 221, 212, 0.36);
  background: rgba(50, 221, 212, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 44px;
  padding: 82px 0 76px;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 680px;
  font-size: 4.2rem;
  line-height: 1.02;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 14px;
  max-width: 780px;
  font-size: 2.7rem;
  line-height: 1.08;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--muted-strong);
  font-size: 1.15rem;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.channel-strip,
.channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channel {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.channel-telegram {
  border-color: rgba(47, 149, 255, 0.48);
  background: rgba(47, 149, 255, 0.16);
  color: #8fd0ff;
}

.channel-whatsapp {
  border-color: rgba(34, 211, 111, 0.42);
  background: rgba(34, 211, 111, 0.12);
  color: #8ff0b9;
}

.channel-avito {
  border-color: rgba(155, 98, 255, 0.48);
  background: rgba(155, 98, 255, 0.15);
  color: #c7b3ff;
}

.channel-instagram {
  border-color: rgba(255, 77, 134, 0.52);
  background: rgba(255, 77, 134, 0.16);
  color: #ffaccb;
}

.channel-email {
  border-color: rgba(255, 178, 46, 0.5);
  background: rgba(255, 178, 46, 0.14);
  color: #ffd58a;
}

.hero-visual {
  min-width: 0;
}

.app-mockup {
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #05070b;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(50, 221, 212, 0.04) inset,
    0 0 80px rgba(47, 107, 255, 0.22);
}

.mockup-appbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 26px 26px 18px;
}

.mockup-logo,
.mockup-pipeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-logo strong {
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.mockup-logo small,
.mockup-pipeline small,
.muted {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.mockup-pipeline strong {
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1;
}

.mockup-tools {
  display: flex;
  gap: 8px;
}

.mockup-tools span {
  display: inline-block;
  width: 9px;
  height: 28px;
  border-radius: 999px;
  background: var(--muted-strong);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.mockup-tools span:first-child {
  width: 24px;
  height: 24px;
  border: 3px solid var(--muted-strong);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  background: transparent;
}

.mockup-search {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 62px;
  margin: 0 26px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: 10px 16px;
}

.filter-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 18px;
}

.filter-icon::before,
.filter-icon::after {
  position: absolute;
  left: 0;
  content: "";
  height: 3px;
  border-radius: 999px;
  background: var(--text);
}

.filter-icon::before {
  top: 0;
  width: 24px;
  box-shadow: 0 7px 0 var(--text);
}

.filter-icon::after {
  top: 14px;
  width: 12px;
}

.search-chip {
  border: 1px solid rgba(50, 221, 212, 0.48);
  border-radius: 999px;
  background: rgba(50, 221, 212, 0.13);
  color: var(--cyan);
  padding: 8px 14px;
  font-weight: 900;
}

.search-placeholder {
  min-width: 0;
  color: var(--muted);
  font-size: 1.28rem;
}

.stage-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 26px 18px;
  scrollbar-width: none;
}

.stage-strip::-webkit-scrollbar {
  display: none;
}

.stage-chip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--text);
  font-weight: 950;
}

.stage-chip b {
  color: inherit;
}

.stage-new {
  border-color: rgba(47, 107, 255, 0.6);
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.95), rgba(47, 107, 255, 0.7));
}

.stage-work {
  border-color: rgba(50, 221, 212, 0.52);
  color: var(--cyan);
}

.stage-proposal {
  border-color: rgba(255, 178, 46, 0.5);
  color: var(--orange);
}

.mockup-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 236px;
  gap: 16px;
  min-width: 0;
  padding: 0 26px 22px;
}

.chat-feed {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.chat-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: 14px 46px 14px 18px;
}

.chat-card.is-active {
  border-color: rgba(47, 107, 255, 0.34);
  background: rgba(47, 107, 255, 0.08);
}

.chat-rail {
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 0 999px 999px 0;
}

.rail-blue {
  background: var(--blue);
}

.rail-cyan {
  background: var(--cyan);
}

.rail-pink {
  background: var(--pink);
}

.reminder-badge {
  position: absolute;
  left: 16px;
  top: 13px;
  z-index: 1;
  display: inline-grid;
  width: 26px;
  height: 23px;
  place-items: center;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
}

.reminder-badge::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  border-radius: 4px;
  background: rgba(50, 221, 212, 0.22);
  box-shadow: 0 0 0 2px var(--teal) inset;
  content: "";
}

.avatar {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.18);
}

.avatar-blue {
  background: linear-gradient(135deg, #2f6bff, #4c86ff);
}

.avatar-cyan {
  background: linear-gradient(135deg, #19c5b6, #43ded6);
}

.avatar-pink {
  background: linear-gradient(135deg, #f23aa6, #ff4d86);
}

.avatar-orange {
  background: linear-gradient(135deg, #ff8d2e, #ffbd42);
}

.chat-main {
  min-width: 0;
}

.chat-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.chat-topline strong {
  min-width: 0;
  overflow: hidden;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-topline time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.stage-label {
  display: inline-flex;
  max-width: 100%;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin: 6px 0 5px;
  padding: 4px 9px;
  font-size: 0.8rem;
  font-weight: 850;
}

.label-blue {
  border-color: rgba(47, 107, 255, 0.5);
  background: rgba(47, 107, 255, 0.12);
  color: #9dc0ff;
}

.label-cyan {
  border-color: rgba(50, 221, 212, 0.45);
  background: rgba(50, 221, 212, 0.11);
  color: #9af3ef;
}

.label-pink {
  border-color: rgba(255, 77, 134, 0.45);
  background: rgba(255, 77, 134, 0.11);
  color: #ffb0cb;
}

.chat-card p {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  color: var(--muted-strong);
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-dot {
  align-self: center;
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 950;
}

.source-telegram {
  background: #22a7f0;
}

.source-whatsapp {
  background: var(--whatsapp);
}

.source-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d7c, #fcb045);
}

.unread-count {
  position: absolute;
  right: 14px;
  bottom: 16px;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: #03211f;
  font-weight: 950;
}

.contact-dock {
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(12, 18, 29, 0.92);
  padding: 16px;
}

.dock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.dock-header strong {
  display: block;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.contact-lines div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-lines dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-lines dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.task-note,
.ai-note {
  display: flex;
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.035);
  padding: 12px;
}

.task-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 5px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 178, 46, 0.48);
}

.task-note strong {
  display: block;
  font-size: 0.88rem;
}

.task-note p,
.ai-note p {
  margin: 2px 0 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.ai-note {
  border-color: rgba(242, 58, 166, 0.32);
  background: rgba(242, 58, 166, 0.08);
}

.ai-note span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 950;
}

.mockup-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(26, 31, 41, 0.86);
  padding: 8px;
  box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.3);
}

.mockup-nav span {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 6px;
  color: var(--muted-strong);
  font-size: 1.15rem;
  font-weight: 850;
}

.mockup-nav small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: inherit;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-nav .is-current {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.section {
  padding: 84px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: start;
}

.pain-grid,
.feature-grid,
.audience-grid,
.ai-grid {
  display: grid;
  gap: 14px;
}

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

.pain-grid article,
.feature-card,
.audience-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    var(--panel-soft);
  padding: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.pain-grid article:last-child {
  grid-column: 1 / -1;
}

.pain-mark,
.feature-index {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 950;
}

.pain-mark {
  border: 1px solid rgba(255, 77, 134, 0.38);
  background: rgba(255, 77, 134, 0.1);
  color: #ff9fc1;
}

.pain-grid h3,
.feature-card h3 {
  color: var(--text);
}

.pain-grid p,
.feature-card p,
.section-heading p,
.ai-copy p,
.final-cta p,
.site-footer p {
  margin-bottom: 0;
  color: var(--muted-strong);
}

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

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

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  right: -32px;
  top: -32px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  opacity: 0.42;
  content: "";
}

.index-blue {
  background: rgba(47, 107, 255, 0.12);
  color: #9dc0ff;
}

.index-cyan {
  background: rgba(50, 221, 212, 0.11);
  color: #9af3ef;
}

.index-orange {
  background: rgba(255, 178, 46, 0.12);
  color: #ffd58a;
}

.index-pink {
  background: rgba(255, 77, 134, 0.11);
  color: #ffb0cb;
}

.index-purple {
  background: rgba(155, 98, 255, 0.13);
  color: #c7b3ff;
}

.index-teal {
  background: rgba(25, 197, 182, 0.12);
  color: #9ff5ee;
}

.workflow-section {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.workflow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list::before {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--pink), var(--orange), var(--purple));
  content: "";
}

.workflow-list li {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 19, 0.88);
  padding: 18px;
}

.workflow-list p {
  margin: 0;
  color: var(--muted-strong);
  font-weight: 760;
}

.flow-dot {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 950;
}

.dot-blue {
  background: var(--blue);
}

.dot-cyan {
  background: var(--cyan);
  color: #04211f;
}

.dot-pink {
  background: var(--pink);
}

.dot-orange {
  background: var(--orange);
  color: #211304;
}

.dot-purple {
  background: var(--purple);
}

.ai-section {
  position: relative;
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: center;
  border: 1px solid rgba(155, 98, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 107, 255, 0.16), rgba(242, 58, 166, 0.13)),
    rgba(7, 10, 16, 0.92);
  padding: 34px;
  box-shadow: 0 0 72px rgba(155, 98, 255, 0.16);
}

.ai-copy h2 {
  margin-bottom: 16px;
}

.ai-console {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(3, 5, 10, 0.74);
  padding: 22px;
}

.console-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.console-head span {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  padding: 7px 10px;
  color: #ffffff;
  font-weight: 950;
}

.ai-console p {
  color: var(--muted-strong);
}

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

.ai-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 820;
}

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

.audience-grid article {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  color: var(--text);
  font-weight: 850;
}

.final-cta {
  padding-top: 30px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(50, 221, 212, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 107, 255, 0.18), rgba(50, 221, 212, 0.1), rgba(255, 178, 46, 0.08)),
    var(--panel);
  padding: 32px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.cta-box h2 {
  margin-bottom: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: rgba(2, 3, 7, 0.76);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.site-footer strong {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 950;
}

.site-footer p {
  max-width: 520px;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted-strong);
}

.footer-links a {
  color: var(--cyan);
  font-weight: 850;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.45rem;
  }

  .hero-shell,
  .split-section,
  .ai-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .workflow-list::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 32px), 1180px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

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

  .hero-shell {
    padding: 56px 0 58px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .contact-dock {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .feature-grid,
  .audience-grid,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid article:last-child {
    grid-column: auto;
  }

  .cta-box,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 24px), 1180px);
  }

  .brand-word {
    font-size: 1.48rem;
  }

  .button-small {
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .hero-shell {
    gap: 30px;
    justify-items: start;
    padding-top: 42px;
    overflow: hidden;
  }

  .hero-copy,
  .hero-visual,
  .app-mockup {
    width: min(100%, 366px);
    max-width: min(100%, 366px);
  }

  h1 {
    max-width: 100%;
    font-size: 1.86rem;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button,
  .cta-box .button {
    width: 100%;
  }

  .channel-strip {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .app-mockup {
    border-radius: 20px;
  }

  .mockup-appbar {
    grid-template-columns: 1fr auto;
    padding: 20px 16px 14px;
  }

  .mockup-pipeline {
    align-items: flex-end;
  }

  .mockup-tools {
    display: none;
  }

  .mockup-search {
    grid-template-columns: auto 1fr;
    margin: 0 16px 14px;
  }

  .search-placeholder {
    display: none;
  }

  .stage-strip {
    gap: 7px;
    padding: 0 16px 14px;
  }

  .stage-chip {
    gap: 9px;
    padding: 10px 11px;
    font-size: 0.9rem;
  }

  .mockup-body {
    padding: 0 16px 18px;
  }

  .chat-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding-right: 16px;
  }

  .chat-card p {
    padding-right: 42px;
  }

  .source-dot {
    position: absolute;
    left: 52px;
    bottom: 12px;
  }

  .unread-count {
    right: 12px;
    bottom: 12px;
  }

  .mockup-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
    margin: 0 16px 18px;
  }

  .section {
    padding: 58px 0;
  }

  .ai-layout,
  .cta-box {
    padding: 22px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.72rem;
  }

  .brand-word {
    font-size: 1.36rem;
  }
}
