:root {
  --navy: #111a30;
  --navy-2: #16203b;
  --navy-3: #202c4d;
  --blue: #4d7cf4;
  --blue-deep: #2f63ec;
  --teal: #30a7d8;
  --green: #2ec86f;
  --sky: #f7faff;
  --sky-2: #eef4ff;
  --paper: #ffffff;
  --text: #151d31;
  --muted: #66728f;
  --text-on-dark: #f5f8ff;
  --muted-on-dark: #a8b4cf;
  --line-light: rgba(17, 26, 48, 0.1);
  --line-dark: rgba(245, 248, 255, 0.1);
  --shadow-soft: 0 28px 80px rgba(30, 54, 108, 0.1);
  --shadow-deep: 0 40px 100px rgba(6, 10, 21, 0.34);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: min(1220px, calc(100vw - 2rem));
  --gradient: linear-gradient(135deg, var(--blue) 0%, var(--teal) 48%, var(--green) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  background: var(--sky);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 78%, white);
  outline-offset: 3px;
}

.numeric {
  font-family: "IBM Plex Mono", monospace;
  font-variant-numeric: tabular-nums;
}

.shell {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 26, 48, 0.05);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(17, 26, 48, 0.08);
}

.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
}

.brand-wordmark {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--navy);
  white-space: nowrap;
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 2.1rem;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: auto;
  padding: 0.45rem 0;
  border-radius: 0;
  color: rgba(17, 26, 48, 0.8);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: transparent;
  color: var(--navy);
}

.site-nav .button--mobile {
  display: none;
}

.site-nav .button,
.site-nav .button:hover,
.site-nav .button:focus-visible {
  background: var(--gradient);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 26, 48, 0.08);
  background: var(--paper);
  gap: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 18px;
  background: var(--gradient);
  color: var(--paper);
  font-weight: 900;
  letter-spacing: -0.01em;
  box-shadow: 0 20px 40px rgba(77, 124, 244, 0.24);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 48px rgba(77, 124, 244, 0.28);
  filter: saturate(1.06);
}

.button--header {
  min-height: 3.25rem;
  padding: 0.78rem 1.35rem;
  border-radius: 16px;
  background: rgba(17, 26, 48, 0.05);
  border-color: rgba(17, 26, 48, 0.04);
  color: var(--navy);
  box-shadow: none;
}

.button--header:hover,
.button--header:focus-visible {
  box-shadow: 0 16px 30px rgba(17, 26, 48, 0.08);
  filter: none;
}

.button--mobile {
  display: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  color: var(--navy);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-deep);
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.eyebrow {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3rem, 6.6vw, 5.35rem);
}

h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p,
li {
  max-width: 64ch;
}

.hero {
  padding-top: clamp(1.9rem, 5vw, 3.5rem);
  padding-bottom: clamp(6rem, 11vw, 9rem);
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 244, 255, 0.98)),
    var(--sky);
}

.hero-pattern,
.section-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-pattern {
  background:
    radial-gradient(circle at 68% 42%, rgba(77, 124, 244, 0.16), transparent 24rem),
    radial-gradient(circle at 42% 72%, rgba(48, 167, 216, 0.1), transparent 26rem),
    url("hero-orbit-light.svg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, center bottom;
  background-size: auto, auto, cover;
  opacity: 0.98;
}

.hero-layout {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 26, 48, 0.08);
  box-shadow: 0 16px 34px rgba(17, 26, 48, 0.07);
}

.meta-pill img {
  width: auto;
  height: 1.25rem;
}

.hero h1 {
  max-width: 14.5ch;
  line-height: 0.9;
  text-wrap: balance;
  color: var(--navy);
}

.hero h1 span {
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0;
  max-width: 45rem;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.2rem;
  margin-top: 0.1rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  width: auto;
  margin-top: 0.6rem;
}

