:root {
  color-scheme: dark;
  --bg: #000;
  --surface: #08090b;
  --surface-2: #101216;
  --card: #0d0f12;
  --line: #202329;
  --ink: #f8fafc;
  --muted: #8c929f;
  --muted-2: #c9ced8;
  --violet: #7c5cff;
  --violet-rgb: 124, 92, 255;
  --shadow: 0 40px 120px rgba(var(--violet-rgb), 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family:
    "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

body::before {
  opacity: 0.3;
  background:
    linear-gradient(180deg, transparent, rgba(var(--violet-rgb), 0.86), transparent),
    linear-gradient(180deg, transparent, rgba(146, 120, 255, 0.68), transparent),
    linear-gradient(180deg, transparent, rgba(190, 174, 255, 0.74), transparent),
    linear-gradient(180deg, transparent, rgba(var(--violet-rgb), 0.62), transparent),
    linear-gradient(180deg, transparent, rgba(146, 120, 255, 0.56), transparent),
    linear-gradient(180deg, transparent, rgba(207, 197, 255, 0.66), transparent),
    linear-gradient(180deg, transparent, rgba(var(--violet-rgb), 0.58), transparent);
  background-position:
    10% 18%,
    24% 42%,
    38% 11%,
    57% 34%,
    72% 20%,
    86% 48%,
    94% 8%;
  background-repeat: no-repeat;
  background-size:
    2px 160px,
    3px 118px,
    2px 136px,
    3px 188px,
    2px 104px,
    3px 148px,
    2px 126px;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 14%,
    #000 82%,
    transparent 100%
  );
}

body::after {
  opacity: 0.92;
  background-image:
    linear-gradient(180deg, transparent 0 24%, rgba(var(--violet-rgb), 0.95) 34%, transparent 48%),
    linear-gradient(180deg, transparent 0 18%, rgba(146, 120, 255, 0.82) 28%, transparent 42%),
    linear-gradient(180deg, transparent 0 34%, rgba(210, 202, 255, 0.9) 45%, transparent 58%),
    linear-gradient(180deg, transparent 0 14%, rgba(var(--violet-rgb), 0.76) 25%, transparent 40%),
    linear-gradient(180deg, transparent 0 42%, rgba(146, 120, 255, 0.86) 52%, transparent 66%),
    linear-gradient(180deg, transparent 0 22%, rgba(190, 174, 255, 0.74) 32%, transparent 46%),
    linear-gradient(180deg, transparent 0 30%, rgba(var(--violet-rgb), 0.88) 40%, transparent 54%),
    linear-gradient(180deg, transparent 0 10%, rgba(146, 120, 255, 0.68) 20%, transparent 34%),
    linear-gradient(180deg, transparent 0 38%, rgba(215, 208, 255, 0.78) 48%, transparent 62%),
    linear-gradient(180deg, transparent 0 16%, rgba(var(--violet-rgb), 0.72) 28%, transparent 44%),
    linear-gradient(180deg, transparent 0 46%, rgba(146, 120, 255, 0.84) 56%, transparent 70%),
    linear-gradient(180deg, transparent 0 26%, rgba(190, 174, 255, 0.7) 36%, transparent 50%);
  background-position:
    5% 84px,
    14% 218px,
    23% 142px,
    31% 276px,
    42% 56px,
    52% 240px,
    63% 128px,
    71% 304px,
    80% 196px,
    88% 28px,
    94% 258px,
    98% 112px;
  background-repeat: repeat-y;
  background-size:
    3px 720px,
    2px 720px,
    3px 720px,
    2px 720px,
    3px 720px,
    2px 720px,
    3px 720px,
    2px 720px,
    3px 720px,
    2px 720px,
    3px 720px,
    2px 720px;
  filter: drop-shadow(0 0 10px rgba(var(--violet-rgb), 0.52));
  animation: rain-lines 5.8s linear infinite;
}

@keyframes rain-lines {
  from {
    background-position:
      5% 84px,
      14% 218px,
      23% 142px,
      31% 276px,
      42% 56px,
      52% 240px,
      63% 128px,
      71% 304px,
      80% 196px,
      88% 28px,
      94% 258px,
      98% 112px;
  }

  to {
    background-position:
      5% -636px,
      14% -502px,
      23% -578px,
      31% -444px,
      42% -664px,
      52% -480px,
      63% -592px,
      71% -416px,
      80% -524px,
      88% -692px,
      94% -462px,
      98% -608px;
  }
}

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

  body::after,
  .feature-card::before,
  .dashboard-frame,
  .signal-strip span::before {
    animation: none;
  }

  .feature-card,
  .feature-card::after,
  .dashboard-frame {
    transition: none;
  }

  .feature-card:hover,
  .dashboard-frame {
    transform: none;
  }
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(0, 0, 0, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

main {
  position: relative;
  z-index: 1;
}

.brand,
.nav-links,
.hero-actions,
.signal-strip,
.closing-section {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  background: rgba(var(--violet-rgb), 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(var(--violet-rgb), 0.34);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  gap: 6px;
}

.nav-links a,
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  color: #a7adba;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.nav-links a:hover,
.header-action:hover {
  color: #fff;
  background: rgba(var(--violet-rgb), 0.16);
}

.header-action {
  color: #fff;
  border: 1px solid rgba(var(--violet-rgb), 0.32);
  background: rgba(var(--violet-rgb), 0.12);
}

.hero {
  min-height: 100vh;
  padding: 128px clamp(20px, 5vw, 72px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(var(--violet-rgb), 0.16), transparent 34%),
    linear-gradient(180deg, rgba(3, 4, 4, 0.76) 0%, rgba(0, 0, 0, 0.24) 72%);
}

.hero-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-free-tag {
  --tag-rgb: 76, 175, 80;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-inline: auto;
  padding: 5px 9px;
  color: #eefcf0;
  border: 1px solid rgba(var(--tag-rgb), 0.34);
  border-radius: 999px;
  background: rgba(var(--tag-rgb), 0.12);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: none;
}

.hero-free-tag::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 999px;
  background: rgb(var(--tag-rgb));
  box-shadow: 0 0 0 0 rgba(var(--tag-rgb), 0.52);
  animation: tag-pulse 1.8s ease-out infinite;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.35rem, 2.25vw, 2.25rem);
  font-weight: 575;
}

h3 {
  font-size: 0.96rem;
  font-weight: 575;
}

.hero-text {
  max-width: 690px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.18vw, 1rem);
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.chrome-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.button.primary {
  color: #fff;
  background: var(--violet);
  box-shadow: 0 18px 48px rgba(var(--violet-rgb), 0.22);
}

.button.primary:hover {
  background: #9278ff;
}

.button.secondary {
  color: #fff;
  background: rgba(var(--violet-rgb), 0.14);
  border-color: rgba(var(--violet-rgb), 0.34);
}

.hero-showcase {
  width: min(960px, 100%);
  margin: 54px auto -110px;
  max-width: 100%;
  perspective: 1400px;
}

.dashboard-frame {
  max-width: 100%;
  padding: clamp(8px, 1.5vw, 18px);
  background: linear-gradient(180deg, rgba(var(--violet-rgb), 0.18), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(var(--violet-rgb), 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  animation: dashboard-orbit 4.5s linear infinite;
  will-change: transform;
}

.hero-showcase-image {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  border: 1px solid rgba(var(--violet-rgb), 0.22);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translateZ(18px);
}

@keyframes dashboard-orbit {
  0%,
  100% {
    transform: rotateX(5deg) rotateY(5deg);
  }

  12.5% {
    transform: rotateX(6deg) rotateY(0deg);
  }

  25% {
    transform: rotateX(5deg) rotateY(-5deg);
  }

  37.5% {
    transform: rotateX(0deg) rotateY(-6deg);
  }

  50% {
    transform: rotateX(-5deg) rotateY(-5deg);
  }

  62.5% {
    transform: rotateX(-6deg) rotateY(0deg);
  }

  75% {
    transform: rotateX(-5deg) rotateY(5deg);
  }

  87.5% {
    transform: rotateX(0deg) rotateY(6deg);
  }
}

.hero-showcase figcaption {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: #cdd4dd;
}

.hero-showcase figcaption span {
  padding: 8px 12px;
  border: 1px solid rgba(var(--violet-rgb), 0.24);
  border-radius: 999px;
  background: rgba(var(--violet-rgb), 0.1);
  font-size: 0.84rem;
  font-weight: 500;
}

.signal-strip span {
  --tag-rgb: var(--violet-rgb);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #eef2ff;
  border: 1px solid rgba(var(--tag-rgb), 0.34);
  border-radius: 999px;
  background: rgba(var(--tag-rgb), 0.12);
  font-size: 0.84rem;
  font-weight: 500;
}

.signal-strip span::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: rgb(var(--tag-rgb));
  box-shadow: 0 0 0 0 rgba(var(--tag-rgb), 0.52);
  animation: tag-pulse 1.8s ease-out infinite;
}

.signal-strip span:nth-child(1) {
  --tag-rgb: 124, 92, 255;
}

.signal-strip span:nth-child(2) {
  --tag-rgb: 38, 166, 154;
}

.signal-strip span:nth-child(3) {
  --tag-rgb: 255, 183, 77;
}

.signal-strip span:nth-child(4) {
  --tag-rgb: 96, 132, 255;
}

.signal-strip span:nth-child(5) {
  --tag-rgb: 239, 83, 80;
}

.signal-strip span:nth-child(6) {
  --tag-rgb: 76, 175, 80;
}

.signal-strip span:nth-child(2n)::before {
  animation-delay: -0.55s;
}

.signal-strip span:nth-child(3n)::before {
  animation-delay: -1.1s;
}

@keyframes tag-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--tag-rgb), 0.48);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(var(--tag-rgb), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--tag-rgb), 0);
  }
}

