/* [project]/components/landing/landing.css [app-client] (css) */
.landing {
  --bg: #fff;
  --bg-alt: #fafafa;
  --surface-gray: #f4f4f5;
  --text: #09090b;
  --text-2: #71717a;
  --text-3: #a1a1aa;
  --border: #e4e4e7;
  --border-2: #d4d4d8;
  --accent: #0070f3;
  --accent-hover: #005ed1;
  --accent-text: #005ed1;
  --accent-soft: #ebf4ff;
  --black: #0a0a0a;
  --black-hover: #27272a;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans-landing), system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.landing h1, .landing h2, .landing .display {
  font-family: var(--font-display), system-ui, sans-serif;
  letter-spacing: -.02em;
}

.landing .eyebrow {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-size: .75rem;
  font-weight: 600;
}

.landing .btn {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 10px;
  align-items: center;
  gap: .45rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  display: inline-flex;
}

.landing .btn-blue {
  background: var(--accent);
  color: #fff;
}

.landing .btn-blue:hover {
  background: var(--accent-hover);
}

.landing .btn-black {
  background: var(--black);
  color: #fff;
}

.landing .btn-black:hover {
  background: var(--black-hover);
}

.landing .btn-secondary {
  color: var(--text);
  border-color: var(--border);
  background: #fff;
}

.landing .btn-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--border-2);
}

.landing .btn-ghost {
  color: #3f3f46;
  background: none;
}

.landing .btn-ghost:hover {
  background: var(--surface-gray);
}

.landing .btn-lg {
  padding: .875rem 1.625rem;
  font-size: .9375rem;
}

.landing .btn-sm {
  padding: .4375rem .875rem;
  font-size: .75rem;
}

.landing .btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.landing .field {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
  border-radius: 10px;
  outline: none;
  padding: .6875rem .9375rem;
  font-family: inherit;
  font-size: .875rem;
  transition: border-color .15s, box-shadow .15s;
}

.landing .btn-blue:focus-visible {
  box-shadow: 0 0 0 3px #0070f338;
}

.landing .btn-black:focus-visible {
  box-shadow: 0 0 0 3px #0a0a0a1f;
}

.landing .field:focus-visible, .landing .field:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #0070f326;
}

.landing .glass {
  -webkit-backdrop-filter: blur(12px);
  background: #fff9;
  border: 1px solid #e4e4e7e6;
  box-shadow: 0 8px 30px #0000000f;
}