.hero-highlights article {
  min-width: 12.75rem;
  padding: 0.95rem 1.1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8)),
    var(--paper);
  border: 1px solid rgba(17, 26, 48, 0.08);
  box-shadow: 0 16px 34px rgba(30, 54, 108, 0.08);
  text-align: left;
}

.hero-highlights strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
}

.hero-highlights span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  max-width: 1120px;
  margin: clamp(2.3rem, 5vw, 3.5rem) auto 0;
  padding-top: 5.5rem;
}

.merge-arena {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4rem;
}

.channel-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.48rem 0.92rem 0.48rem 0.56rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 26, 48, 0.07);
  box-shadow: 0 18px 36px rgba(17, 26, 48, 0.1);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.channel-chip img,
.queue-label img,
.logo-chip img {
  width: 1.9rem;
  height: 1.9rem;
  object-fit: cover;
  padding: 0;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid rgba(17, 26, 48, 0.08);
  box-shadow: 0 8px 16px rgba(17, 26, 48, 0.08);
}

.chip--ml {
  left: 8%;
  top: 0.8rem;
}

.chip--meta {
  left: 50%;
  top: -0.2rem;
  transform: translateX(-50%);
}

.chip--ig {
  right: 8%;
  top: 0.9rem;
}

.hero-device {
  position: relative;
  padding: 1.25rem;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(77, 124, 244, 0.1);
  box-shadow: 0 44px 90px rgba(24, 45, 98, 0.16);
}

.hero-device__glow {
  position: absolute;
  inset: 12% 18% auto 18%;
  height: 16rem;
  background: radial-gradient(circle, rgba(77, 124, 244, 0.22), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.mock-window {
  position: relative;
  background:
    linear-gradient(180deg, rgba(19, 28, 48, 0.98), rgba(11, 17, 31, 1)),
    var(--navy);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
}

.mock-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(77, 124, 244, 0.08), transparent 24%),
    url("hero-orbit-dark.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center center;
  background-size: auto, cover;
  opacity: 0.74;
  pointer-events: none;
}

.mock-window__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.05rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 248, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-window__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
}

.queue-panel,
.thread-panel {
  padding: 1.15rem;
}

.queue-panel {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 0.9rem;
}