.sector-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 150px clamp(20px, 5vw, 72px) 22px;
  text-align: center;
}

.sector-intro h2 {
  margin: 0;
}

.signal-strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 clamp(20px, 5vw, 72px) 54px;
  background: transparent;
}

.story-section,
.features-section,
.faq-section,
.plans-section,
.closing-section {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 72px);
}

.demo-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 1180px;
  min-height: 520px;
  margin: 44px auto 0;
  overflow: hidden;
  border: 1px solid rgba(var(--violet-rgb), 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--violet-rgb), 0.13), transparent 44%),
    #eef3f4;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.hero-showcase .demo-board {
  max-width: none;
  min-height: clamp(390px, 42vw, 540px);
  margin: 0;
}

.board-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 12px 16px;
  border-right: 1px solid rgba(39, 45, 56, 0.18);
  background: rgba(255, 255, 255, 0.66);
}

.board-column:last-child {
  border-right: 0;
}

.board-column header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  min-height: 54px;
  margin: 0 -12px;
  padding: 10px 12px;
  color: #141820;
  border-bottom: 1px solid rgba(39, 45, 56, 0.15);
}

.board-column header div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.board-column h3 {
  font-size: 0.96rem;
  line-height: 1.1;
}

.board-column button {
  min-height: 30px;
  padding: 0 12px;
  color: #657080;
  border: 1px solid rgba(var(--violet-rgb), 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 550;
  cursor: not-allowed;
  opacity: 0.72;
}

.board-column button:hover {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(var(--violet-rgb), 0.22);
}

.count {
  display: grid;
  min-width: 28px;
  height: 26px;
  place-items: center;
  color: #486070;
  border-radius: 999px;
  background: rgba(236, 242, 246, 0.9);
  font-size: 0.82rem;
  font-weight: 550;
}

.status-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.34);
}