.landing .section {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.landing .container {
  max-width: 72rem;
  margin: 0 auto;
}

@keyframes lnd-pulse {
  0% {
    opacity: .9;
    transform: scale(.6);
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes lnd-shortmem {
  0%, 100% {
    width: 12%;
  }

  50% {
    width: 78%;
  }
}

@keyframes lnd-longmem {
  0% {
    width: 8%;
  }

  60%, 100% {
    width: 88%;
  }
}

@keyframes lnd-chipglow {
  0%, 18% {
    border-color: var(--accent);
    color: var(--accent-text);
    background: var(--accent-soft);
  }

  22%, 100% {
    border-color: var(--border);
    color: #3f3f46;
    background: var(--bg-alt);
  }
}

@keyframes lnd-fill {
  0% {
    stroke-dashoffset: 151px;
  }

  55%, 100% {
    stroke-dashoffset: 26px;
  }
}

@keyframes lnd-lane {
  0% {
    width: 5%;
  }

  100% {
    width: 96%;
  }
}

@keyframes lnd-evtmove {
  0% {
    opacity: 0;
    left: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: 26px;
  }
}

@keyframes lnd-reveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing .reveal {
  opacity: 0;
}

.landing .reveal.in {
  animation: .7s ease-out forwards lnd-reveal;
}

.landing .lnd-masonry {
  column-gap: 1rem;
}

.landing .lnd-masonry > div {
  break-inside: avoid;
}

@media (max-width: 900px) {
  .landing .lnd-masonry {
    column-count: 2 !important;
  }
}

@media (max-width: 560px) {
  .landing .lnd-masonry {
    column-count: 1 !important;
  }
}

.landing .lnd-poscard, .landing .lnd-cap {
  transition: border-color .2s, box-shadow .2s;
}

.landing .lnd-poscard:hover, .landing .lnd-cap:hover {
  border-color: var(--border-2);
  box-shadow: 0 12px 30px #0000000f;
}

.landing .lnd-navlink:hover {
  color: var(--text) !important;
}

@media (max-width: 560px) {
  .landing .lnd-navlink {
    display: none;
  }
}

.landing .au-bento {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "ident chan"
                       "mem mem";
  align-items: stretch;
  gap: 18px;
  display: grid;
}

.landing .au-card {
  background: #fff;
  border-radius: 22px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 3px #0000000a, 0 10px 34px #0000000b;
}

.landing .au-ident {
  grid-area: ident;
}

.landing .au-chan {
  grid-area: chan;
}

.landing .au-mem {
  grid-area: mem;
}

.landing .au-mock {
  background: linear-gradient(#fafafb, #f4f4f6);
  flex: 1;
  padding: 24px;
  position: relative;
}

.landing .au-foot {
  padding: 20px 26px 26px;
}

.landing .au-title {
  letter-spacing: -.01em;
  color: var(--text);
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
}

.landing .au-desc {
  color: var(--text-2);
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.landing .au-panel {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 2px #0000000d, 0 10px 26px #0000000f;
}

.landing .au-av {
  background: var(--accent);
  color: #fff;
  width: 38px;
  height: 38px;
  font-family: var(--font-display);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.landing .au-profile {
  padding: 16px;
}

.landing .au-phead {
  align-items: center;
  gap: 12px;
  display: flex;
}

.landing .au-nm {
  font-size: 15px;
  font-weight: 600;
}

.landing .au-role {
  color: var(--accent);
  margin-top: 1px;
  font-size: 12px;
  font-weight: 500;
}

.landing .au-actions {
  border-top: 1px solid #f1f1f3;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
  padding-top: 14px;
  display: flex;
}

.landing .au-act {
  color: #3f3f46;
  background: #fafafb;
  border: 1px solid #ececef;
  border-radius: 100px;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  font-size: 11.5px;
  display: inline-flex;
}

.landing .au-act img {
  width: 13px;
  height: 13px;
}

.landing .au-toolslab {
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 18px 4px 10px;
  font-size: 11px;
}

.landing .au-tools {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  display: grid;
}

.landing .au-tool {
  background: #fff;
  border-radius: 11px;
  justify-content: center;
  align-items: center;
  height: 44px;
  display: flex;
  box-shadow: 0 1px 2px #0000000d, 0 5px 14px #0000000d;
}

.landing .au-tool img {
  width: 19px;
  height: 19px;
}

.landing .au-thread {
  flex-direction: column;
  gap: 9px;
  display: flex;
}

.landing .au-chlabel {
  color: var(--text-3);
  align-self: flex-end;
  align-items: center;
  gap: 6px;
  margin: 7px 0 2px;
  font-size: 11px;
  display: flex;
}

.landing .au-chlabel:first-child {
  margin-top: 0;
}

.landing .au-chlabel img {
  width: 13px;
  height: 13px;
}

.landing .au-msg {
  border-radius: 13px;
  max-width: 80%;
  padding: 9px 13px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 1px 2px #0000000d, 0 6px 16px #0000000b;
}

.landing .au-msg.user {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.landing .au-msg.agent {
  color: #3f3f46;
  background: #fff;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.landing .au-ctxpill {
  color: var(--accent-text);
  background: var(--accent-soft);
  border-radius: 100px;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  padding: 3px 9px;
  font-size: 10.5px;
  font-weight: 500;
  display: inline-flex;
}

.landing .au-ctxpill .d {
  background: var(--accent);
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.landing .au-memlayout {
  align-items: stretch;
  gap: 30px;
  display: flex;
}

.landing .au-memcopy {
  flex-direction: column;
  flex: 0 0 36%;
  display: flex;
}

.landing .au-memlink {
  color: var(--accent-text);
  align-items: center;
  gap: 5px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: gap .15s;
  display: inline-flex;
}

.landing .au-memlink:hover {
  gap: 9px;
}

.landing .au-memwrap {
  flex: 1;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
  position: relative;
}

.landing .au-mempanel {
  min-height: 196px;
  padding: 15px 16px;
}

.landing .au-mlabel {
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .07em;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px;
  font-size: 11px;
  display: flex;
}

.landing .au-mdot {
  background: var(--accent);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.landing .au-mcount {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}

.landing .au-memfeed {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.landing .au-mrow {
  color: #3f3f46;
  border-radius: 6px;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  transition: opacity .4s, transform .4s, background .3s;
  display: flex;
}

.landing .au-mrow.au-enter {
  opacity: 0;
  transform: translateY(-7px);
}

.landing .au-mrow.au-group {
  background: var(--accent-soft);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.landing .au-tag {
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 5px;
  flex: none;
  padding: 2px 6px;
  font-size: 9.5px;
  font-weight: 600;
}

.landing .au-tag.fact {
  color: var(--text-2);
  background: #f1f1f3;
}

.landing .au-tag.obs {
  background: var(--accent-soft);
  color: var(--accent-text);
}

.landing .au-memfly {
  color: #fff;
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  z-index: 5;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  font-size: 11px;
  display: inline-flex;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 8px 20px #0070f352;
}

@media (max-width: 760px) {
  .landing .au-bento {
    grid-template-columns: 1fr;
    grid-template-areas: "ident"
                         "chan"
                         "mem";
  }

  .landing .au-memlayout {
    flex-direction: column;
    gap: 18px;
  }

  .landing .au-memcopy {
    flex: none;
  }
}

.landing .au-rows {
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
  display: flex;
}

.landing .au-row {
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(32px, 5vw, 56px);
  display: grid;
}

.landing .au-row.rev .au-rowtxt {
  order: 2;
}

.landing .au-row.rev .au-rowviz {
  order: 1;
}

.landing .au-kick {
  color: var(--accent);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
}

.landing .au-rowtxt h3 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  color: var(--text);
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.12;
}

.landing .au-rowtxt p {
  color: var(--text-2);
  max-width: 42ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.landing .au-viz {
  background: linear-gradient(#fff, #f7f7f9);
  border: 1px solid #ececef;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 1px 3px #0000000a, 0 14px 40px #0000000d;
}

@media (max-width: 760px) {
  .landing .au-rows {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-direction: row;
    align-items: start;
    gap: 14px;
    padding: 2px 0 14px;
    overflow-x: auto;
  }

  .landing .au-rows::-webkit-scrollbar {
    display: none;
  }

  .landing .au-row {
    scroll-snap-align: center;
    flex-direction: column;
    flex: 0 0 87%;
    gap: 12px;
    display: flex;
  }

  .landing .au-row.rev .au-rowtxt {
    order: 1;
  }

  .landing .au-row.rev .au-rowviz {
    order: 2;
  }

  .landing .au-rowtxt p {
    display: none;
  }

  .landing .au-rowtxt h3 {
    min-height: 84px;
    margin: 0;
  }

  .landing .au-rowviz {
    display: flex;
  }

  .landing .au-viz {
    box-sizing: border-box;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    width: 100%;
    min-height: 460px;
    display: flex;
  }

  .landing .au-memwrap {
    grid-template-columns: 1fr;
  }

  .landing .au-mempanel {
    min-height: 150px;
  }
}

.landing .aw-bento {
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-areas: "tasks team parl"
                       "tasks auto goal";
  gap: 18px;
  display: grid;
}

.landing .aw-card {
  background: #fff;
  border-radius: 22px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 3px #0000000a, 0 10px 34px #0000000b;
}

.landing .aw-tasks {
  grid-area: tasks;
}

.landing .aw-team {
  grid-area: team;
}

.landing .aw-parl {
  grid-area: parl;
}

.landing .aw-auto {
  grid-area: auto;
}

.landing .aw-goal {
  grid-area: goal;
}

.landing .aw-mock {
  background: linear-gradient(#fafafb, #f4f4f6);
  flex: 1;
  padding: 22px;
  position: relative;
}

.landing .aw-mock.col {
  flex-direction: column;
  display: flex;
}

.landing .aw-tasks .aw-mock {
  padding-bottom: 0;
}

.landing .aw-foot {
  padding: 18px 24px 24px;
}

.landing .aw-title {
  letter-spacing: -.01em;
  color: var(--text);
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
}

.landing .aw-desc {
  color: var(--text-2);
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
}

.landing .aw-panel {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 2px #0000000d, 0 10px 26px #0000000f;
}

.landing .aw-big {
  font-family: var(--font-display);
  letter-spacing: -.03em;
  align-items: center;
  gap: 5px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
}

.landing .aw-gt {
  color: var(--accent);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.landing .aw-numlab {
  color: var(--text-2);
  margin: 5px 0 18px;
  font-size: 13px;
}

.landing .aw-wall {
  flex: 1;
  min-height: 150px;
  position: relative;
  overflow: hidden;
  -webkit-mask: linear-gradient(#0000 0, #000 20% 80%, #0000 100%);
  mask: linear-gradient(#0000 0, #000 20% 80%, #0000 100%);
}

.landing .aw-wallgrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  display: grid;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.landing .aw-wi {
  background: #fff;
  border-radius: 11px;
  justify-content: center;
  align-items: center;
  height: 46px;
  display: flex;
  box-shadow: 0 1px 2px #0000000d, 0 5px 14px #0000000d;
}

.landing .aw-wi img {
  width: 21px;
  height: 21px;
}

.landing .aw-teamcanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.landing .aw-plist {
  margin-top: auto;
  -webkit-mask: linear-gradient(#000 55%, #0000 95%);
  mask: linear-gradient(#000 55%, #0000 95%);
}

.landing .aw-prow {
  color: var(--text-2);
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12px;
  display: flex;
}

.landing .aw-prow:last-child {
  margin-bottom: 0;
}

.landing .aw-pname {
  flex: 0 0 64px;
}

.landing .aw-pbar {
  background: #ececef;
  border-radius: 5px;
  flex: 1;
  height: 7px;
  overflow: hidden;
}

.landing .aw-pbar i {
  background: var(--accent);
  border-radius: 5px;
  height: 100%;
  display: block;
}

.landing .aw-rules {
  flex-direction: column;
  gap: 9px;
  display: flex;
}

.landing .aw-rule {
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  transition: box-shadow .3s;
  display: flex;
}

.landing .aw-rule.fire {
  box-shadow: 0 0 0 2px var(--accent) inset, 0 8px 18px #0070f31f;
}

.landing .aw-chip {
  color: #3f3f46;
  white-space: nowrap;
  background: #f4f4f6;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  font-size: 11.5px;
  display: inline-flex;
}

.landing .aw-chip img {
  width: 13px;
  height: 13px;
}

.landing .aw-arrow {
  color: #c4c4cc;
  font-size: 13px;
  transition: color .3s;
}

.landing .aw-rule.fire .aw-arrow {
  color: var(--accent);
}

.landing .aw-act {
  color: #3f3f46;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  display: inline-flex;
}

.landing .aw-check {
  border: 1.5px solid #d4d4d8;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  transition: all .3s;
  display: inline-flex;
}

.landing .aw-rule.fire .aw-check {
  border-color: var(--accent);
  background: var(--accent);
}

.landing .aw-check svg {
  opacity: 0;
  width: 8px;
  height: 8px;
  transition: opacity .3s;
}

.landing .aw-rule.fire .aw-check svg {
  opacity: 1;
}

.landing .aw-goalwrap {
  align-items: center;
  gap: 16px;
  display: flex;
}

.landing .aw-ring .aw-pct {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.landing .aw-steps {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  display: flex;
}

.landing .aw-step {
  color: #3f3f46;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  display: flex;
}

.landing .aw-step .c {
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.landing .aw-step.done .c {
  background: var(--accent);
}

.landing .aw-step.done .c svg {
  width: 8px;
  height: 8px;
}

.landing .aw-step.todo .c {
  border: 1.5px solid #d4d4d8;
}

.landing .aw-step.todo {
  color: var(--text-3);
}

.landing .aw-goaltag {
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 0 0 12px;
  font-size: 10.5px;
}

@media (max-width: 860px) {
  .landing .aw-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "tasks tasks"
                         "team parl"
                         "auto goal";
  }
}

@media (max-width: 560px) {
  .landing .aw-bento {
    grid-template-columns: 1fr;
    grid-template-areas: "tasks"
                         "team"
                         "parl"
                         "auto"
                         "goal";
  }
}

.landing .cap-sec {
  background: linear-gradient(180deg, var(--bg-alt) 0, #0a1024 130px, #070d1f 270px, #070d1f 100%);
  padding: clamp(9rem, 16vw, 13rem) 1.5rem clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.landing .cap-glow {
  pointer-events: none;
  background: radial-gradient(#0070f333, #0000 65%);
  width: 760px;
  height: 380px;
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
}

.landing .cap-in {
  max-width: 74rem;
  margin: 0 auto;
  position: relative;
}

.landing .cap-h2 {
  font-family: var(--font-display);
  text-align: center;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.landing .cap-lead {
  color: #9aa0ad;
  text-align: center;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  font-size: 16px;
}

.landing .cap-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  display: grid;
}

.landing .cap-col {
  padding: 0 22px;
}

.landing .cap-col + .cap-col {
  border-left: 1px solid #ffffff17;
}

.landing .cap-viz {
  align-items: flex-end;
  height: 104px;
  margin-bottom: 20px;
  display: flex;
}

.landing .cap-num {
  font-family: var(--font-display);
  color: #2f8bff;
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
}

.landing .cap-col h3 {
  color: #fff;
  letter-spacing: -.01em;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.landing .cap-col p {
  color: #9aa0ad;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
}

.landing .cap-mk {
  background: #ffffff0a;
  border: 1px solid #ffffff17;
  border-radius: 12px;
  width: 100%;
  padding: 11px;
}

.landing .cap-msel {
  color: #fff;
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  font-size: 12px;
  display: flex;
}

.landing .cap-msel .l {
  align-items: center;
  gap: 7px;
  font-weight: 500;
  display: flex;
}

.landing .cap-mi {
  width: 14px;
  height: 14px;
}

.landing .cap-mi2 {
  width: 12px;
  height: 12px;
}

.landing .cap-mopts {
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
  display: flex;
}

.landing .cap-mopts span {
  color: #9aa0ad;
  background: #ffffff0d;
  border-radius: 6px;
  align-items: center;
  gap: 5px;
  padding: 3px 7px;
  font-size: 10.5px;
  display: inline-flex;
}

.landing .cap-tcards {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.landing .cap-tcard {
  color: #cfd2db;
  background: #ffffff0d;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  font-size: 11.5px;
  display: flex;
}

.landing .cap-tcard .dot {
  background: #2f8bff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.landing .cap-trace {
  font-family: var(--font-jetbrains-mono), monospace;
}

.landing .cap-trow {
  color: #cfd2db;
  align-items: center;
  gap: 7px;
  padding: 3px 0;
  font-size: 10.5px;
  display: flex;
}

.landing .cap-trow .tdot {
  background: #3f3f46;
  border-radius: 50%;
  flex: none;
  width: 5px;
  height: 5px;
}

.landing .cap-trow.live .tdot {
  background: #2ee08a;
  box-shadow: 0 0 0 3px #2ee08a2e;
}

.landing .cap-trow .nm {
  flex: 1;
}

.landing .cap-trow .tt {
  color: #6b7080;
}

.landing .cap-tcost {
  color: #6b7080;
  font-size: 10px;
  font-family: var(--font-jetbrains-mono), monospace;
  border-top: 1px solid #ffffff12;
  margin-top: 7px;
  padding-top: 6px;
}

.landing .cap-collab {
  width: 100%;
  height: 100px;
  position: relative;
}

.landing .cap-cur {
  align-items: flex-start;
  display: flex;
  position: absolute;
}

.landing .cap-cur svg {
  filter: drop-shadow(0 1px 2px #0006);
  width: 16px;
  height: 16px;
}

.landing .cap-cur .nm {
  color: #fff;
  white-space: nowrap;
  border-radius: 5px;
  margin: 9px 0 0 -3px;
  padding: 1px 6px;
  font-size: 9.5px;
  font-weight: 600;
}

.landing .cap-c1 {
  animation: 5s ease-in-out infinite capf1;
  top: 6px;
  left: 4px;
}

.landing .cap-c1 .nm {
  background: #a855f7;
}

.landing .cap-c2 {
  animation: 6s ease-in-out infinite capf2;
  top: 0;
  right: 6px;
}

.landing .cap-c2 .nm {
  background: #0070f3;
}

.landing .cap-c3 {
  animation: 5.5s ease-in-out infinite capf3;
  top: 56px;
  left: 18px;
}

.landing .cap-c3 .nm {
  background: #f59e0b;
}

.landing .cap-c4 {
  animation: 6.5s ease-in-out infinite capf4;
  top: 52px;
  right: 18px;
}

.landing .cap-c4 .nm {
  background: #0070f3;
}

@keyframes capf1 {
  0%, 100% {
    transform: translate(0);
  }

  50% {
    transform: translate(8px, 5px);
  }
}

@keyframes capf2 {
  0%, 100% {
    transform: translate(0);
  }

  50% {
    transform: translate(-7px, 6px);
  }
}

@keyframes capf3 {
  0%, 100% {
    transform: translate(0);
  }

  50% {
    transform: translate(6px, -5px);
  }
}

@keyframes capf4 {
  0%, 100% {
    transform: translate(0);
  }

  50% {
    transform: translate(-6px, -4px);
  }
}

@media (max-width: 760px) {
  .landing .cap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 0;
  }

  .landing .cap-col:nth-child(odd) {
    border-left: 0;
  }
}

.landing .cap-wrap {
  grid-template-columns: 320px 1fr;
  align-items: stretch;
  gap: 20px;
  display: grid;
}

.landing .cap-list {
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  display: flex;
}

.landing .cap-item {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 14px;
  padding: 18px;
  transition: background .15s, border-color .15s;
}

.landing .cap-item:hover {
  background: #ffffff08;
}

.landing .cap-item.on {
  background: #ffffff0d;
  border-color: #ffffff1a;
}

.landing .cap-item .n {
  font-family: var(--font-display);
  color: #ffffff4d;
  font-size: 12px;
  font-weight: 700;
}

.landing .cap-item.on .n {
  color: #2f8bff;
}

.landing .cap-item .t {
  color: #cfd2db;
  margin-top: 3px;
  font-size: 16px;
  font-weight: 600;
}

.landing .cap-item.on .t {
  color: #fff;
}

.landing .cap-item .m {
  color: #6b7080;
  margin-top: 4px;
  font-size: 12.5px;
  display: none;
}

.landing .cap-item.on .m {
  display: block;
}

.landing .cap-prev {
  background: #ffffff08;
  border: 1px solid #ffffff17;
  border-radius: 18px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.landing .cap-slide {
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  padding: 32px;
  transition: opacity .4s, transform .4s;
  display: flex;
  position: absolute;
  inset: 0;
  transform: translateY(10px);
}

.landing .cap-slide.on {
  opacity: 1;
  transform: none;
}

.landing .cap-slide-h {
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: -.02em;
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 700;
}

.landing .cap-slide-d {
  color: #9aa0ad;
  max-width: 44ch;
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.55;
}

.landing .cap-slide-mk {
  flex: 1;
  display: block;
}

.landing .cap-slide-mk > * {
  width: 100%;
  max-width: 400px;
  margin: 28px auto 0;
}

.landing .cap-slide-mk .cap-collab {
  max-width: 320px;
  margin-top: 40px;
}

@media (max-width: 760px) {
  .landing .cap-wrap {
    grid-template-columns: 1fr;
  }

  .landing .cap-prev {
    min-height: 320px;
  }
}

.landing .cap-tpl {
  flex-direction: column;
  gap: 9px;
  width: 100%;
  display: flex;
}

.landing .cap-tplcard {
  background: #ffffff0a;
  border: 1px solid #ffffff17;
  border-radius: 11px;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  display: flex;
}

.landing .cap-tplic {
  background: #0070f329;
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 15px;
  display: flex;
}

.landing .cap-tpltxt {
  flex: 1;
}

.landing .cap-tplnm {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.landing .cap-tplsub {
  color: #6b7080;
  margin-top: 1px;
  font-size: 11px;
}

.landing .cap-tplbtn {
  color: #2f8bff;
  white-space: nowrap;
  background: #0070f31f;
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 11px;
}

.landing .cap-wf {
  width: 100%;
  font-family: var(--font-jetbrains-mono), monospace;
  background: #ffffff0a;
  border: 1px solid #ffffff17;
  border-radius: 12px;
  padding: 14px;
}

.landing .cap-wfrow {
  align-items: center;
  gap: 9px;
  padding: 4px 0;
  font-size: 10.5px;
  display: flex;
}

.landing .cap-wfname {
  color: #9aa0ad;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: none;
  width: 88px;
  overflow: hidden;
}

.landing .cap-wftrack {
  background: #ffffff0d;
  border-radius: 3px;
  flex: 1;
  height: 10px;
  position: relative;
}

.landing .cap-wfbar {
  background: #0070f3;
  border-radius: 3px;
  height: 10px;
  position: absolute;
  top: 0;
}

.landing .cap-wfbar.live {
  background: #2ee08a;
  animation: 1.3s ease-in-out infinite alternate capwf;
}

@keyframes capwf {
  from {
    opacity: .55;
  }

  to {
    opacity: 1;
  }
}

.landing .cap-wftime {
  text-align: right;
  color: #6b7080;
  flex: none;
  width: 36px;
}

.landing .cap-wfcost {
  color: #6b7080;
  border-top: 1px solid #ffffff12;
  margin-top: 10px;
  padding-top: 9px;
  font-size: 10px;
}

.landing .cap-board {
  background: #ffffff08;
  border: 1px solid #ffffff17;
  border-radius: 12px;
  width: 100%;
  height: 184px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.landing .cap-online {
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  display: flex;
}

.landing .cap-oav {
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 8px;
  font-weight: 700;
  font-family: var(--font-display);
  border: 2px solid #0e1428;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-left: -6px;
  display: flex;
}

.landing .cap-oav:first-child {
  margin-left: 0;
}

.landing .cap-online .lbl {
  color: #6b7080;
  margin-left: 6px;
  font-size: 10.5px;
}

.landing .cap-bb {
  background: #ffffff0f;
  border-radius: 5px;
  height: 9px;
  margin-bottom: 9px;
}

.landing .cap-bcard {
  background: #ffffff0d;
  border: 1px solid #ffffff17;
  border-radius: 9px;
  width: 130px;
  padding: 9px;
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.landing .cap-bcard .ln {
  background: #ffffff1f;
  border-radius: 4px;
  height: 6px;
  margin-bottom: 6px;
}

.landing .cap-mlist {
  background: #ffffff0a;
  border: 1px solid #ffffff17;
  border-radius: 12px;
  width: 100%;
  padding: 6px;
}

.landing .cap-mrow {
  color: #cfd2db;
  border-radius: 9px;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  font-size: 13px;
  display: flex;
}

.landing .cap-mrow img {
  flex: none;
  width: 16px;
  height: 16px;
}

.landing .cap-mrow .mname {
  flex: 1;
}

.landing .cap-mrow .mtag {
  color: #6b7080;
  font-size: 10px;
}

.landing .cap-mrow.on {
  color: #fff;
  background: #0070f324;
}

.landing .cap-mrow.on .mtag {
  color: #2f8bff;
}

.landing .cap-mcheck {
  background: #0070f3;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.landing .cap-mcheck svg {
  width: 9px;
  height: 9px;
}

.landing .cap-acc {
  display: none;
}

.landing .cap-accitem {
  border-bottom: 1px solid #ffffff17;
}

.landing .cap-acchead {
  cursor: pointer;
  text-align: left;
  background: none;
  border: 0;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 17px 4px;
  font-family: inherit;
  display: flex;
}

.landing .cap-acchead .n {
  font-family: var(--font-display);
  color: #ffffff4d;
  font-size: 12px;
  font-weight: 700;
}

.landing .cap-acchead.on .n {
  color: #2f8bff;
}

.landing .cap-acchead .t {
  color: #cfd2db;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
}

.landing .cap-acchead.on .t {
  color: #fff;
}

.landing .cap-acchead .chev {
  color: #6b7080;
  font-size: 11px;
  transition: transform .25s;
}

.landing .cap-acchead.on .chev {
  color: #2f8bff;
  transform: rotate(180deg);
}

.landing .cap-accbody {
  opacity: 0;
  max-height: 0;
  transition: max-height .35s, opacity .3s;
  overflow: hidden;
}

.landing .cap-accbody.on {
  opacity: 1;
  max-height: 460px;
}

.landing .cap-accbody-in {
  padding: 2px 2px 22px;
}

.landing .cap-accbody-d {
  color: #9aa0ad;
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .landing .cap-wrap {
    display: none;
  }

  .landing .cap-acc {
    display: block;
  }

  .landing .cap-sec {
    padding-top: clamp(7rem, 22vw, 10rem);
  }
}

.landing .st-sec {
  background: #070d1f;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(3.5rem, 7vw, 5.5rem);
}

.landing .st-in {
  max-width: 74rem;
  margin: 0 auto;
}

.landing .st-h2 {
  font-family: var(--font-display);
  text-align: center;
  color: #fff;
  letter-spacing: -.02em;
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.landing .st-lead {
  color: #9aa0ad;
  text-align: center;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  font-size: 16px;
}

.landing .st-flow {
  position: relative;
}

.landing .st-line {
  z-index: 0;
  background: #ffffff1f;
  height: 2px;
  position: absolute;
  top: 20px;
  left: 16.66%;
  right: 16.66%;
}

.landing .st-prog {
  background: #2f8bff;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 4.5s ease-in-out infinite stprog;
  position: absolute;
  top: -2.5px;
  left: 0;
  box-shadow: 0 0 0 4px #2f8bff33;
}

@keyframes stprog {
  0% {
    left: 0;
  }

  44%, 56% {
    left: 50%;
  }

  100% {
    left: 100%;
  }
}

.landing .st-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  display: grid;
  position: relative;
}

.landing .st-col {
  text-align: center;
  flex-direction: column;
  display: flex;
}

.landing .st-node {
  color: #fff;
  width: 40px;
  height: 40px;
  font-family: var(--font-display);
  z-index: 2;
  background: #0070f3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  position: relative;
  box-shadow: 0 0 0 6px #0070f326, 0 0 0 7px #070d1f;
}

.landing .st-col h3 {
  color: #fff;
  letter-spacing: -.01em;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.landing .st-col p {
  color: #9aa0ad;
  max-width: 26ch;
  margin: 0 auto 18px;
  font-size: 13.5px;
  line-height: 1.55;
}

.landing .st-mk {
  text-align: left;
  background: #ffffff0a;
  border: 1px solid #ffffff17;
  border-radius: 14px;
  flex-direction: column;
  flex: 1;
  min-height: 150px;
  padding: 14px;
  display: flex;
}

.landing .st-brief-lab {
  color: #6b7080;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 8px;
  font-size: 10.5px;
}

.landing .st-brief-box {
  color: #cfd2db;
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-radius: 9px;
  padding: 9px 11px;
  font-size: 12.5px;
  line-height: 1.5;
}

.landing .st-brief-foot {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  display: flex;
}

.landing .st-brief-foot .hint {
  color: #6b7080;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  display: inline-flex;
}

.landing .st-brief-foot .hint .sp {
  background: #2f8bff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.landing .st-brief-btn {
  color: #fff;
  white-space: nowrap;
  background: #0070f3;
  border-radius: 8px;
  padding: 6px 11px;
  font-size: 11.5px;
  font-weight: 500;
}

.landing .st-caret {
  vertical-align: -2px;
  background: #2f8bff;
  width: 1px;
  height: 13px;
  margin-left: 1px;
  animation: 1.1s step-end infinite stblink;
  display: inline-block;
}

@keyframes stblink {
  0%, 50% {
    opacity: 1;
  }

  51%, 100% {
    opacity: 0;
  }
}

.landing .st-trow {
  color: #cfd2db;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: 12.5px;
  display: flex;
}

.landing .st-trow img {
  width: 15px;
  height: 15px;
}

.landing .st-trow .nm {
  flex: 1;
}

.landing .st-chk {
  border-radius: 5px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.landing .st-chk.on {
  background: #0070f3;
}

.landing .st-chk.on svg {
  width: 9px;
  height: 9px;
}

.landing .st-chk.off {
  border: 1.5px solid #fff3;
}

.landing .st-launch {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 6px;
  display: flex;
}

.landing .st-btn {
  color: #fff;
  background: #0070f3;
  border-radius: 9px;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.landing .st-status {
  color: #cfd2db;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  display: inline-flex;
}

.landing .st-status .d {
  background: #2ee08a;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 1.6s infinite stpulse;
  box-shadow: 0 0 0 3px #2ee08a2e;
}

@keyframes stpulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.landing .st-agenthead {
  align-items: center;
  gap: 10px;
  display: flex;
}

.landing .st-aav {
  color: #fff;
  width: 34px;
  height: 34px;
  font-family: var(--font-display);
  background: #0070f3;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.landing .st-anm {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.landing .st-arole {
  color: #2f8bff;
  margin-top: 1px;
  font-size: 11px;
}

.landing .st-adesc {
  color: #9aa0ad;
  background: #ffffff0a;
  border: 1px solid #ffffff12;
  border-radius: 8px;
  margin: 11px 0;
  padding: 10px;
  font-size: 11.5px;
  line-height: 1.5;
}

.landing .st-toolslab {
  color: #6b7080;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: auto 0 8px;
  font-size: 10px;
}

.landing .st-adesc .ok {
  color: #2ee08a;
  font-weight: 600;
}

.landing .st-toolsrow {
  gap: 7px;
  display: flex;
}

.landing .st-toolsrow .ti {
  background: #ffffff0d;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.landing .st-toolsrow .ti img {
  width: 16px;
  height: 16px;
}

.landing .st-chat {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.landing .st-acts {
  flex-direction: column;
  gap: 7px;
  margin-top: 2px;
  display: flex;
}

.landing .st-act {
  color: #6b7080;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  display: flex;
}

.landing .st-act.done {
  color: #9aa0ad;
}

.landing .st-act.active {
  color: #cfd2db;
}

.landing .st-act .ic {
  color: #2ee08a;
  background: #2ee08a29;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  font-size: 9px;
  display: flex;
}

.landing .st-act .dot2 {
  background: #2f8bff;
  border-radius: 50%;
  flex: none;
  width: 7px;
  height: 7px;
  margin: 0 4px;
  animation: 1.4s infinite stpulse;
  box-shadow: 0 0 0 3px #2f8bff2e;
}

.landing .st-msg-u {
  color: #fff;
  background: #0070f3;
  border-radius: 11px 11px 4px;
  align-self: flex-end;
  max-width: 92%;
  padding: 8px 12px;
  font-size: 12.5px;
  line-height: 1.4;
}

.landing .st-agentline {
  color: #cfd2db;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  display: flex;
}

.landing .st-aav-sm {
  color: #fff;
  width: 24px;
  height: 24px;
  font-family: var(--font-display);
  background: #0070f3;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  display: flex;
}

.landing .st-took {
  color: #cfd2db;
  align-items: center;
  gap: 7px;
  display: inline-flex;
}

.landing .st-took .d {
  background: #2ee08a;
  border-radius: 50%;
  flex: none;
  width: 7px;
  height: 7px;
  animation: 1.6s infinite stpulse;
  box-shadow: 0 0 0 3px #2ee08a2e;
}

@media (max-width: 760px) {
  .landing .st-line {
    display: none;
  }

  .landing .st-grid {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 2px 0 14px;
    display: flex;
    overflow-x: auto;
  }

  .landing .st-grid::-webkit-scrollbar {
    display: none;
  }

  .landing .st-col {
    scroll-snap-align: center;
    flex: 0 0 82%;
  }
}

.landing .lf {
  background: #070d1f;
}

.landing .lf-in {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 74rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem 2rem;
  display: flex;
}

.landing .lf-brand-name {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
}

.landing .lf-brand-p {
  color: #9aa0ad;
  max-width: 32ch;
  margin: .6rem 0 0;
  font-size: .875rem;
  line-height: 1.6;
}

.landing .lf-nav {
  flex-wrap: wrap;
  gap: .625rem 1.5rem;
  display: flex;
}

.landing .lf-nav a {
  color: #9aa0ad;
  font-size: .875rem;
  text-decoration: none;
  transition: color .15s;
}

.landing .lf-nav a:hover {
  color: #fff;
}

.landing .lf-bottom {
  border-top: 1px solid #ffffff14;
}

.landing .lf-bottom-in {
  max-width: 74rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.landing .lf-copy {
  color: #6b7080;
  font-size: .8125rem;
}

@media (prefers-reduced-motion: reduce) {
  .landing *, .landing :before, .landing :after {
    transition: none !important;
    animation: none !important;
  }

  .landing .reveal {
    opacity: 1;
  }
}

/*# sourceMappingURL=components_landing_landing_0wt8kkt.css.map*/