.queue-row,
.stage-row,
.feature-card,
.stat-card,
.compare-card,
.process-list li {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.queue-row {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.queue-row.is-active {
  border-color: rgba(77, 124, 244, 0.36);
  background: rgba(77, 124, 244, 0.12);
}

.queue-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: rgba(245, 248, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.queue-row strong {
  color: var(--text-on-dark);
  font-size: 1rem;
  font-weight: 800;
}

.queue-row small {
  color: rgba(245, 248, 255, 0.46);
}

.thread-panel {
  display: grid;
  gap: 1rem;
}

.thread-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.thread-channel,
.thread-status {
  margin: 0;
  font-size: 0.88rem;
}

.thread-channel {
  color: rgba(48, 200, 111, 0.92);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thread-status {
  color: rgba(245, 248, 255, 0.68);
}

.message-stack {
  display: grid;
  gap: 0.8rem;
}

.message-bubble {
  max-width: 22rem;
  width: fit-content;
  padding: 0.9rem 1rem;
  border-radius: 22px 22px 22px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  font-size: 1rem;
  font-weight: 700;
}

.message-bubble--reply {
  justify-self: end;
  border-radius: 22px 22px 8px 22px;
  background: rgba(77, 124, 244, 0.16);
}

.message-note {
  padding: 1rem;
  border-radius: 22px;
  border: 1px dashed rgba(48, 167, 216, 0.32);
  color: rgba(245, 248, 255, 0.72);
}

.section--dark {
  background:
    radial-gradient(circle at 78% 18%, rgba(77, 124, 244, 0.12), transparent 22rem),
    radial-gradient(circle at 20% 100%, rgba(46, 200, 111, 0.08), transparent 20rem),
    var(--navy);
  color: var(--text-on-dark);
  overflow: clip;
}

.section-pattern {
  background-image: url("hero-orbit-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.24;
}

.section-pattern--soft {
  opacity: 0.18;
}

.section-pattern--price {
  opacity: 0.22;
}

.organization-grid,
.pricing-grid,
.faq-grid,
.dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section-copy,
.section-heading {
  display: grid;
  gap: 1rem;
}

.section-copy p:last-of-type,
.section-heading p:last-of-type,
.pricing-copy p:last-of-type {
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 1.05rem;
}

.section-heading--center {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}

.section-heading--center .eyebrow {
  width: fit-content;
  margin-inline: auto;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.live-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(77, 124, 244, 0.22);
  background:
    linear-gradient(180deg, rgba(77, 124, 244, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(6, 10, 21, 0.2);
}

.live-strip__dot {
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0.35rem rgba(46, 200, 111, 0.18);
}

.live-strip strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text-on-dark);
}

.live-strip p {
  margin: 0.35rem 0 0;
  color: var(--muted-on-dark);
}

.process-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.process-list li:hover,
.compare-card:hover,
.feature-card:hover,
.stage-row:hover,
.stat-card:hover {
  transform: translateY(-3px);
}

.process-number {
  font-size: 2rem;
  color: rgba(245, 248, 255, 0.38);
}

.process-list p {
  margin: 0.45rem 0 0;
  color: var(--muted-on-dark);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.compare-card {
  padding: 1.4rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(6, 10, 21, 0.2);
}

.compare-card--on {
  background:
    linear-gradient(180deg, rgba(77, 124, 244, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(77, 124, 244, 0.24);
}

.compare-card h3 {
  font-size: 2rem;
}

.compare-list {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.compare-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted-on-dark);
  font-size: 1rem;
  font-weight: 700;
}

.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.compare-card--on .compare-list li::before {
  background: var(--gradient);
}

.feature-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  align-items: start;
}

.feature-stage__copy,
.feature-stage__board,
.feature-card,
.price-card,
.faq-item {
  border-radius: 32px;
}

.feature-stage__copy,
.feature-stage__board {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.feature-stage__copy {
  display: grid;
  align-content: start;
}

.feature-stage__copy p,
.feature-card p {
  margin: 0.7rem 0 0;
  color: var(--muted-on-dark);
}

.feature-stage__board {
  display: grid;
  gap: 0.85rem;
}

.stage-row {
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stage-row span {
  display: block;
  font-size: 0.78rem;
  color: rgba(168, 180, 207, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.stage-row strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.2rem;
}

.stage-row small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted-on-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 40px rgba(6, 10, 21, 0.14);
}

.feature-card:nth-child(1) {
  grid-column: span 4;
}

.feature-card:nth-child(2) {
  grid-column: span 3;
}

.feature-card:nth-child(3) {
  grid-column: span 5;
}

.feature-card:nth-child(4) {
  grid-column: span 5;
}

.feature-card:nth-child(5) {
  grid-column: span 3;
}

.feature-card:nth-child(6) {
  grid-column: span 4;
}

.feature-card:nth-child(7) {
  grid-column: span 4;
}

.dashboard {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 1)),
    var(--sky);
}

.dashboard-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.dashboard-copy {
  display: grid;
  gap: 1rem;
}

.dashboard-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 4.6vw, 4.25rem);
}

.dashboard-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.dashboard-stats {
  display: grid;
  gap: 1rem;
  margin-top: 0.9rem;
}

.stat-card {
  padding: 1.1rem 1.2rem;
  border-radius: 26px;
  border: 1px solid rgba(17, 26, 48, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.stat-card span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin-top: 0.45rem;
  max-width: 22ch;
  font-size: 1.12rem;
  line-height: 1.15;
  color: var(--navy);
}

.dashboard-note {
  padding: 1.15rem 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(17, 26, 48, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.dashboard-note strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.dashboard-note p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-visuals {
  display: grid;
  gap: 1.15rem;
}

.dashboard-frame {
  margin: 0;
  padding: 0.95rem;
  border-radius: 42px;
  border: 1px solid rgba(17, 26, 48, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 42px 90px rgba(20, 37, 80, 0.14);
}

.dashboard-frame img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.dashboard-frame--metrics img {
  aspect-ratio: 2496 / 1498;
  object-fit: cover;
}

.dashboard-frame figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-weight: 700;
}

.pricing-copy {
  display: grid;
  gap: 1rem;
}

.price-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 255, 0.96)),
    var(--paper);
  border: 1px solid rgba(77, 124, 244, 0.14);
  box-shadow: 0 42px 100px rgba(8, 15, 30, 0.26);
  color: var(--text);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(77, 124, 244, 0.5), rgba(46, 200, 111, 0.24));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 26, 48, 0.08);
  box-shadow: 0 12px 24px rgba(17, 26, 48, 0.08);
}

.price-proof img {
  width: auto;
  height: 1.2rem;
}

.price-label {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-amount {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.6rem;
  margin: 0.35rem 0 0;
}

.price-amount span {
  font-size: clamp(3.1rem, 6vw, 4.8rem);
  line-height: 0.92;
  color: var(--navy);
}

.price-amount small {
  padding-bottom: 0.45rem;
  color: var(--muted);
  font-weight: 800;
}

.price-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
  font-weight: 700;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gradient);
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  margin-top: 1.65rem;
}

.testimonials {
  background:
    radial-gradient(circle at 50% 8%, rgba(77, 124, 244, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(239, 244, 255, 1)),
    var(--sky);
}

.testimonials .section-heading--center {
  max-width: 980px;
  margin-bottom: 2.6rem;
}

.testimonials .section-heading h2 {
  max-width: 12ch;
  margin-inline: auto;
}

.testimonials .section-heading p:last-of-type {
  max-width: 48rem;
  margin-inline: auto;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 35rem;
  padding: 2rem 2rem 1.95rem;
  border-radius: 40px;
  border: 1px solid rgba(17, 26, 48, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 252, 255, 0.96)),
    var(--paper);
  box-shadow: 0 24px 60px rgba(28, 52, 102, 0.1);
  overflow: hidden;
}

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

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 1.15rem;
  right: 1.45rem;
  font-size: 5.1rem;
  line-height: 1;
  color: rgba(77, 124, 244, 0.12);
  font-weight: 900;
}