.board-column.waiting header {
  background: rgba(var(--violet-rgb), 0.16);
}

.board-column.waiting .status-dot {
  background: var(--violet);
}

.board-column.active header {
  background: rgba(var(--violet-rgb), 0.12);
}

.board-column.active .status-dot {
  background: var(--violet);
}

.board-column.done header {
  background: rgba(var(--violet-rgb), 0.1);
}

.board-column.done .status-dot {
  background: #beaeff;
}

.board-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
  padding-top: 10px;
  border-radius: 8px;
  transition:
    background 160ms ease,
    outline-color 160ms ease;
}

.board-list.is-drop-target {
  background: rgba(var(--violet-rgb), 0.12);
  outline: 2px dashed rgba(var(--violet-rgb), 0.42);
  outline-offset: 4px;
}

.demo-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: #171c24;
  border: 1px solid rgba(39, 45, 56, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(14, 20, 28, 0.12);
  cursor: grab;
  transition:
    box-shadow 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.demo-card:active {
  cursor: grabbing;
}

.demo-card.is-dragging {
  opacity: 0.58;
  transform: scale(0.98);
  box-shadow: 0 8px 18px rgba(14, 20, 28, 0.16);
}

.demo-card strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 600;
}

.demo-card span {
  display: block;
  margin-top: 3px;
  color: #667485;
  font-size: 0.8rem;
  font-weight: 450;
}

