:root {
  --bg: #050203;
  --surface: rgba(254, 254, 254, 0.05);
  --surface-strong: #100d0d;
  --border: rgba(254, 254, 254, 0.1);
  --border-soft: rgba(254, 254, 254, 0.05);
  --text: #fefefe;
  --heading: #fafafc;
  --muted: rgba(254, 254, 254, 0.5);
  --muted-2: #cfcfd6;
  --primary: #6f57f3;
  --accent: #ccff00;
  --radius-lg: 32px;
  --radius-xl: 36px;
  --container: 1360px;
  --font-main: "Poppins", sans-serif;
  --font-ui: "Inter", sans-serif;
  --font-alt: "Manrope", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(111, 87, 243, 0.12), transparent 20%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-main);
}

@keyframes page-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes hero-bg-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: header-drop 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-bg {
    transform-origin: center bottom;
    animation: hero-bg-breathe 18s ease-in-out infinite;
  }

  .hero-copy {
    animation: page-fade-up 760ms cubic-bezier(0.22, 1, 0.36, 1) 140ms both;
  }

  .product-window {
    animation: page-fade-up 840ms cubic-bezier(0.22, 1, 0.36, 1) 280ms both;
  }

  .reveal-ready .reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(8px);
    transition:
      opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  .reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container,
.site-header,
.site-footer {
  width: min(var(--container), calc(100vw - 80px));
  margin-inline: auto;
}

.section {
  position: relative;
}