.testimonial-card:nth-child(1) {
  grid-column: span 3;
  min-height: 38rem;
}

.testimonial-card:nth-child(2) {
  grid-column: span 6;
}

.testimonial-card:nth-child(3) {
  grid-column: span 3;
  min-height: 38rem;
}

.testimonial-card--featured {
  background:
    linear-gradient(180deg, rgba(230, 237, 255, 0.96), rgba(255, 255, 255, 0.99)),
    var(--paper);
  border-color: rgba(77, 124, 244, 0.15);
  box-shadow: 0 28px 72px rgba(24, 45, 98, 0.1);
}

.testimonial-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.testimonial-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: rgba(77, 124, 244, 0.08);
  color: var(--blue-deep);
  font-size: 0.97rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.testimonial-quote {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 2.85vw, 4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.testimonial-card:nth-child(1) .testimonial-quote,
.testimonial-card:nth-child(3) .testimonial-quote {
  max-width: 8.9ch;
}

.testimonial-card--featured .testimonial-quote {
  margin-block: auto 0;
  max-width: 15.2ch;
  font-size: clamp(2.45rem, 3.15vw, 4.25rem);
}

.testimonial-meta {
  display: grid;
  gap: 0.5rem;
  margin-top: auto;
}

.testimonial-meta strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.testimonial-meta span {
  color: #6f7b98;
  font-size: 0.95rem;
  font-weight: 900;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 1)),
    var(--sky);
}

