/*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[3]!./app/(marketing)/marketing.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************/
.m-page {
  --marketing-bg: #f8fafc;
  --marketing-bg-subtle: #f1f5f9;
  --surface: #ffffff;
  --brand: #4f46e5;
  --brand-hover: #4338ca;
  --brand-soft: #eef2ff;
  --accent: #14b8a6;
  --accent-soft: #ecfdf5;
  --accent-ink: #0f766e;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 50% 8%, rgba(79, 70, 229, 0.06), transparent 42%),
    var(--marketing-bg);
}

.m-page .brand-letter {
  color: var(--brand);
  text-shadow: none;
  animation: none;
}

.m-page .bg-primary {
  background-color: var(--brand);
}

.m-header {
  border-bottom: 1px solid transparent;
  background: rgba(248, 250, 252, 0.42);
  backdrop-filter: blur(10px);
  transition:
    box-shadow 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease,
    transform 280ms ease;
}

.m-header.is-scrolled {
  background: rgba(248, 250, 252, 0.9);
  border-bottom-color: var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.m-header.is-hidden {
  transform: translateY(-110%);
}

.m-nav-link {
  color: var(--text-secondary);
  transition: color 200ms ease;
}

.m-nav-link:hover {
  color: var(--text-primary);
}

.m-footer {
  background: #0f172a;
  color: #fff;
}

.m-footer-muted {
  color: #94a3b8;
}

.m-footer a {
  color: #94a3b8;
  transition: color 200ms ease;
}

.m-footer a:hover {
  color: #fff;
}

.m-footer-brand {
  color: #818cf8;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.m-band {
  background: transparent;
}

.m-band-tint {
  background: var(--marketing-bg-subtle);
}

.m-kicker {
  display: block;
  color: var(--brand);
  font-size: clamp(1.75rem, 1.15rem + 2.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.m-heading {
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.m-section-title,
.m-subhead {
  font-size: clamp(1.125rem, 1rem + 0.55vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.m-copy {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

.m-btn {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  font-weight: 600;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease,
    color 250ms ease;
}

.m-btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.22);
}

.m-btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.28);
}

.m-btn-primary:hover .m-btn-arrow {
  transform: translateX(4px);
}

.m-btn-arrow {
  display: inline-flex;
  transition: transform 250ms ease;
}

.m-btn-ghost,
.m-btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.m-btn-ghost:hover,
.m-btn-secondary:hover {
  background: var(--brand-soft);
  border-color: rgba(79, 70, 229, 0.35);
}

.m-chip {
  background: var(--surface);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    background 250ms ease,
    border-color 250ms ease,
    color 250ms ease;
}

.m-chip-on {
  background: var(--brand-soft);
  border-color: rgba(79, 70, 229, 0.4);
  color: var(--brand);
}

.m-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.m-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.38), transparent);
}

@media (min-width: 640px) {
  .m-card {
    padding: 1.75rem;
  }
}

.m-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.m-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.m-icon {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}

.m-icon-accent {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.m-icon-sm {
  height: 1.7rem;
  width: 1.7rem;
  border-radius: 8px;
}

.m-card .m-kicker,
.m-feature-card .m-kicker {
  font-size: clamp(1.2rem, 1.05rem + 0.8vw, 1.55rem);
  letter-spacing: -0.02em;
}

.m-card-title {
  margin-top: 0.2rem;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.4;
}

.m-card-copy {
  margin-top: 0.55rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.m-demo {
  margin-top: 1.1rem;
}

.m-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.m-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 12px;
  background: var(--marketing-bg-subtle);
}

.m-tab {
  min-height: 3rem;
  border: 0;
  border-radius: 10px;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
}

.m-tab-on {
  background: var(--surface);
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.m-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  margin-top: -4.5rem;
  overflow: hidden;
}

.m-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0f172a;
  transform-origin: center center;
}

.m-hero-media-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.m-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgb(248, 250, 252) 0%,
    rgba(248, 250, 252, 0.92) 28%,
    rgba(248, 250, 252, 0.58) 52%,
    rgba(248, 250, 252, 0.18) 78%,
    rgba(248, 250, 252, 0.08) 100%
  );
}