.audience,
.features,
.communication,
.communication-admin,
.full-list,
.selfhosted,
.money-time,
.pricing,
.faq {
  padding-top: 200px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 24px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 16px 40px;
  border: 1px solid rgba(254, 254, 254, 0.1);
  border-radius: 104px;
  background:
    linear-gradient(180deg, rgba(254, 254, 254, 0.1) 0%, rgba(254, 254, 254, 0.025) 100%),
    rgba(19, 19, 19, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -18px 36px rgba(111, 87, 243, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.brand,
.brand-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-main {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  align-items: center;
  gap: 32px;
}

.brand-name span {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.desktop-nav,
.header-actions,
.hero-actions,
.socials {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 30px;
  color: rgba(254, 254, 254, 0.75);
  font-size: 14px;
  line-height: 20px;
}

.header-actions {
  gap: 16px;
}

.login-link {
  color: rgba(254, 254, 254, 0.75);
  font-size: 14px;
  line-height: 20px;
}

.menu-button {
  display: none;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button img {
  width: 19.5px;
  height: 11.5px;
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 56px;
  padding: 16px 32px;
  border: 1px solid transparent;
  border-radius: 32px;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.button-small {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 20px;
}

.button-primary {
  background: var(--primary);
  color: var(--text);
}

.button-light {
  background: #fefefe;
  color: #131313;
}

.button-ghost {
  border-color: rgba(254, 254, 254, 0.14);
  background: rgba(254, 254, 254, 0.05);
  color: var(--text);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 228px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
}

.hero-top,
.hero-bottom {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  width: 100%;
  justify-items: center;
  text-align: center;
}

.hero-copy h1 {
  width: 100%;
  margin: 0;
  color: var(--heading);
  font-size: 72px;
  font-weight: 500;
  line-height: 80px;
  letter-spacing: -2px;
}

.hero-title-mobile {
  display: none;
}

.hero-title-desktop,
.hero-copy p span {
  display: block;
}

.hero-copy p {
  max-width: 900px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.hero-actions {
  gap: 16px;
  justify-content: center;
  margin-top: 60px;
}

.hero-bottom {
  display: grid;
  gap: 120px;
  margin-top: 200px;
}

.product-window {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(254, 254, 254, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(254, 254, 254, 0.065) 0%, rgba(254, 254, 254, 0.018) 100%),
    rgba(8, 8, 10, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -32px 64px rgba(111, 87, 243, 0.05),
    0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
}

.product-window::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.025) 34%, transparent 58%),
    radial-gradient(62% 90% at 76% 100%, rgba(111, 87, 243, 0.1), transparent 58%);
  content: "";
  pointer-events: none;
}

.window-dots {
  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  height: 10px;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(254, 254, 254, 0.35);
  flex: 0 0 10px;
}

.product-window > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.product-window > img:last-child {
  border-radius: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding: 60px 32px;
}

.stat-item dt {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  min-height: 64px;
  margin-bottom: 32px;
}

.stat-item dt span {
  background: linear-gradient(180deg, #fff 0%, #8e8e99 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 54px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -2px;
}

.stat-item dt b {
  padding-bottom: 6px;
  color: rgba(254, 254, 254, 0.5);
  font-size: 26px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -1.82px;
}

.stat-item dd {
  margin: 0;
  color: rgba(254, 254, 254, 0.5);
  font-size: 14px;
  line-height: 20px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.section-kicker p {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.section-kicker span {
  width: 24px;
  height: 8px;
  border-radius: 65px;
  background: var(--accent);
}

.section-kicker i {
  flex: 1;
  height: 1px;
  background: rgba(254, 254, 254, 0.1);
}

.section-kicker.centered {
  justify-content: center;
}

.section-heading {
  margin-bottom: 24px;
  padding: 32px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 32px;
  padding-bottom: 0;
}

.section-heading h2,
.audience-hero h2,
.communication-hero h2,
.selfhosted-hero h2,
.cta h2 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -2px;
}

.section-heading p,
.audience-hero p,
.communication-hero p,
.selfhosted-hero p,
.cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 670px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.communication-grid {
  display: grid;
  grid-template-columns: 670px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.audience-hero,
.communication-hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.audience-hero {
  position: sticky;
  top: 136px;
  display: flex;
  min-height: 884px;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  background: linear-gradient(180deg, #151515 0%, #100d0d 100%);
}

.audience-hero::before,
.audience-hero::after {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  mix-blend-mode: lighten;
  content: "";
  pointer-events: none;
}

.audience-hero::before {
  background-image: url("assets/audience-hero-bg.png");
  background-position: center center;
  background-size: cover;
  opacity: 0.92;
}

.audience-hero::after {
  background:
    radial-gradient(circle at 76% 63%, rgba(0, 0, 0, 0.22) 0, rgba(0, 0, 0, 0.22) 12%, transparent 24%);
  opacity: 1;
}

.audience-hero::before,
.audience-hero::after {
  z-index: -1;
}

.audience-hero > *,
.communication-hero > *,
.selfhosted-hero > *,
.cta-panel > * {
  position: relative;
  z-index: 1;
}

.audience-copy,
.communication-copy {
  position: relative;
  display: grid;
  gap: 16px;
  width: 400px;
}

.audience-hero h2 {
  width: 445px;
}

.audience-cta {
  width: fit-content;
  min-width: 167px;
  padding: 16px 32px;
  font-weight: 400;
}

.audience-cta img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.audience-cards {
  display: grid;
  gap: 16px;
}

.info-card,
.feature-card,
.communication-card,
.price-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.info-card {
  min-height: 208px;
  padding: 32px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 100px;
  border: 1px solid rgba(254, 254, 254, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(111, 87, 243, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(254, 254, 254, 0.78);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.pill-blue {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(91, 140, 255, 0.1);
}

.pill-violet {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(166, 140, 255, 0.1);
}

.info-card h3,
.feature-card h3,
.communication-card h3,
.selfhosted-grid h3 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.52px;
}

.info-card p,
.feature-card p,
.communication-card p,
.selfhosted-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.features .container {
  padding-top: 32px;
  padding-bottom: 32px;
}

.features .section-kicker {
  margin-bottom: 24px;
}

.feature-card {
  position: relative;
  display: flex;
  width: 440px;
  height: 400px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  overflow: hidden;
  padding: 32px;
}

.feature-art {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 32px;
  width: calc(100% - 64px);
  height: 216px;
  overflow: hidden;
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  margin: 0;
}

.feature-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.28));
}

.feature-card-tasks .feature-art {
  top: 20px;
  left: 32px;
  width: 376px;
  height: 216px;
}

.feature-card-tasks .feature-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.feature-card-tasks h3,
.feature-card-tasks p {
  max-width: 376px;
}

.feature-card-tasks::before {
  position: absolute;
  top: -76px;
  left: -88px;
  z-index: 0;
  width: 248px;
  height: 248px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 87, 243, 0.48), rgba(111, 87, 243, 0.18) 42%, transparent 74%);
  filter: blur(42px);
  opacity: 0.95;
  content: "";
  pointer-events: none;
}

.feature-card-knowledge::before {
  position: absolute;
  right: -88px;
  bottom: -76px;
  z-index: 0;
  width: 248px;
  height: 248px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 87, 243, 0.48), rgba(111, 87, 243, 0.18) 42%, transparent 74%);
  filter: blur(42px);
  opacity: 0.95;
  content: "";
  pointer-events: none;
}

.feature-card-chat::before {
  position: absolute;
  top: -76px;
  left: -88px;
  z-index: 0;
  width: 248px;
  height: 248px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 87, 243, 0.48), rgba(111, 87, 243, 0.18) 42%, transparent 74%);
  filter: blur(42px);
  opacity: 0.95;
  content: "";
  pointer-events: none;
}

.features .section-heading h2 {
  max-width: 620px;
  margin-inline: auto;
}

.features .section-heading p {
  max-width: 740px;
  margin-inline: auto;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.features-button {
  gap: 10px;
  min-height: 60px;
  padding: 16px 20px 16px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.features-button img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.communication-hero {
  position: relative;
  display: flex;
  min-height: 884px;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}

.communication-preview {
  position: absolute;
  left: 32px;
  bottom: 0;
  width: 606px;
  height: 463px;
  overflow: hidden;
  border-radius: 24px;
}

.communication-preview img {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 96%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.communication-cards {
  display: grid;
  grid-template-rows: 228px minmax(0, 1fr);
  gap: 20px;
  height: 884px;
}

.communication-card-chat {
  min-height: 228px;
}

.communication-card-voice {
  min-height: 636px;
}

.communication-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
}

.communication-card .pill {
  margin-bottom: 0;
}

.communication-list {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.communication-list li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.communication-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a68cff;
  content: "";
}

.communication-list strong {
  font-family: var(--font-alt);
  font-weight: 700;
}

.selfhosted-panel {
  overflow: hidden;
  border: 1px solid rgba(254, 254, 254, 0.14);
  border-radius: 32px;
  background: #100d0d;
}

.selfhosted-hero {
  position: relative;
  display: flex;
  height: 650px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(14% 14% at 78.22% 62.99%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(90deg, #100d0d 0%, #100d0d 100%),
    linear-gradient(90deg, #151515 0%, #151515 100%);
  border-radius: 32px 32px 0 0;
}

.selfhosted-hero h2,
.selfhosted-hero p {
  max-width: 466px;
}

.selfhosted-copy {
  display: grid;
  gap: 16px;
  width: 466px;
  max-width: 100%;
}

.selfhosted-cta {
  position: relative;
  z-index: 2;
  width: fit-content;
}

.selfhosted-cta img {
  width: 24px;
  height: 24px;
}

.screen-stack {
  position: absolute;
  top: 141px;
  left: 690px;
  width: 857px;
  height: 546px;
}

.screen-stack span,
.screen-stack img {
  position: absolute;
  width: 743px;
  height: 464px;
  border-radius: 16px;
}

.screen-stack span {
  border: 1px solid rgba(190, 176, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(172, 153, 255, 0.28) 0%, rgba(111, 87, 243, 0.18) 42%, rgba(111, 87, 243, 0.1) 100%),
    rgba(111, 87, 243, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -18px 40px rgba(73, 45, 176, 0.22),
    0 18px 48px rgba(34, 18, 79, 0.18);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.screen-stack span:nth-child(1) {
  top: 0;
  left: 114px;
}

.screen-stack span:nth-child(2) {
  top: 28px;
  left: 76px;
}

.screen-stack span:nth-child(3) {
  top: 56px;
  left: 38px;
}

.screen-stack img {
  top: 82px;
  left: 0;
  object-fit: cover;
}

.selfhosted-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(254, 254, 254, 0.14);
}

.selfhosted-grid article {
  display: flex;
  min-height: 279px;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border-right: 1px solid rgba(254, 254, 254, 0.14);
  border-bottom: 1px solid rgba(254, 254, 254, 0.14);
}

.selfhosted-grid article:nth-child(3n) {
  border-right: 0;
}

.selfhosted-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.selfhosted-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5b5b66;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2px;
}

.selfhosted-grid span::before {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #cf0;
  content: "";
}

.selfhosted-grid h3 {
  margin: 0;
  color: #fafafc;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.52px;
}

.selfhosted-grid p {
  margin: 0;
  color: #8e8e99;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.money-time {
  min-height: 1320px;
  overflow: hidden;
}

.money-time-bg {
  position: absolute;
  inset: 24px 0 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(111, 87, 243, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(5, 2, 3, 0.08) 0%, rgba(5, 2, 3, 0) 14%, rgba(5, 2, 3, 0.18) 100%),
    url("assets/money-time-bg.png") center top / cover no-repeat;
  pointer-events: none;
  opacity: 0.96;
}

.money-time::before,
.money-time::after {
  position: absolute;
  z-index: 0;
  width: 720px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(111, 87, 243, 0.18), transparent 68%);
  opacity: 1;
  pointer-events: none;
  filter: blur(32px);
  content: "";
}

.money-time::before {
  top: 188px;
  left: -120px;
}

.money-time::after {
  right: -148px;
  bottom: 248px;
}

.money-time .container {
  position: relative;
  z-index: 1;
}

.money-time-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0 auto;
  padding-top: 32px;
  text-align: center;
}

.money-time-heading h2 {
  max-width: 920px;
  margin: 0;
  color: var(--heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -2px;
}

.money-time-heading h2 span {
  display: block;
}

.money-time-heading p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.money-time-panel {
  position: relative;
  min-height: 788px;
  margin-top: 48px;
  padding: 0;
  border: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: none;
}

.money-time-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 32px;
  background: #151515 url("assets/money-time-preview-full.png") center / cover no-repeat;
}

.money-time-preview::before {
  content: none;
}

.money-time-screen-backdrop {
  display: none;
}

.money-time-screen {
  display: none;
}

.money-time-screen img {
  display: block;
}

.money-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.money-time-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 32px;
  border: 1px solid rgba(254, 254, 254, 0.05);
  border-radius: 32px;
  background:
    radial-gradient(circle at 72% 0%, rgba(111, 87, 243, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(254, 254, 254, 0.04) 0%, rgba(254, 254, 254, 0.03) 100%),
    rgba(16, 13, 13, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(254, 254, 254, 0.03),
    0 24px 64px rgba(0, 0, 0, 0.14);
}

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

.money-time-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  margin-bottom: 18px;
  border: 1px solid rgba(254, 254, 254, 0.08);
  border-radius: 999px;
  background: rgba(111, 87, 243, 0.05);
  box-shadow: inset 0 1px 0 rgba(254, 254, 254, 0.04);
}

.money-time-icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.money-time-card h3 {
  max-width: 606px;
  margin: 0;
  color: var(--heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.52px;
}

.money-time-card p {
  max-width: 606px;
  margin: 12px 0 0;
  color: #8e8e99;
  font-size: 16px;
  line-height: 24px;
}

.communication-admin {
  min-height: 1262px;
}

.communication-admin .container {
  position: relative;
  z-index: 1;
}

.communication-admin-stack {
  display: grid;
  gap: 20px;
}

.communication-admin-hero {
  position: relative;
  overflow: hidden;
  height: 228px;
  padding: 32px;
  border: 1px solid rgba(254, 254, 254, 0.05);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(16, 13, 13, 0.06) 0%, rgba(16, 13, 13, 0.12) 100%),
    url("assets/communication-admin-hero-bg.png") center/100% 100% no-repeat,
    rgba(16, 13, 13, 0.9);
}

.communication-admin-hero::after {
  content: none;
}

.communication-admin-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 692px;
}

.communication-admin-copy h2 {
  margin: 0;
  color: var(--heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -2px;
}

.communication-admin-copy p {
  margin: 0;
  color: rgba(254, 254, 254, 0.5);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.communication-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.communication-admin-card {
  display: flex;
  min-height: 374px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid rgba(254, 254, 254, 0.05);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(254, 254, 254, 0.04) 0%, rgba(254, 254, 254, 0.03) 100%),
    rgba(16, 13, 13, 0.9);
}

.communication-admin-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.52px;
}

.communication-admin-card p {
  margin: 12px 0 0;
  color: rgba(254, 254, 254, 0.5);
  font-size: 16px;
  line-height: 24px;
}

.communication-admin-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(254, 254, 254, 0.08);
  border-radius: 999px;
  background: rgba(111, 87, 243, 0.05);
  color: rgba(254, 254, 254, 0.75);
  font-size: 16px;
  line-height: 24px;
}

.full-list {
  min-height: auto;
}

.full-list .container {
  position: relative;
  z-index: 1;
}

.full-list .section-kicker {
  margin-bottom: 24px;
}

.full-list-heading {
  display: grid;
  gap: 16px;
  padding: 32px;
  text-align: center;
}

.full-list-heading h2 {
  margin: 0;
  color: var(--heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -2px;
}

.full-list-heading p {
  max-width: none;
  margin: 0 auto;
  color: #8e8e99;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.full-list-heading p span {
  display: block;
}

.full-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.full-list-card {
  position: relative;
  display: flex;
  min-height: 636px;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(254, 254, 254, 0.05);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(254, 254, 254, 0.04) 0%, rgba(254, 254, 254, 0.03) 100%),
    rgba(16, 13, 13, 0.9);
}

.full-list-card::after {
  content: none;
}

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

.full-list-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(254, 254, 254, 0.08);
  border-radius: 999px;
  background: rgba(111, 87, 243, 0.05);
}

.full-list-chip-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 6px;
  background: rgba(254, 254, 254, 0.08);
}

.full-list-chip-icon::before {
  position: absolute;
  inset: 2px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  content: "";
}

.full-list-chip-icon::after {
  content: none;
}

.full-list-chip-icon.icon-tasks::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.4' d='M5.2 4h6.3M5.2 8h6.3M5.2 12h6.3M2.9 4.1h.01M2.9 8.1h.01M2.9 12.1h.01'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-timetracking::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='4.8' stroke='%23FEFEFE' stroke-width='1.4'/%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-width='1.4' d='M8 5.6v2.8l2 1.3'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-panel::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-width='1.4' d='M4 3.5v9M8 3.5v9M12 3.5v9'/%3E%3Ccircle cx='4' cy='6' r='1.1' fill='%23FEFEFE'/%3E%3Ccircle cx='8' cy='10' r='1.1' fill='%23FEFEFE'/%3E%3Ccircle cx='12' cy='7' r='1.1' fill='%23FEFEFE'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-editor::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.4' d='M3.6 11.8l.3-2.2 5.8-5.8a1.4 1.4 0 1 1 2 2l-5.8 5.8-2.3.2Z'/%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-width='1.4' d='M8.7 4.8l2.5 2.5'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-comments::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23FEFEFE' stroke-linejoin='round' stroke-width='1.4' d='M3.3 4.2h9.4a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H7.4l-2.8 2v-2H3.3a1 1 0 0 1-1-1v-5a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-projects::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23FEFEFE' stroke-linejoin='round' stroke-width='1.4' d='M2.8 5.3h3.3l1.1 1.3h6c.44 0 .8.36.8.8v4.5c0 .44-.36.8-.8.8H2.8c-.44 0-.8-.36-.8-.8V6.1c0-.44.36-.8.8-.8Z'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-wiki::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23FEFEFE' stroke-linejoin='round' stroke-width='1.4' d='M4.2 3.2h6.1a1 1 0 0 1 1 1v8.6H5.3a1.8 1.8 0 0 0-1.8-1.8V4.9a1.7 1.7 0 0 1 1.7-1.7Z'/%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-width='1.4' d='M5.8 6.3h3.4M5.8 8.6h3.4'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-planning::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Crect x='2.4' y='3.4' width='11.2' height='10.2' rx='1.2' stroke='%23FEFEFE' stroke-width='1.4'/%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-width='1.4' d='M5.2 2.6v2M10.8 2.6v2M2.8 6.4h10.4'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-schedule::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Crect x='2.4' y='3.4' width='11.2' height='10.2' rx='1.2' stroke='%23FEFEFE' stroke-width='1.4'/%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-width='1.4' d='M5.2 2.6v2M10.8 2.6v2M2.8 6.4h10.4M8 8.2v2.1l1.6.9'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-reports::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-width='1.4' d='M3 12.5h10'/%3E%3Crect x='4' y='8.4' width='1.8' height='3.1' rx='.4' fill='%23FEFEFE'/%3E%3Crect x='7.1' y='6.4' width='1.8' height='5.1' rx='.4' fill='%23FEFEFE'/%3E%3Crect x='10.2' y='4.4' width='1.8' height='7.1' rx='.4' fill='%23FEFEFE'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-admin::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23FEFEFE' stroke-linejoin='round' stroke-width='1.4' d='M8 2.8 12 4v3.4c0 2.4-1.4 4.1-4 5.8-2.6-1.7-4-3.4-4-5.8V4l4-1.2Z'/%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-width='1.4' d='M6.4 8.1 7.5 9.2l2.2-2.4'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-changelog::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23FEFEFE' stroke-linejoin='round' stroke-width='1.4' d='M3.2 11.8V4.2a1 1 0 0 1 1-1h5.2l3.4 3.4v5.2a1 1 0 0 1-1 1H4.2a1 1 0 0 1-1-1Z'/%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-width='1.4' d='M9.2 3.4v3h3'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-health::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.4' d='M2.4 8h2.1l1.3-2.3 2.4 4.6 1.6-3h3.8'/%3E%3C/svg%3E");
}