.fake-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #08120f;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
}

.fake-avatar.violet {
  color: #fff;
  background: #7c5cff;
}

.fake-avatar.lilac {
  color: #fff;
  background: #9b7cff;
}

.fake-avatar.indigo {
  color: #fff;
  background: #6e56d2;
}

.fake-avatar.photo {
  color: #fff;
  background:
    radial-gradient(circle at 35% 32%, #ffd7d2 0 12%, transparent 13%),
    linear-gradient(135deg, #272746, #815cff 48%, #1c2230);
}

.demo-card.with-note {
  align-items: start;
}

.card-note {
  grid-column: 1 / -1;
  padding: 12px;
  border: 1px solid rgba(39, 45, 56, 0.12);
  border-radius: 8px;
  background: #f6f8fb;
}

.card-note time {
  display: block;
  color: #607080;
  font-size: 0.78rem;
  font-weight: 550;
}

.card-note p {
  margin: 6px 0 0;
  color: #171c24;
  font-size: 0.84rem;
  font-weight: 550;
}

.story-section {
  display: grid;
  gap: clamp(72px, 10vw, 132px);
}

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.story-block.inverted {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.08fr);
}

.story-block.inverted .story-media {
  order: 2;
}

.story-media {
  overflow: hidden;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.story-media.image-media {
  display: grid;
  width: 60%;
  min-height: auto;
  padding: clamp(10px, 1.7vw, 18px);
  justify-self: center;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(var(--violet-rgb), 0.18), transparent 46%),
    #0d1117;
}

.story-media.image-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.story-block.inverted .story-media.image-media {
  width: 85%;
}

.dispatch-demo {
  display: grid;
  min-height: 390px;
  padding: clamp(18px, 3vw, 36px);
  place-items: center;
  background:
    linear-gradient(rgba(7, 10, 14, 0.62), rgba(7, 10, 14, 0.62)),
    radial-gradient(circle at 22% 18%, rgba(var(--violet-rgb), 0.26), transparent 34%),
    #12151a;
}

.dispatch-modal {
  display: grid;
  width: min(92%, 430px);
  max-width: 100%;
  overflow: hidden;
  color: #202833;
  border: 1px solid rgba(217, 224, 232, 0.96);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.34);
}

.dispatch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid #dfe5ec;
}

.dispatch-header strong {
  font-size: 1rem;
  font-weight: 650;
}

.dispatch-header span {
  color: #0f1720;
  font-size: 1.5rem;
  line-height: 1;
}

.dispatch-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 16px;
}

.dispatch-sidebar,
.dispatch-preview {
  min-width: 0;
}

.dispatch-sidebar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
}

.dispatch-sidebar label {
  grid-column: 1 / -1;
  color: #697684;
  font-size: 0.83rem;
  font-weight: 650;
}

.dispatch-select {
  grid-column: 1 / -1;
}