@media (max-width: 767px) {
  .m-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(248, 250, 252, 0.94) 0%,
      rgba(248, 250, 252, 0.82) 46%,
      rgba(248, 250, 252, 0.42) 100%
    );
  }
}

.m-frame {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.02),
    0 28px 70px rgba(15, 23, 42, 0.12);
}

.m-frame-chrome {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.m-frame-body {
  padding: 1rem 1.05rem 1.15rem;
  background:
    radial-gradient(120% 70% at 100% 0%, rgba(79, 70, 229, 0.07), transparent 48%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 72%);
}

.m-product-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

@media (min-width: 1024px) {
  .m-kpi-grid:not(.m-kpi-grid-2):not(.m-kpi-grid-3) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.m-kpi-grid-3 .m-kpi {
  min-height: 7.1rem;
  padding: 0.85rem 0.75rem 0.75rem;
}

.m-kpi-grid-3 .m-kpi-value {
  font-size: 1.4rem;
}

.m-kpi-grid-3 .m-kpi-icon {
  height: 2.15rem;
  width: 2.15rem;
  border-radius: 12px;
}

.m-dot-r { background: #fb7185; }
.m-dot-a { background: #fbbf24; }
.m-dot-g { background: #34d399; }

.m-kpi {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 8.25rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  padding: 1rem 0.95rem 0.9rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 28px rgba(15, 23, 42, 0.05);
}

.m-kpi::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.55), rgba(79, 70, 229, 0.05));
}

.m-kpi-accent::before {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.65), rgba(20, 184, 166, 0.05));
}

.m-kpi::after {
  content: "";
  position: absolute;
  right: -1.25rem;
  bottom: -1.5rem;
  z-index: 0;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12), transparent 68%);
  pointer-events: none;
}

.m-kpi-accent::after {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.16), transparent 68%);
}

.m-kpi-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.m-kpi-icon {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 100%);
  color: var(--brand);
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.14);
}