.full-list-chip-icon.icon-profile-api::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Ccircle cx='6.3' cy='5.6' r='2.1' stroke='%23FEFEFE' stroke-width='1.4'/%3E%3Cpath stroke='%23FEFEFE' stroke-linecap='round' stroke-width='1.4' d='M2.9 12c.7-1.7 2-2.6 3.4-2.6S9 10.3 9.7 12M10.1 8.4h2.8M11.5 7v2.8M10.5 10.8l2-2'/%3E%3C/svg%3E");
}

.full-list-chip b {
  color: rgba(254, 254, 254, 0.75);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: none;
}

.full-list-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.52px;
}

.full-list-card ul {
  display: grid;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.full-list-card li {
  position: relative;
  padding-left: 17px;
  color: rgba(254, 254, 254, 0.5);
  font-size: 16px;
  line-height: 24px;
}

.full-list-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 2.5px;
  background: var(--primary);
  content: "";
}

.full-list-card.accent-purple li::before {
  background: #6f57f3;
}

.full-list-card.accent-amber li::before {
  background: #f59e0b;
}

.full-list-card.accent-orange li::before {
  background: #fb5916;
}

.full-list-card.accent-sky li::before {
  background: #38aef7;
}

.full-list-card.accent-red li::before {
  background: #fb1616;
}