.dispatch-select,
.dispatch-preview {
  border: 1px solid #dde5ee;
  border-radius: 8px;
  background: #fff;
}

.dispatch-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 12px;
  color: #202833;
  font-size: 0.84rem;
  font-weight: 575;
}

.dispatch-select span:last-child {
  color: #71808e;
  font-size: 1.2rem;
}

.dispatch-preview {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: #f9fbfd;
}

.message-frame {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 52px 18px 18px;
  border: 1px solid #d8d1c8;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.68) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 14%, rgba(255, 255, 255, 0.66) 0 1px, transparent 2px),
    linear-gradient(135deg, #ece8df, #f4f1eb);
}

.message-tag {
  position: absolute;
  top: 14px;
  left: 18px;
  margin-bottom: 10px;
  padding: 5px 11px;
  color: #596878;
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.message-bubble {
  position: relative;
  padding: 16px 18px;
  border-radius: 8px;
  background: #dbffd3;
}

.message-bubble p {
  margin: 0;
  color: #17212b;
  font-size: clamp(0.78rem, 1.08vw, 0.92rem);
  line-height: 1.45;
}

.message-bubble p + p {
  margin-top: 14px;
}

.message-bubble small {
  display: block;
  margin-top: 12px;
  color: #72806d;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

.dispatch-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.dispatch-actions span {
  display: inline-grid;
  min-width: 72px;
  min-height: 38px;
  place-items: center;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 750;
}

.dispatch-actions .start {
  color: #fff;
  background: #33846d;
}

.dispatch-actions .stop {
  color: #c98989;
  border: 1px solid #f0d7d5;
  background: #fff;
}

.story-media.compact {
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(var(--violet-rgb), 0.2), transparent 42%),
    #08070f;
}

.story-copy {
  max-width: 560px;
}

.story-copy p:not(.eyebrow),
.section-heading p,
.closing-section p {
  color: var(--muted);
  font-size: 0.95rem;
}

.story-copy p:not(.eyebrow) {
  margin: 18px 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  border-bottom: 1px solid var(--violet);
  font-weight: 550;
}

.kanban-preview {
  display: grid;
  width: min(100%, 560px);
  gap: 14px;
}

.kanban-preview div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  padding: 18px;
  border: 1px solid rgba(var(--violet-rgb), 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.kanban-preview strong {
  color: #fff;
}

.kanban-preview span {
  color: var(--violet);
  font-weight: 550;
}

.kanban-preview p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.features-section {
  background: transparent;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section-heading p {
  max-width: 580px;
  margin: 14px auto 0;
}

.feature-grid,
.plans-grid {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 44px auto 0;
}

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

.feature-card,
.plan-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #111318 0%, #090a0d 100%);
}

.feature-card {
  --pulse-rgb: var(--violet-rgb);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(var(--pulse-rgb), 0.2);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card::before {
  position: absolute;
  inset: -35%;
  z-index: -1;
  content: "";
  opacity: 0.18;
  background:
    radial-gradient(circle at 24% 18%, rgba(var(--pulse-rgb), 0.9), transparent 24%),
    radial-gradient(circle at 78% 84%, rgba(var(--pulse-rgb), 0.42), transparent 28%);
  filter: blur(22px);
  animation: feature-pulse 4.8s ease-in-out infinite;
}

.feature-card::after {
  position: absolute;
  top: -35%;
  left: -90%;
  z-index: 0;
  width: 46%;
  height: 170%;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 28%,
    rgba(255, 255, 255, 0.34) 48%,
    rgba(255, 255, 255, 0.08) 62%,
    transparent 100%
  );
  filter: blur(1px);
  transform: skewX(-18deg) translateX(0);
  transition:
    opacity 180ms ease,
    transform 680ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  border-color: rgba(var(--pulse-rgb), 0.42);
  box-shadow: 0 20px 52px rgba(var(--pulse-rgb), 0.18);
  transform: translateY(-2px);
}

.feature-card:hover::after {
  opacity: 1;
  transform: skewX(-18deg) translateX(440%);
}

.feature-card:nth-child(1) {
  --pulse-rgb: 124, 92, 255;
}

.feature-card:nth-child(2) {
  --pulse-rgb: 146, 120, 255;
}

.feature-card:nth-child(3) {
  --pulse-rgb: 190, 174, 255;
}

.feature-card:nth-child(4) {
  --pulse-rgb: 110, 86, 210;
}

.feature-card:nth-child(5) {
  --pulse-rgb: 162, 126, 255;
}

.feature-card:nth-child(6) {
  --pulse-rgb: 96, 132, 255;
}

.feature-card:nth-child(2n)::before {
  animation-delay: -1.6s;
}

.feature-card:nth-child(3n)::before {
  animation-delay: -3.2s;
}

@keyframes feature-pulse {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.92) translate3d(-2%, 2%, 0);
  }

  50% {
    opacity: 0.34;
    transform: scale(1.08) translate3d(2%, -2%, 0);
  }
}

.feature-card p,
.plan-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.feature-icon {
  display: inline-grid;
  width: 38px;
  height: 32px;
  margin-bottom: 34px;
  place-items: center;
  color: #050607;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-icon.violet-one {
  color: #fff;
  background: #7c5cff;
}

.feature-icon.violet-two {
  color: #fff;
  background: #9278ff;
}

.feature-icon.violet {
  color: #fff;
  background: var(--violet);
}

.feature-icon.violet-four {
  color: #fff;
  background: #6e56d2;
}

.feature-icon.violet-five {
  color: #fff;
  background: #a27eff;
}

.feature-icon.violet-six {
  color: #fff;
  background: #6084ff;
}

.faq-section {
  background: transparent;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 44px auto 0;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(var(--violet-rgb), 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--violet-rgb), 0.12), transparent 46%),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: rgba(var(--violet-rgb), 0.44);
  background:
    linear-gradient(135deg, rgba(var(--violet-rgb), 0.18), transparent 54%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 52px rgba(var(--violet-rgb), 0.14);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 20px 22px;
  color: #fff;
  font-size: 1rem;
  font-weight: 575;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(var(--violet-rgb), 0.34);
  border-radius: 8px;
  background: rgba(var(--violet-rgb), 0.14);
  content: "+";
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.faq-item[open] summary::after {
  border-color: rgba(var(--violet-rgb), 0.54);
  background: var(--violet);
  content: "-";
  transform: rotate(180deg);
}

.faq-item summary:hover::after,
.faq-item summary:focus-visible::after {
  border-color: rgba(var(--violet-rgb), 0.58);
  background: rgba(var(--violet-rgb), 0.24);
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(var(--violet-rgb), 0.7);
  outline-offset: -2px;
}

.faq-item p {
  max-width: 720px;
  margin: -4px 22px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.plans-section {
  background: transparent;
}

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

.plan-card {
  min-height: 200px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.plan-card.featured {
  background:
    linear-gradient(135deg, rgba(var(--violet-rgb), 0.2), transparent 54%),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(var(--violet-rgb), 0.34);
}

.plan-name {
  margin: 0 0 28px;
  color: var(--violet);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
}

.closing-section {
  flex-direction: column;
  justify-content: center;
  min-height: 78vh;
  text-align: center;
  background:
    radial-gradient(circle at 50% 25%, rgba(var(--violet-rgb), 0.16), transparent 34%);
}

.closing-section h2 {
  max-width: 760px;
}

.closing-section p {
  max-width: 580px;
  margin: 18px auto 32px;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-showcase {
    width: min(1080px, 100%);
    margin-bottom: -52px;
  }

  .sector-intro {
    padding-top: 94px;
  }

  .story-block,
  .story-block.inverted {
    grid-template-columns: 1fr;
  }

  .story-block.inverted .story-media {
    order: 0;
  }

  .story-copy {
    max-width: none;
  }

  .demo-board {
    grid-template-columns: repeat(3, minmax(min(280px, 78vw), 1fr));
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .board-column {
    min-width: min(280px, 78vw);
    scroll-snap-align: start;
  }

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

@media (max-width: 640px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    flex: 0 1 auto;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.86rem;
    text-align: center;
  }

  .hero {
    padding: 76px 16px 0;
  }

  h1 {
    font-size: clamp(2rem, 11.5vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }

  .hero-text {
    font-size: 0.95rem;
  }

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

  .hero-showcase {
    width: 100%;
    margin-top: 36px;
    margin-bottom: -28px;
    margin-left: 0;
    transform: none;
  }

  .dashboard-frame {
    padding: 8px;
  }

  .hero-showcase figcaption {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 12px;
  }

  .hero-showcase figcaption span,
  .signal-strip span {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .sector-intro {
    padding: 66px 16px 18px;
    text-align: left;
  }

  .signal-strip {
    justify-content: flex-start;
    padding-top: 0;
    padding-inline: 16px;
  }

  .story-section,
  .features-section,
  .faq-section,
  .plans-section,
  .closing-section {
    padding-block: 64px;
    padding-inline: 16px;
  }

  .demo-board {
    grid-template-columns: repeat(3, minmax(min(252px, 82vw), 1fr));
    gap: 10px;
    margin-top: 32px;
    min-height: 410px;
    border-radius: 8px;
  }

  .hero-showcase .demo-board {
    margin-top: 0;
    min-height: 390px;
  }

  .board-column {
    min-width: min(252px, 82vw);
    padding-inline: 10px;
  }

  .board-column header {
    margin-inline: -10px;
    padding-inline: 10px;
  }

  .board-column header {
    grid-template-columns: 1fr auto;
  }

  .board-column button {
    grid-column: 1 / 2;
    justify-self: start;
  }

  .count {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }

  .demo-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .fake-avatar {
    width: 34px;
    height: 34px;
  }

  .story-media,
  .dispatch-demo {
    min-height: auto;
  }

  .story-media {
    border-radius: 8px;
  }

  .story-media.image-media,
  .story-block.inverted .story-media.image-media {
    width: min(100%, 420px);
  }

  .dispatch-demo {
    padding: 14px;
  }

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

  .dispatch-modal {
    width: 100%;
  }

  .dispatch-header {
    min-height: 50px;
    padding-inline: 14px;
  }

  .dispatch-body {
    gap: 12px;
    padding: 12px;
  }

  .dispatch-sidebar {
    grid-template-columns: 1fr;
  }

  .message-frame {
    min-height: 210px;
    padding: 52px 12px 14px;
  }

  .message-tag {
    left: 12px;
  }

  .message-bubble {
    padding: 14px;
  }

  .message-bubble p {
    font-size: 0.8rem;
  }

  .dispatch-actions {
    justify-content: stretch;
  }

  .dispatch-actions span {
    min-width: 0;
    flex: 1;
  }

  .kanban-preview div {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .feature-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .plan-card {
    min-height: auto;
    padding: 20px;
  }

  .feature-icon {
    margin-bottom: 26px;
  }

  .closing-section {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .site-header {
    align-items: center;
    padding-inline: 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .header-action {
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .hero,
  .sector-intro,
  .signal-strip,
  .story-section,
  .features-section,
  .faq-section,
  .plans-section,
  .closing-section {
    padding-inline: 12px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 44px;
    padding-inline: 12px;
    white-space: normal;
  }

  .demo-board {
    grid-template-columns: repeat(3, minmax(calc(100vw - 48px), 1fr));
    min-height: 380px;
  }

  .board-column {
    min-width: calc(100vw - 48px);
  }

  .board-column button {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .count {
    min-width: 26px;
    height: 24px;
  }

  .hero-showcase figcaption,
  .signal-strip {
    gap: 6px;
  }

  .hero-showcase figcaption span,
  .signal-strip span {
    font-size: 0.74rem;
  }

  .dispatch-preview {
    padding: 10px;
  }

  .message-frame {
    min-height: 190px;
  }

  .message-bubble p + p {
    margin-top: 10px;
  }
}