.m-kpi-accent .m-kpi-icon {
  background: linear-gradient(180deg, #ecfdf5 0%, #ccfbf1 100%);
  color: var(--accent-ink);
  box-shadow: 0 6px 14px rgba(20, 184, 166, 0.16);
}

.m-kpi-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.m-kpi-value {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
}

.m-kpi-hint {
  position: relative;
  z-index: 1;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.m-kpi-live {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.m-kpi.is-live .m-kpi-label {
  color: var(--accent-ink);
}

.m-kpi-ring {
  width: 2.4rem;
  height: 2.4rem;
  transform: rotate(-90deg);
}

.m-kpi-ring-track,
.m-kpi-ring-fill {
  fill: none;
  stroke-width: 4;
}

.m-kpi-ring-track {
  stroke: #e2e8f0;
}

.m-kpi-ring-fill {
  stroke: var(--brand);
  stroke-linecap: round;
}

.m-kpi-accent .m-kpi-ring-track {
  stroke: #e2e8f0;
}

.m-kpi-accent .m-kpi-ring-fill {
  stroke: var(--accent);
}

.m-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 1.85rem;
}

.m-spark span {
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(180deg, #818cf8 0%, #4f46e5 100%);
}

.m-spark span:nth-child(1) { height: 28%; }
.m-spark span:nth-child(2) { height: 42%; }
.m-spark span:nth-child(3) { height: 36%; }
.m-spark span:nth-child(4) { height: 58%; }
.m-spark span:nth-child(5) { height: 52%; }
.m-spark span:nth-child(6) { height: 76%; }
.m-spark span:nth-child(7) { height: 92%; }

.m-kpi-accent .m-spark span {
  background: linear-gradient(180deg, #5eead4 0%, #14b8a6 100%);
}

.m-panel {
  border-radius: 22px;
  padding: 1rem 1.05rem 1.05rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 28px rgba(15, 23, 42, 0.045);
}

.m-chart-head,
.m-ai-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.m-chart-head {
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.m-chart-badge {
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand);
  background: var(--brand-soft);
}

.m-chart-svg {
  display: block;
  width: 100%;
  height: 4.5rem;
  margin-top: 0.15rem;
  color: var(--brand);
}

.m-ai-head {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.m-ai-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.m-ai-head .m-kpi-hint {
  margin-top: 0.1rem;
}

.m-ai-head .m-row-pill {
  margin-left: auto;
}

.m-row-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.m-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 16px;
  padding: 0.7rem 0.8rem;
  font-size: 0.8125rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.m-row-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.m-row-avatar {
  display: inline-flex;
  height: 1.7rem;
  width: 1.7rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
}

.m-row-pill {
  margin-left: auto;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
}

.m-row-pill-ok {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.m-row-pill-warn {
  background: var(--brand-soft);
  color: var(--brand);
}

.m-row-pill-bad {
  background: var(--marketing-bg-subtle);
  color: var(--text-muted);
}

.m-hifz-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.35rem;
}

.m-hifz-cell {
  display: flex;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.5625rem;
  font-weight: 700;
}

.m-hifz-done {
  background: var(--brand);
  color: #fff;
}

.m-hifz-progress {
  background: var(--accent);
  color: #fff;
}

.m-hifz-empty {
  background: var(--marketing-bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.m-day {
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.m-day-ok {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.m-day-off {
  background: var(--marketing-bg-subtle);
  color: var(--text-muted);
}

.m-track {
  height: 0.4rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--brand-soft);
}

.m-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--brand);
  transform-origin: left center;
}

.m-spark-fill {
  fill: currentColor;
  opacity: 0.14;
}

.m-ribbon {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 0.85rem 0;
}

.m-ribbon-track {
  display: flex;
  width: max-content;
}

.m-ribbon-item {
  display: inline-flex;
  align-items: center;
  padding: 0 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.m-ribbon-item::before {
  content: "•";
  margin-right: 0.75rem;
  color: var(--brand);
}

.m-stages {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .m-stages {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0.75rem;
  }
}

.m-stage-join {
  display: none;
}

@media (min-width: 1024px) {
  .m-stage-join {
    display: block;
    width: 2.5rem;
    align-self: center;
    height: 2px;
    background: var(--border-strong);
    transform-origin: left center;
  }
}

.m-stage-solution {
  border-color: rgba(79, 70, 229, 0.28);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.08);
}

.m-stage-result .m-icon {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.m-timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.m-timeline-track,
.m-timeline-fill {
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 1.35rem;
  width: 2px;
  pointer-events: none;
}

.m-timeline-track {
  background: var(--border-strong);
}

.m-timeline-fill {
  background: var(--brand);
  transform-origin: top center;
}

@media (min-width: 1024px) {
  .m-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .m-timeline-track,
  .m-timeline-fill {
    top: 1.35rem;
    bottom: auto;
    left: 8%;
    right: 8%;
    width: auto;
    height: 2px;
    transform-origin: left center;
  }
}

.m-step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 700;
  border: 2px solid var(--marketing-bg);
}

.m-step-num.is-on {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.m-faq {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  padding: 0.25rem 0;
}

.m-faq:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.m-faq summary {
  color: var(--text-primary);
  font-weight: 650;
  gap: 0.75rem;
}

.m-faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 500;
}

.m-faq[open] summary::after {
  content: "–";
}

.m-faq p {
  color: var(--text-secondary);
}

.m-cta-band {
  background: #0f172a;
  color: #fff;
  border-radius: 28px;
}

.m-cta-band h2,
.m-cta-band p {
  color: #fff;
}

.m-cta-band .m-section-title {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
}

.m-cta-muted {
  color: #94a3b8;
}

.m-role-preview {
  transition: opacity 400ms ease, transform 400ms ease;
}

.m-divider {
  height: 1px;
  width: 100%;
  background: rgba(79, 70, 229, 0.28);
  transform-origin: left center;
}

.m-mask-inner {
  display: block;
}

.m-kinetic-word {
  line-height: 0.92;
  will-change: transform;
}

.m-ribbon:hover .m-ribbon-track {
  animation-play-state: paused;
}

.m-story-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
}

.m-story-frame:first-child {
  opacity: 1;
}

@media (min-width: 1024px) {
  [data-m-story] {
    position: relative;
    z-index: 1;
  }
}

.m-cursor-hint {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  padding: 0.35rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.m-reveal {
  opacity: 1;
  transform: none;
}

.m-journey {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .m-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .m-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: no-preference) {
  .m-page .brand-name {
    animation: m-brand-in 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .m-role-preview {
    animation: m-role-in 400ms ease forwards;
  }

  .m-role-preview .m-kpi,
  .m-role-preview .m-row,
  .m-role-preview .m-panel {
    animation: m-ui-in 420ms ease forwards;
  }

  .m-role-preview .m-kpi:nth-child(2) {
    animation-delay: 70ms;
  }

  .m-role-preview .m-kpi:nth-child(3) {
    animation-delay: 140ms;
  }

  .m-role-preview .m-panel {
    animation-delay: 160ms;
  }

  .m-kpi.is-live .m-kpi-live {
    animation: m-live-pulse 1.6s ease-out infinite;
  }

  .m-ai-dots i {
    animation: m-ai-dot 1s ease-in-out infinite;
  }

  .m-ai-dots i:nth-child(2) {
    animation-delay: 0.15s;
  }

  .m-ai-dots i:nth-child(3) {
    animation-delay: 0.3s;
  }

  @keyframes m-live-pulse {
    0%,
    100% {
      box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
    }
    50% {
      box-shadow: 0 0 0 7px rgba(20, 184, 166, 0.08);
    }
  }

  @keyframes m-ai-dot {
    0%,
    80%,
    100% {
      opacity: 0.25;
      transform: translateY(0);
    }
    40% {
      opacity: 1;
      transform: translateY(-2px);
    }
  }

  [data-m-ai-wait] {
    animation: m-ai-wait 0.7s ease 0.4s forwards;
  }

  .m-ribbon-track {
    animation: m-marquee 36s linear infinite;
  }

  @keyframes m-brand-in {
    from {
      opacity: 0;
      transform: translateY(6px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes m-role-in {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes m-ui-in {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes m-ai-wait {
    to {
      opacity: 0;
    }
  }
  @keyframes m-marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .m-btn:hover,
  .m-card:hover,
  .m-reveal,
  .m-page .brand-name,
  .m-role-preview,
  .m-ribbon-track,
  .m-header.is-hidden {
    transform: none;
    animation: none;
  }
}

.m-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 0;
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.m-feature-card-visual {
  position: relative;
  isolation: isolate;
  min-height: 8.75rem;
  padding: 1.15rem 1.2rem 0.9rem;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(79, 70, 229, 0.18), transparent 56%),
    linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
}

.m-feature-card-visual.is-accent {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(20, 184, 166, 0.18), transparent 56%),
    linear-gradient(180deg, #ecfdf5 0%, #f8fafc 100%);
}

.m-feature-card-num {
  position: absolute;
  right: 0.7rem;
  top: 0.2rem;
  z-index: 0;
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  color: rgba(79, 70, 229, 0.16);
  pointer-events: none;
}

.m-feature-card-visual.is-accent .m-feature-card-num {
  color: rgba(20, 184, 166, 0.22);
}

.m-feature-card-demo {
  position: relative;
  z-index: 1;
  min-height: 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.m-feature-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.m-scroll-carousel-spacer.is-live {
  position: relative;
}

.m-scroll-carousel {
  position: relative;
  padding-bottom: 0.5rem;
}

.m-scroll-carousel-progress,
.m-scroll-carousel-hint,
.m-stack-slider-hint {
  display: none;
}

.m-scroll-carousel-progress {
  height: 3px;
  margin-bottom: 1.15rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--brand-soft);
}

.m-scroll-carousel-progress span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
}

.m-scroll-carousel-viewport {
  width: 100%;
}

.m-scroll-carousel-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  width: 100%;
}

.m-scroll-carousel-hint,
.m-stack-slider-hint {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.m-stack-slider {
  position: relative;
  display: grid;
  gap: 1.1rem;
  outline: none;
}

.m-stack-slider-item {
  position: relative;
}

.m-ai-thread {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.m-ai-bubble {
  max-width: 88%;
  border-radius: 18px;
  padding: 0.7rem 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.m-ai-bubble-q {
  align-self: flex-end;
  background: var(--brand);
  color: #fff;
  border-bottom-right-radius: 6px;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.22);
}

.m-ai-bubble-a {
  align-self: flex-start;
  background: var(--marketing-bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-bottom-left-radius: 6px;
}

.m-ai-wait {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.m-ai-dots {
  display: inline-flex;
  gap: 0.2rem;
}

.m-ai-dots i {
  display: block;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.35;
}

@media (min-width: 640px) {
  .m-scroll-carousel-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .m-scroll-carousel-spacer.is-live .m-scroll-carousel {
    position: sticky;
    z-index: 2;
    padding-bottom: 1.25rem;
  }

  .m-scroll-carousel.is-live {
    user-select: none;
  }

  .m-scroll-carousel.is-live .m-scroll-carousel-progress,
  .m-scroll-carousel.is-live .m-scroll-carousel-hint {
    display: block;
  }

  .m-scroll-carousel.is-live .m-scroll-carousel-viewport {
    overflow: hidden;
    padding: 0.35rem 0 0.75rem;
    cursor: grab;
  }

  .m-scroll-carousel.is-live .m-scroll-carousel-viewport:active {
    cursor: grabbing;
  }

  .m-scroll-carousel.is-live .m-scroll-carousel-row {
    display: flex;
    width: max-content;
    gap: 1.15rem;
    will-change: transform;
  }

  .m-scroll-carousel.is-live .m-feature-card {
    flex: 0 0 22rem;
    width: 22rem;
  }

  .m-scroll-carousel.is-live .m-feature-card-visual {
    min-height: 6.1rem;
    padding: 0.9rem 1rem 0.7rem;
  }

  .m-scroll-carousel.is-live .m-feature-card-body {
    padding: 0.8rem 1.05rem 0.95rem;
  }

  .m-scroll-carousel.is-live .m-card-copy {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .m-scroll-carousel.is-live .m-feature-card-num {
    font-size: 2.7rem;
  }

  .m-stack-slider.is-live {
    display: block;
    height: 34rem;
    perspective: 1400px;
    user-select: none;
    touch-action: pan-y;
  }

  .m-stack-slider.is-live .m-stack-slider-item {
    position: absolute;
    left: 50%;
    top: 48%;
    width: min(22.5rem, 86%);
    margin-left: calc(min(22.5rem, 86%) / -2);
    margin-top: -11.5rem;
    transform-origin: center center;
    cursor: grab;
    will-change: transform, opacity;
  }

  .m-stack-slider.is-live .m-stack-slider-item:active {
    cursor: grabbing;
  }

  .m-stack-slider.is-live .m-stack-slider-hint {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.25rem;
    margin-top: 0;
    text-align: center;
  }
}

@media (hover: hover) and (pointer: fine) {
  .m-scroll-carousel:not(.is-live) .m-feature-card:hover,
  .m-stack-slider:not(.is-live) .m-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  }
}

@media (max-width: 639px) {
  .m-hero-cta {
    width: 100%;
  }
}

.m-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.m-intro[hidden] {
  display: none !important;
}

.m-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  text-align: center;
}

.m-intro-logo {
  opacity: 0;
}

.m-intro-logo img {
  display: block;
  height: clamp(2.75rem, 8vw, 4.75rem);
  width: auto;
}

.m-intro-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 22rem;
  margin: 0;
  color: var(--brand);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.m-intro-word {
  display: inline-block;
  margin-right: 0.38em;
  opacity: 0;
}

.m-intro-word:last-child {
  margin-right: 0;
}

@media (prefers-reduced-motion: reduce) {
  .m-intro {
    display: none;
  }
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[2].use[1]!../../node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[15].oneOf[2].use[2]!../../node_modules/next/font/google/target.css?{"path":"app/(marketing)/layout.tsx","import":"Source_Serif_4","arguments":[{"subsets":["latin"],"variable":"--font-source-serif","display":"swap"}],"variableName":"sourceSerif"} ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(/_next/static/media/3d165c286d94e27c-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(/_next/static/media/e54d16b9f2c4535b-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(/_next/static/media/7c21074d9bafed1b-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(/_next/static/media/916860560b9a2bc2-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(/_next/static/media/591e43f23f51e5a5-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(/_next/static/media/97ac91773d3121b2-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'Source Serif 4 Fallback';src: local("Times New Roman");ascent-override: 87.87%;descent-override: 28.41%;line-gap-override: 0.00%;size-adjust: 117.91%
}.__className_25ee46 {font-family: 'Source Serif 4', 'Source Serif 4 Fallback';font-style: normal
}.__variable_25ee46 {--font-source-serif: 'Source Serif 4', 'Source Serif 4 Fallback'
}