.full-list-card.accent-green li::before {
  background: #059669;
}

.full-list-card.accent-deep li::before {
  background: #513acf;
}

.pricing {
  min-height: 1567px;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pricing-bg img {
  position: absolute;
  top: 180px;
  left: 0;
  width: 100%;
  height: calc(100% - 180px);
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.pricing-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 2, 3, 0.12) 0%, rgba(5, 2, 3, 0) 22%, rgba(5, 2, 3, 0.1) 100%);
  content: "";
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing .section-kicker {
  margin-bottom: 24px;
}

.pricing .section-heading {
  padding: 32px;
}

.pricing .section-heading p {
  max-width: none;
}

.pricing .section-heading p span {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: grid;
  height: 680px;
  align-content: start;
  gap: 32px;
  padding: 32px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(254, 254, 254, 0.08);
  background:
    linear-gradient(180deg, rgba(254, 254, 254, 0.08) 0%, rgba(254, 254, 254, 0.03) 100%),
    rgba(254, 254, 254, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -24px 48px rgba(81, 58, 207, 0.08);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.price-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.price-card-starter::before {
  background: none;
}

.price-card-enterprise::before {
  background: none;
}

.price-card-starter,
.price-card-enterprise {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-card-accent {
  border: 3px solid #6f57f3;
  background:
    linear-gradient(180deg, rgba(254, 254, 254, 0.1) 0%, rgba(254, 254, 254, 0.03) 100%),
    radial-gradient(61.1% 44.11% at 50% 48%, rgba(0, 0, 0, 0.84) 0%, rgba(7, 5, 15, 0.86) 6.25%, rgba(14, 11, 30, 0.88) 12.5%, rgba(24, 19, 51, 0.9) 25%, rgba(35, 28, 74, 0.92) 37.5%, rgba(47, 38, 101, 0.94) 50%, rgba(67, 53, 146, 0.96) 75%, rgba(95, 74, 214, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -22px 48px rgba(65, 49, 145, 0.22),
    0 16px 40px rgba(40, 28, 95, 0.18);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.price-dot {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(254, 254, 254, 0.4);
  border-radius: 50%;
}

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

.price-card-top {
  display: grid;
  grid-template-rows: 24px minmax(60px, auto) minmax(64px, auto) 56px;
  align-content: start;
  gap: 32px;
  width: 100%;
}

.price-copy {
  display: grid;
  gap: 8px;
  width: 100%;
  align-content: start;
}

.price-card-bottom {
  display: grid;
  align-content: start;
  gap: 16px;
  width: 100%;
}

.price-card h3 {
  margin: 0;
  color: #fefefe;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.52px;
}

.price-copy p {
  margin: 0;
  color: rgba(254, 254, 254, 0.75);
  font-size: 14px;
  line-height: 20px;
}

.price {
  display: flex;
  align-items: flex-end;
  align-self: stretch;
  gap: 6px;
  width: 100%;
}

.price strong {
  color: #fafafc;
  font-family: var(--font-alt);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1.4px;
}

.price span {
  color: #8e8e99;
  font-family: var(--font-alt);
  font-size: 14.5px;
  line-height: 22.48px;
  letter-spacing: -0.08px;
}

.price.enterprise strong {
  font-family: var(--font-alt);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1.4px;
}

.price.enterprise span {
  font-family: var(--font-alt);
  font-size: 14.5px;
  line-height: 22.48px;
  letter-spacing: -0.08px;
}

.price-card-enterprise .price {
  min-height: 64px;
}

.price-card h4 {
  margin: 0;
  color: #fefefe;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #cfcfd6;
  font-size: 14px;
  line-height: 20px;
}

.price-card li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-card li::before {
  width: 20px;
  height: 20px;
  background-image: url("assets/price-check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  flex: 0 0 auto;
}

.price-button {
  gap: 4px;
  min-height: 56px;
  padding: 16px 32px;
}

.button-ghost.price-button {
  border-color: #6f57f3;
  background: transparent;
}

.button-ghost.price-button img {
  filter: invert(1);
}

.price-button img {
  width: 24px;
  height: 24px;
}

.price-card-starter .price-button,
.price-card-enterprise .price-button {
  color: #fefefe;
}

.price-card-agency .price-button {
  color: #131313;
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  color: var(--heading);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 32px;
  cursor: pointer;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.52px;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -16px 32px 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

/* FAQ overrides for Figma node 114:5174 */
.faq {
  padding-top: 0;
}

.faq .container {
  display: grid;
}

.faq .section-kicker {
  margin-bottom: 32px;
}

.faq .section-heading.compact {
  width: 671px;
  max-width: 100%;
  margin: 0 auto 32px;
  padding: 0 32px;
}

.faq .section-heading.compact h2 {
  width: 100%;
  margin: 0;
  text-align: center;
}

.faq-list details {
  overflow: hidden;
  border-bottom-color: rgba(254, 254, 254, 0.25);
  color: #fafafc;
}

.faq-list summary {
  min-height: 96px;
  padding: 32px;
  align-items: flex-start;
  color: #fafafc;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.52px;
}

.faq-list summary::after,
.faq-list details[open] summary::after {
  content: none;
}

.faq-list summary > span:first-child {
  flex: 1 0 0;
  min-width: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  padding: 0 32px;
  transition: max-height 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details[open] .faq-answer {
  max-height: 720px;
}

.faq-answer p {
  margin: 0 0 32px;
  color: #8e8e99;
  font-size: 16px;
  line-height: 24px;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details[open] .faq-answer p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 60ms;
}

.faq-list details:not([open]) .faq-answer p {
  transition-delay: 0ms;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-left: 24px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: #fefefe;
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
  content: "";
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-list details[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-list p {
  color: #8e8e99;
}

.cta {
  padding-top: 200px;
  padding-bottom: 200px;
}

.cta-panel {
  position: relative;
  display: grid;
  gap: 24px;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 1360px;
  min-height: 448px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #100d0d;
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("assets/cta-panel-bg.png");
  background-position: center bottom;
  background-size: cover;
  content: "";
  opacity: 0.44;
}

.cta .section-kicker {
  width: 100%;
  margin-bottom: 0;
}

.cta .section-kicker i {
  background: rgba(254, 254, 254, 0.08);
}

.cta .section-heading {
  display: grid;
  gap: 16px;
  margin: 0;
  width: 100%;
  padding: 32px;
}

.cta .section-heading h2,
.cta .section-heading p {
  width: 100%;
  text-align: center;
}

.cta .section-heading h2 {
  margin: 0;
  color: #fafafc;
  font-size: 44px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -2px;
}

.cta .section-heading h2 span,
.cta .section-heading p span {
  display: block;
}

.cta .section-heading p {
  margin: 0;
  color: #cfcfd6;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.cta .section-heading.centered {
  max-width: none;
}

.cta .hero-actions {
  margin-top: 0;
  gap: 16px;
}

.cta .hero-actions .button {
  min-height: 54px;
  padding: 16px 32px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.cta .hero-actions .button-ghost {
  border-color: #6f57f3;
  background: transparent;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 322px;
  padding: 60px 0;
  border-top: 1px solid rgba(254, 254, 254, 0.1);
}

.footer-brand {
  display: flex;
  width: 368px;
  height: 226px;
  flex-direction: column;
  justify-content: space-between;
}

.footer-brand-copy {
  display: grid;
  gap: 12px;
  width: 100%;
}

.footer-brand-head,
.footer-brand-text {
  width: 100%;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.footer-brand small {
  color: #5b5b66;
  font-family: var(--font-alt);
  font-size: 13px;
  line-height: 20.8px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 146px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 28px;
}

.footer-nav {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.footer-column-product {
  width: 101px;
}

.footer-column-socials {
  width: 126px;
}

.footer-links h2 {
  margin: 0;
  color: #5b5b66;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 2px;
}

.footer-links a {
  color: rgba(254, 254, 254, 0.75);
  font-size: 14px;
  line-height: 20px;
}

.footer-nav a {
  width: max-content;
}

.socials {
  gap: 15px;
}

.socials a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.socials img {
  display: block;
  width: 32px;
  height: 32px;
}

@media (hover: hover) and (pointer: fine) {
  .button,
  .desktop-nav a,
  .login-link,
  .footer-links a,
  .socials a,
  .menu-button,
  .faq-list summary,
  .info-card,
  .feature-card,
  .communication-card,
  .communication-admin-card,
  .full-list-card,
  .money-time-card,
  .price-card,
  .selfhosted-grid article {
    transition:
      transform 220ms ease,
      border-color 220ms ease,
      background-color 220ms ease,
      color 220ms ease,
      opacity 220ms ease,
      box-shadow 220ms ease,
      filter 220ms ease;
  }

  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(111, 87, 243, 0.24);
  }

  .button-primary:hover {
    background: #7b64ff;
  }

  .button-light:hover {
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(254, 254, 254, 0.16);
  }

  .button-ghost:hover {
    border-color: rgba(111, 87, 243, 0.8);
    background: rgba(111, 87, 243, 0.1);
  }

  .desktop-nav a:hover,
  .login-link:hover,
  .footer-links a:hover {
    color: #fefefe;
  }

  .socials a:hover,
  .menu-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.18);
  }

  .faq-list summary:hover {
    color: #fefefe;
  }

  .faq-list summary:hover .faq-icon {
    transform: rotate(90deg);
  }

  .info-card:hover,
  .feature-card:hover,
  .communication-card:hover,
  .communication-admin-card:hover,
  .full-list-card:hover,
  .money-time-card:hover,
  .price-card:hover,
  .selfhosted-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(254, 254, 254, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 18px 44px rgba(0, 0, 0, 0.18);
  }

  .price-card-accent:hover {
    border-color: #8c77ff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 20px 52px rgba(111, 87, 243, 0.24);
  }
}

.button:focus-visible,
.desktop-nav a:focus-visible,
.login-link:focus-visible,
.footer-links a:focus-visible,
.socials a:focus-visible,
.menu-button:focus-visible,
.faq-list summary:focus-visible {
  outline: 2px solid rgba(204, 255, 0, 0.9);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .container,
  .site-header,
  .site-footer {
    width: calc(100vw - 48px);
  }

  .audience,
  .features,
  .communication,
  .communication-admin,
  .selfhosted,
  .money-time,
  .pricing,
  .faq {
    padding-top: 60px;
  }

  .site-header {
    top: 16px;
    min-height: 72px;
    padding: 16px 24px;
    border-color: rgba(254, 254, 254, 0.14);
    background: rgba(19, 19, 19, 0.1);
    border-radius: 32px;
  }

  .desktop-nav,
  .login-link {
    display: none;
  }

  .header-main {
    gap: 0;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(254, 254, 254, 0.12);
    border-radius: 24px;
    background: rgba(19, 19, 19, 0.92);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .hero {
    padding-top: 152px;
  }

  .hero-top {
    padding-inline: 24px;
  }

  .hero-copy h1 {
    max-width: 411px;
    font-size: 48px;
    line-height: 56px;
  }

  .hero-title-desktop {
    display: none !important;
  }

  .hero-title-mobile {
    display: block !important;
  }

  .hero-copy p {
    max-width: 411px;
    margin-top: 32px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }

  .hero-copy p span {
    display: inline;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 60px;
  }

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

  .site-footer {
    width: calc(100vw - 48px);
    margin-inline: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    padding: 64px 24px;
    border-top: none;
    background: #131313;
  }

  .footer-brand {
    width: 368px;
    max-width: 100%;
    height: auto;
    justify-content: flex-start;
  }

  .footer-brand small {
    margin-top: 64px;
  }

  .footer-links {
    flex-direction: column;
    gap: 60px;
  }

  .footer-column {
    width: auto;
    gap: 28px;
  }

  .hero-bottom {
    gap: 80px;
    margin-top: 80px;
    padding-inline: 24px;
  }

  .product-window {
    padding: 24px;
    border-radius: var(--radius-lg);
  }

  .stats-grid,
  .audience-grid,
  .communication-grid,
  .communication-admin-grid,
  .selfhosted-grid,
  .money-time-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 48px;
    padding: 32px 0;
  }

  .section-kicker {
    gap: 16px;
    margin-bottom: 24px;
  }

  .section-heading {
    padding: 32px 0;
  }

  .section-heading h2,
  .audience-hero h2,
  .communication-hero h2,
  .selfhosted-hero h2,
  .cta h2 {
    font-size: 34px;
    line-height: 44px;
  }

  .section-heading p,
  .audience-hero p,
  .communication-hero p,
  .selfhosted-hero p,
  .cta p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  .audience-hero,
  .communication-hero {
    min-height: auto;
    padding: 24px;
  }

  .audience-hero {
    position: relative;
    top: auto;
    min-height: 580px;
    padding: 32px;
    justify-content: space-between;
  }

  .audience-hero::before {
    background-position: center center;
    background-size: cover;
  }

  .audience-hero::after {
    background:
      radial-gradient(circle at 76% 63%, rgba(0, 0, 0, 0.22) 0, rgba(0, 0, 0, 0.22) 12%, transparent 24%);
  }

  .audience-copy,
  .communication-copy,
  .audience-hero h2,
  .audience-hero p,
  .communication-hero h2,
  .communication-hero p {
    width: 100%;
    max-width: none;
  }

  .audience-cta,
  .features .button-light,
  .pricing .button {
    width: 100%;
    justify-content: center;
  }

  .info-card {
    min-height: auto;
    padding: 32px;
  }

  .info-card:nth-child(1),
  .info-card:nth-child(2),
  .info-card:nth-child(4) {
    min-height: 264px;
  }

  .info-card:nth-child(3) {
    min-height: 216px;
  }

  .info-card h3,
  .communication-card h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0;
  }

  .info-card p,
  .communication-card p,
  .communication-list li {
    font-size: 14px;
    line-height: 20px;
  }

  .feature-card {
    width: 100%;
    height: 366px;
    padding: 24px;
  }

  .feature-art {
    left: 24px;
    width: calc(100% - 48px);
    height: 202px;
  }

  .feature-card-tasks .feature-art {
    left: 24px;
    width: calc(100% - 48px);
    height: 202px;
  }

  .feature-card-tasks .feature-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left top;
  }

  .feature-card-tasks h3,
  .feature-card-tasks p {
    max-width: none;
  }


  .features .section-heading h2,
  .features .section-heading p {
    max-width: 400px;
  }

  .features .center-action {
    margin-top: 48px;
  }

  .features-button {
    min-height: 56px;
    padding: 16px 20px;
    gap: 8px;
  }

  .communication-hero {
    min-height: 580px;
    padding: 32px 32px 0;
    gap: 24px;
    justify-content: space-between;
  }

  .communication-preview {
    position: relative;
    left: auto;
    bottom: auto;
    width: 352px;
    height: 283px;
    max-width: 100%;
    margin-top: auto;
    margin-bottom: -32px;
  }

  .communication-preview img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    transform: translateX(-50%);
  }

  .communication-cards {
    height: auto;
    grid-template-rows: none;
    gap: 16px;
  }

  .communication-card {
    padding: 32px;
  }

  .communication-card-chat,
  .communication-card-voice {
    min-height: auto;
  }

  .communication-list {
    gap: 24px;
  }

  .communication-list li {
    padding-left: 14px;
  }

  .communication-list li::before {
    top: 7px;
  }

  .selfhosted-hero {
    height: auto;
    min-height: 650px;
  }

  .screen-stack {
    left: -35px;
    right: auto;
    bottom: 10px;
    top: auto;
    width: 420px;
    height: 250px;
  }

  .screen-stack span,
  .screen-stack img {
    width: 354px;
    height: 221px;
  }

  .screen-stack span:nth-child(1) {
    top: -40px;
    left: 70px;
  }

  .screen-stack span:nth-child(2) {
    top: -26px;
    left: 52px;
  }

  .screen-stack span:nth-child(3) {
    top: -12px;
    left: 34px;
  }

  .screen-stack img {
    top: 0;
    left: 20px;
  }

  .selfhosted-grid article,
  .selfhosted-grid article:nth-child(3n),
  .selfhosted-grid article:nth-last-child(-n + 3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .selfhosted-grid article:last-child {
    border-bottom: 0;
  }

  .pricing {
    min-height: auto;
  }

  .pricing .section-heading p span {
    display: inline;
  }

  .money-time {
    min-height: auto;
  }

  .communication-admin {
    min-height: auto;
  }

  .full-list {
    min-height: auto;
  }

  .full-list-heading {
    gap: 12px;
    padding: 32px 0;
  }

  .full-list-heading h2 {
    font-size: 34px;
    line-height: 44px;
  }

  .full-list-heading p {
    max-width: 360px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  .full-list-heading p span {
    display: inline;
  }

  .full-list-card {
    min-height: auto;
    gap: 18px;
    padding: 32px;
    border-radius: 32px;
  }

  .full-list-card h3 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.52px;
  }

  .full-list-card li {
    font-size: 16px;
    line-height: 24px;
  }

  .full-list-chip {
    min-height: 36px;
    padding: 8px 13px;
  }

  .communication-admin-hero,
  .communication-admin-card {
    height: auto;
    min-height: auto;
    padding: 24px;
    border-radius: 28px;
  }

  .communication-admin-copy {
    max-width: none;
    gap: 12px;
  }

  .communication-admin-hero::after {
    top: -176px;
    left: auto;
    right: -188px;
    width: 620px;
    height: 500px;
    background-size: contain;
  }

  .communication-admin-copy h2 {
    font-size: 34px;
    line-height: 44px;
  }

  .communication-admin-copy p,
  .communication-admin-card p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  .communication-admin-grid {
    gap: 16px;
  }

  .communication-admin-card span {
    min-height: 36px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 20px;
  }

  .money-time::before,
  .money-time::after {
    width: 460px;
    height: 300px;
    filter: blur(26px);
  }

  .money-time::before {
    top: 154px;
    left: -172px;
  }

  .money-time::after {
    right: -156px;
    bottom: 228px;
  }

  .money-time-bg {
    inset: 88px 0 0;
    background-position: center 0;
  }

  .money-time-heading {
    gap: 12px;
    padding-top: 24px;
  }

  .money-time-heading h2 {
    max-width: 360px;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -1.2px;
  }

  .money-time-heading p {
    max-width: 352px;
    font-size: 16px;
    line-height: 24px;
  }

  .money-time-panel {
    min-height: 322px;
    margin-top: 32px;
    padding: 0;
    border-radius: 28px;
  }

  .money-time-preview {
    inset: 0;
    border-radius: 28px;
  }

  .money-time-preview::before {
    background-position: center;
  }

  .money-time-screen {
    display: none;
  }

  .money-time-grid {
    gap: 16px;
    margin-top: 16px;
  }

  .money-time-card {
    min-height: auto;
    padding: 20px;
    border-radius: 24px;
  }

  .money-time-icon {
    margin-bottom: 28px;
  }

  .money-time-card h3 {
    max-width: none;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.52px;
  }

  .money-time-card p {
    max-width: none;
  }

  .price-card {
    min-height: auto;
  }

  .price strong {
    font-size: 44px;
    line-height: 52px;
  }

  .faq-list summary {
    min-height: 92px;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    font-size: 20px;
    line-height: 28px;
  }

  .faq .section-heading.compact {
    width: 100%;
    margin-inline: auto;
    padding: 0;
  }

  .faq-answer {
    padding: 0;
  }

  .faq-answer p {
    margin: 0 0 24px;
  }

  .cta-panel {
    min-height: 562px;
  }

  .site-footer {
    flex-direction: column;
    gap: 64px;
    padding: 64px 0;
  }

  .footer-brand {
    width: 100%;
    min-height: auto;
    gap: 12px;
  }

  .footer-brand small {
    order: 10;
    margin-top: 64px;
  }

  .footer-links {
    flex-direction: column;
    gap: 60px;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .container,
  .site-header,
  .site-footer {
    width: min(1120px, calc(100vw - 64px));
  }

  .hero {
    padding-top: 196px;
  }

  .hero-copy h1 {
    font-size: 64px;
    line-height: 72px;
  }

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

  .hero-bottom {
    gap: 96px;
    margin-top: 140px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 32px;
    padding-inline: 24px;
  }

  .communication-grid {
    grid-template-columns: minmax(520px, 670px) minmax(0, 1fr);
  }

  .communication-hero {
    min-height: 760px;
  }

  .communication-preview {
    width: 100%;
    max-width: 606px;
  }

  .communication-cards {
    grid-template-rows: 240px 500px;
  }

  .communication-admin-copy {
    max-width: 620px;
  }

  .communication-admin-hero {
    height: 228px;
  }

  .selfhosted-hero {
    height: 620px;
  }

  .selfhosted-copy {
    width: 420px;
  }

  .screen-stack {
    top: 210px;
    left: 510px;
    width: 620px;
    height: 396px;
  }

  .screen-stack span,
  .screen-stack img {
    width: 540px;
    height: 338px;
  }

  .screen-stack span:nth-child(1) {
    left: 80px;
  }

  .screen-stack span:nth-child(2) {
    left: 53px;
  }

  .screen-stack span:nth-child(3) {
    left: 26px;
  }

  .screen-stack img {
    top: 80px;
  }

  .selfhosted-grid article {
    min-height: 250px;
  }

  .communication-admin-copy h2 {
    font-size: 40px;
    line-height: 56px;
  }

  .full-list-heading h2 {
    font-size: 40px;
    line-height: 56px;
  }

  .full-list-heading p {
    max-width: 760px;
  }

  .full-list-card {
    min-height: 580px;
  }

  .money-time-heading h2 {
    max-width: 920px;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -1.6px;
  }

  .money-time-heading p {
    max-width: 680px;
    font-size: 17px;
    line-height: 26px;
  }

  .money-time-panel {
    min-height: 660px;
    padding: 0;
  }

  .money-time-preview {
    inset: 0;
  }

  .money-time-preview::before {
    background-position: center;
  }

  .money-time-screen {
    display: none;
  }

  .money-time-card h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .communication-grid {
    grid-template-columns: 1fr;
  }

  .communication-hero,
  .communication-cards {
    min-height: auto;
    height: auto;
  }

  .communication-hero {
    gap: 32px;
  }

  .communication-copy,
  .communication-hero h2,
  .communication-hero p {
    width: 100%;
    max-width: none;
  }

  .communication-preview {
    width: min(606px, 100%);
    height: auto;
    margin-bottom: 0;
  }

  .communication-preview img {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 670px;
    transform: none;
  }

  .communication-cards {
    grid-template-rows: none;
  }

  .communication-card-chat,
  .communication-card-voice {
    min-height: auto;
  }

  .communication-admin-grid {
    grid-template-columns: 1fr;
  }

  .full-list-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .communication-admin-card {
    min-height: 280px;
  }

  .full-list-card {
    min-height: auto;
    width: 100%;
  }

  .money-time-panel {
    min-height: 560px;
    padding: 0;
  }

  .money-time-preview {
    inset: 0;
  }

  .money-time-screen {
    display: none;
  }

  .money-time-card {
    min-height: 220px;
  }
}