.faq-item {
  overflow: clip;
  border: 1px solid rgba(17, 26, 48, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.1;
}

.faq-trigger i {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  transition: transform 0.2s ease;
}

.faq-trigger[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 1.3rem 1.25rem;
}

.faq-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.final-cta {
  background:
    radial-gradient(circle at 25% 50%, rgba(255, 255, 255, 0.12), transparent 18rem),
    var(--gradient);
  color: var(--paper);
  overflow: clip;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem 3rem;
}

.final-cta__copy {
  display: grid;
  gap: 0.9rem;
  max-width: 46rem;
}

.final-cta__inner h2 {
  max-width: 11ch;
}

.final-cta__lede {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 700;
}

.final-cta__action {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
  min-width: 18rem;
  padding: 1.15rem;
  border-radius: 28px;
  background: rgba(17, 26, 48, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(17, 26, 48, 0.14);
}

.final-cta__micro {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta .button {
  background: rgba(17, 26, 48, 0.96);
  box-shadow: 0 18px 36px rgba(17, 26, 48, 0.18);
}

.site-footer {
  padding-block: 2rem 2.3rem;
  background: var(--paper);
  border-top: 1px solid rgba(17, 26, 48, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-nav a,
.footer-mail {
  color: var(--muted);
  font-weight: 800;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-mail:hover,
.footer-mail:focus-visible {
  color: var(--blue-deep);
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.footer-copy {
  margin: 0;
  text-align: right;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-js [data-hero-item] {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.72s var(--delay) ease forwards;
}

.has-js .chip--ml {
  animation: drift-left 1.1s 0.8s ease forwards;
}

.has-js .chip--meta {
  animation: drift-top 1.1s 0.95s ease forwards;
}

.has-js .chip--ig {
  animation: drift-right 1.1s 1.1s ease forwards;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift-left {
  from {
    opacity: 0;
    transform: translate(-36px, 12px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes drift-top {
  from {
    opacity: 0;
    transform: translate(-50%, -26px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes drift-right {
  from {
    opacity: 0;
    transform: translate(36px, 12px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media (max-width: 1080px) {
  .organization-grid,
  .pricing-grid,
  .faq-grid,
  .dashboard-grid,
  .feature-stage {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card:nth-child(n) {
    grid-column: auto;
    min-height: auto;
  }

  .feature-card:nth-child(n) {
    grid-column: span 6;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 920px) {
  .header-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    min-height: 5.35rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.75rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 26, 48, 0.08);
    box-shadow: 0 22px 40px rgba(17, 26, 48, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.75rem 1rem;
    border-radius: 18px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
    width: 3.45rem;
    height: 3.45rem;
    padding: 0.7rem;
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(17, 26, 48, 0.08);
  }

  .button--desktop {
    display: none;
  }

  .site-nav .button--mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 0.4rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .mock-window__body {
    grid-template-columns: 1fr;
  }

  .queue-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .channel-chip {
    font-size: 0.82rem;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 4rem;
  }

  .header-bar {
    min-height: 5.15rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 2.8rem;
    height: 2.8rem;
  }

  .brand-wordmark {
    font-size: 1.58rem;
    letter-spacing: -0.055em;
  }

  h1 {
    font-size: clamp(2.95rem, 13vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .price-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-cta__action {
    min-width: 0;
    width: 100%;
    max-width: 22rem;
  }

  .hero-highlights article {
    min-width: min(100%, 20rem);
    text-align: center;
  }

  .channel-chip span {
    display: none;
  }

  .chip--ml {
    left: 0;
  }

  .chip--meta {
    left: 50%;
  }

  .chip--ig {
    right: 0;
  }

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

  .feature-card:nth-child(n) {
    grid-column: auto;
  }

  .testimonial-card {
    padding: 1.3rem;
  }

  .testimonial-quote {
    font-size: clamp(1.2rem, 6vw, 1.75rem);
  }

  .final-cta__inner h2 {
    max-width: 12ch;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-js [data-reveal],
  .has-js [data-hero-item] {
    opacity: 1;
    transform: none;
  }
}
