/* [project]/apps/web/src/app/landing-rows.css [app-client] (css) */
.dd-rows {
  z-index: 2;
  position: relative;
}

.dd-rows .dd-eyebrow {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--nm-text-tertiary);
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
}

.dd-rows .dd-link {
  color: var(--nm-accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.dd-rows .dd-link:hover {
  color: var(--nm-accent-hover);
  text-decoration: underline;
}

.dd-band-white {
  background: var(--nm-bg);
}

.dd-band-gray {
  background: var(--nm-bg-secondary);
}

.dd-row {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
}

.dd-row h2 {
  letter-spacing: -.03em;
  color: var(--nm-text-primary);
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

.dd-row-copy p {
  color: var(--nm-text-secondary);
  max-width: 56ch;
  margin: 16px 0 20px;
  font-size: 17px;
  line-height: 1.7;
}

.dd-row-visual {
  min-width: 0;
}

.dd-terminal {
  border: 1px solid var(--nm-border);
  color: #a8a8b3;
  background: #111;
  border-radius: 14px;
  padding: 20px 24px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.8;
  overflow-x: auto;
}

.dd-terminal .dd-t-prompt {
  color: #28c840;
}

.dd-terminal .dd-t-ok {
  color: #28c840;
  font-weight: 600;
}

.dd-chips {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.dd-chip {
  background: var(--nm-bg);
  border: 1px solid var(--nm-border-medium);
  color: var(--nm-text-primary);
  letter-spacing: .04em;
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .dd-row {
    grid-template-columns: 1fr;
    padding: 64px 24px;
  }
}

.feature-grid {
  text-align: left;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  display: grid;
}

@media (max-width: 1280px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.hero-flow {
  background: linear-gradient(90deg, #0369a1, #0ea5e9, #22d3ee, #14b8a6, #34c759, #14b8a6, #22d3ee, #0ea5e9, #0369a1) 0 0 / 200% 100%;
  -webkit-text-fill-color: transparent;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  padding-right: .12em;
  animation: 4.5s linear infinite hero-drift;
}

@keyframes hero-drift {
  from {
    background-position: 0%;
  }

  to {
    background-position: -200%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-flow {
    animation: none;
  }
}

.faq-item {
  background: var(--nm-bg-elevated, #fff);
  border: 1px solid var(--nm-border);
  box-shadow: var(--nm-shadow-xs);
  text-align: left;
  border-radius: 18px;
}

.faq-q {
  cursor: pointer;
  letter-spacing: -.01em;
  width: 100%;
  color: var(--nm-text-primary);
  text-align: left;
  background: none;
  border: none;
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  display: flex;
}

.faq-q:focus-visible {
  outline: 2px solid var(--nm-accent);
  outline-offset: -2px;
}

.faq-chevron {
  color: var(--nm-text-tertiary);
  flex-shrink: 0;
  transition: transform .28s;
}

.faq-item[data-open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s;
  display: grid;
}

.faq-item[data-open] .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-a-text {
  color: var(--nm-text-secondary);
  margin: 0;
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .faq-a, .faq-chevron {
    transition: none;
  }
}

/* [project]/apps/web/src/components/FeatureWeb.css [app-client] (css) */
.fweb-scrim {
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, var(--nm-bg) 0%, var(--nm-bg) 72%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fweb-glow {
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(at top, #0a84ff1a, #0000 70%);
  width: 360px;
  height: 200px;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.fweb-links {
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#0000 0, #000 96px);
  mask-image: linear-gradient(#0000 0, #000 96px);
}

.fweb-base {
  fill: none;
  stroke: var(--nm-text-tertiary, #86868b);
  stroke-opacity: .3;
  stroke-width: 1.4px;
  stroke-linecap: round;
}

.fweb-hi {
  fill: none;
  stroke: var(--nm-accent, #0a84ff);
  stroke-width: 2.2px;
  stroke-linecap: round;
  transition: stroke-dashoffset .5s;
}

@media (prefers-reduced-motion: reduce) {
  .fweb-hi {
    transition: none;
  }
}

.fweb-panel {
  text-align: left;
  background: var(--nm-bg-elevated, #fff);
  border: 1px solid var(--nm-accent, #0a84ff);
  box-shadow: 0 0 0 1px var(--nm-accent, #0a84ff), 0 26px 60px #0a84ff24;
  border-radius: 24px;
  align-items: stretch;
  gap: 28px;
  padding: 30px 32px;
  animation: .34s both fweb-panel-in;
  display: flex;
  position: relative;
}

@keyframes fweb-panel-in {
  from {
    transform: translateY(10px);
  }

  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fweb-panel {
    animation: none;
  }
}

.fweb-close {
  border: 1px solid var(--nm-border);
  background: var(--nm-bg);
  width: 30px;
  height: 30px;
  color: var(--nm-text-tertiary);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  transition: color .15s, border-color .15s;
  display: flex;
  position: absolute;
  top: 16px;
  right: 18px;
}

.fweb-close:hover {
  color: var(--nm-text-primary);
  border-color: var(--nm-border-medium);
}

.fweb-visual-col {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
}

.fweb-visual {
  background: var(--nm-bg-secondary);
  border: 1px solid var(--nm-border);
  border-radius: 16px;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  padding: 22px;
  display: flex;
  overflow: hidden;
}

.fweb-panel-body {
  flex: 1;
  min-width: 0;
  padding-right: 22px;
}

.fweb-panel-title {
  letter-spacing: -.02em;
  color: var(--nm-text-primary);
  margin: 2px 0 12px;
  font-size: 26px;
  font-weight: 800;
}

.fweb-panel-desc {
  color: var(--nm-text-secondary);
  max-width: 60ch;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
}

.fweb-caps-label {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nm-text-tertiary);
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
}

.fweb-caps {
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.fweb-cap {
  color: var(--nm-text-primary);
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
}

.fweb-cap-check {
  background: var(--nm-accent-light, #0a84ff1f);
  width: 20px;
  height: 20px;
  color: var(--nm-accent, #0a84ff);
  border-radius: 6px;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.fweb-code {
  border-radius: 12px;
  width: 100%;
  font-size: 11.5px;
  line-height: 1.7;
}

.fweb-chips {
  justify-content: center;
}

.fweb-check {
  flex-direction: column;
  gap: 9px;
  width: 100%;
  font-size: 12.5px;
  display: flex;
}

.fweb-check-row {
  color: var(--nm-text-secondary);
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
  display: flex;
}

.fweb-badge {
  border-radius: 5px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.fweb-badge.ok {
  color: #1a7f37;
  background: #34c75924;
}

.fweb-badge.warn {
  color: #b25e00;
  background: #ff950029;
}

.fweb-check-foot {
  border-top: 1px solid var(--nm-border);
  color: #1a7f37;
  margin-top: 6px;
  padding-top: 9px;
  font-size: 12px;
  font-weight: 600;
}

.fweb-ai-head {
  letter-spacing: -.01em;
  color: var(--nm-text-primary);
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
}

.fweb-bp {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  display: grid;
}

.fweb-bp-card {
  background: var(--nm-bg);
  border: 1px solid var(--nm-border);
  border-radius: 10px;
  padding: 10px;
  transition: border-color .15s;
  display: block;
}

.fweb-bp-card:hover {
  border-color: var(--nm-accent);
}

.fweb-bp-bar {
  border-radius: 2px;
  height: 4px;
  margin-bottom: 8px;
}

.fweb-bp-name {
  color: var(--nm-text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 11.5px;
  font-weight: 700;
  overflow: hidden;
}

.fweb-bp-tags {
  color: var(--nm-text-tertiary);
  margin-top: 2px;
  font-size: 10px;
}

.fweb-fallback {
  border-radius: 12px;
  width: 100%;
  min-height: 200px;
}

@media (max-width: 760px) {
  .fweb-panel {
    flex-direction: column;
    padding: 24px 22px;
  }

  .fweb-visual-col {
    flex: none;
    max-width: 100%;
  }

  .fweb-panel-body {
    padding-right: 0;
  }
}

/* [project]/apps/web/src/components/HeroHeadline.css [app-client] (css) */
.hero-line {
  display: inline-block;
  position: relative;
}

.hero-cfg {
  z-index: 0;
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#0000, #000 22% 78%, #0000);
  mask-image: linear-gradient(#0000, #000 22% 78%, #0000);
}

.hero-cfg-roll {
  animation: 11s linear infinite hero-cfg-roll;
  display: block;
}

.hero-cfg-pre {
  white-space: pre;
  text-align: left;
  letter-spacing: normal;
  color: #0369a1;
  opacity: .52;
  margin: 0;
  font-family: Consolas, Cascadia Code, ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.6;
  display: block;
}

[data-theme="dark"] .hero-cfg-pre {
  color: #4da3ff;
  opacity: .4;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero-cfg-pre {
    color: #4da3ff;
    opacity: .4;
  }
}

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

@keyframes hero-cfg-roll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cfg-roll {
    animation: none;
  }
}

.hl-snap {
  vertical-align: middle;
  -webkit-text-fill-color: initial;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2.3em;
  height: 1em;
  margin: 0 .06em;
  display: inline-flex;
  position: relative;
}

.hl-snap .n {
  background: #14b8a6;
  border-radius: 50%;
  width: .32em;
  height: .32em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hl-snap .nl {
  animation: 2s ease-in-out infinite hl-snap-l;
  left: 6%;
}

.hl-snap .nr {
  animation: 2s ease-in-out infinite hl-snap-r;
  right: 6%;
}

.hl-snap .bar {
  background: var(--nm-accent, #0a84ff);
  width: 0;
  height: 2.5px;
  box-shadow: 0 0 8px var(--nm-accent, #0a84ff);
  border-radius: 2px;
  animation: 2s ease-in-out infinite hl-snap-bar;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes hl-snap-l {
  0% {
    left: 6%;
  }

  45%, 80% {
    left: 33%;
  }

  100% {
    left: 6%;
  }
}

@keyframes hl-snap-r {
  0% {
    right: 6%;
  }

  45%, 80% {
    right: 33%;
  }

  100% {
    right: 6%;
  }
}

@keyframes hl-snap-bar {
  0%, 30% {
    opacity: 0;
    width: 0;
  }

  50%, 80% {
    opacity: 1;
    width: 34%;
  }

  100% {
    opacity: 0;
    width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hl-snap .nl {
    animation: none;
    left: 33%;
  }

  .hl-snap .nr {
    animation: none;
    right: 33%;
  }

  .hl-snap .bar {
    opacity: 1;
    width: 34%;
    animation: none;
  }
}

/*# sourceMappingURL=apps_web_src_0xjk_bi._.css.map*/