/* Public landing — isolated from the authenticated application. */

.landing-home {
  --landing-ink: #07111f;
  --landing-ink-soft: #0d1b30;
  --landing-blue: #3b82f6;
  --landing-blue-strong: #2563eb;
  --landing-blue-soft: #dbeafe;
  --landing-cyan: #67e8f9;
  --landing-green: #34d399;
  --landing-paper: #f5f7fb;
  --landing-panel: #ffffff;
  --landing-line: #dfe5ef;
  --landing-text: #101828;
  --landing-muted: #667085;
  --landing-shadow: 0 30px 80px rgba(3, 11, 24, 0.18);
  min-height: 100vh;
  overflow: clip;
  color: var(--landing-text);
  background: var(--landing-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.landing-home a:focus-visible,
.landing-home button:focus-visible {
  outline: 3px solid #67e8f9;
  outline-offset: 4px;
}

.landing-home main:focus {
  outline: none;
}

.landing-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 10px;
  color: #07111f;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.landing-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.landing-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 31, 0.94);
  backdrop-filter: blur(18px);
}

.landing-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: min(1280px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.landing-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(145deg, #4f8cff, #2256cf);
  box-shadow: 0 9px 25px rgba(47, 111, 237, 0.35);
  font-size: 16px;
  font-weight: 900;
}

.landing-brand-mark .brand-logo {
  width: 25px;
  height: 25px;
}

.landing-brand-footer .landing-brand-mark .brand-logo {
  width: 22px;
  height: 22px;
}

.landing-brand-copy {
  display: grid;
  gap: 1px;
}

.landing-brand-copy strong {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.landing-brand-copy span {
  color: #9fb0c8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-home .landing-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #bdc8d8;
  font-size: 13px;
  font-weight: 700;
}

.landing-home .landing-nav-links a {
  position: relative;
  min-height: 44px;
  padding: 13px 2px;
}

.landing-home .landing-nav-links a::after {
  position: absolute;
  right: 50%;
  bottom: 7px;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  background: var(--landing-cyan);
  content: "";
  transition: right 0.2s ease, left 0.2s ease;
}

.landing-home .landing-nav-links a:hover {
  color: #ffffff;
}

.landing-home .landing-nav-links a:hover::after {
  right: 2px;
  left: 2px;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}

.landing-nav-login {
  min-height: 44px;
  padding: 13px 3px;
  color: #d5ddea;
  font-size: 13px;
  font-weight: 800;
}

.landing-nav-login:hover {
  color: #ffffff;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.landing-button:hover {
  transform: translateY(-2px);
}

.landing-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #367df6, #2157d5);
  box-shadow: 0 12px 28px rgba(47, 111, 237, 0.32);
}

.landing-button-primary:hover {
  box-shadow: 0 17px 36px rgba(47, 111, 237, 0.42);
}

.landing-button-compact {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 10px;
  font-size: 12px;
}

.landing-button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #e7edf6;
  background: rgba(255, 255, 255, 0.05);
}

.landing-button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.landing-home .landing-hero {
  position: relative;
  display: block;
  max-width: none;
  min-height: 100svh;
  margin: 0;
  padding: 76px 0 52px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 20%, rgba(59, 130, 246, 0.24), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(52, 211, 153, 0.08), transparent 26%),
    linear-gradient(150deg, #07111f 0%, #0a1729 58%, #071322 100%);
}

.landing-home .landing-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
}

.landing-hero-glow {
  position: absolute;
  top: 8%;
  left: 47%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: 0.42;
  background: #144aab;
  filter: blur(120px);
  pointer-events: none;
}

.landing-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 74px;
  min-height: calc(100svh - 128px);
  padding: 54px 0 48px;
}

.landing-hero-copy {
  position: relative;
  z-index: 3;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: #b7c8de;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-eyebrow > span {
  width: 24px;
  height: 1px;
  background: var(--landing-cyan);
  box-shadow: 0 0 10px rgba(103, 232, 249, 0.6);
}

.landing-eyebrow-dark {
  color: #526173;
}

.landing-eyebrow-dark > span {
  background: var(--landing-blue);
  box-shadow: none;
}

.landing-home .landing-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.landing-hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: #adbbcf;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
}

.landing-home .landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.landing-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  color: #91a2ba;
  list-style: none;
  font-size: 12px;
  font-weight: 750;
}

.landing-hero-facts li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.landing-hero-facts li span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 50%;
  color: var(--landing-green);
  background: rgba(52, 211, 153, 0.08);
  font-size: 10px;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
  perspective: 1300px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(103, 232, 249, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  inset: 28px 10px 28px 28px;
  animation: landing-orbit 18s linear infinite;
}

.hero-orbit-two {
  inset: 92px 74px 86px 92px;
  border-color: rgba(59, 130, 246, 0.18);
  animation: landing-orbit 14s linear infinite reverse;
}

.hero-dashboard-window {
  position: absolute;
  top: 55px;
  right: 0;
  width: min(660px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: #f7f9fc;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
  transform: rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
  animation: landing-window-float 7s ease-in-out infinite;
}

.hero-window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid #e2e7ef;
  color: #667085;
  background: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.hero-window-dots {
  display: flex;
  gap: 5px;
}

.hero-window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7dde7;
}

.hero-window-status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: #288865;
}

.hero-window-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.13);
}

.hero-dashboard-body {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 400px;
}

.hero-side-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  background: #101a2a;
}

.hero-side-rail span {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
}

.hero-side-rail span.is-active {
  border-color: #6ea3ff;
  background: #2f6fed;
  box-shadow: 0 0 0 5px rgba(47, 111, 237, 0.16);
}

.hero-dashboard-content {
  padding: 24px;
}

.hero-dashboard-heading,
.hero-card-title,
.mock-chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-dashboard-heading {
  margin-bottom: 18px;
  color: #101828;
  font-size: 15px;
  font-weight: 850;
}

.hero-filter-pill {
  padding: 7px 10px;
  border: 1px solid #dde3ec;
  border-radius: 8px;
  color: #667085;
  background: #ffffff;
  font-size: 8px;
}

.hero-kpi-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-kpi-card,
.hero-mini-card,
.hero-chart-card {
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.045);
}

.hero-kpi-card,
.hero-mini-card {
  display: grid;
  gap: 5px;
  padding: 15px 17px;
}

.hero-kpi-card span,
.hero-mini-card span {
  color: #667085;
  font-size: 9px;
  font-weight: 750;
}

.hero-kpi-card strong {
  color: #101828;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.hero-mini-card strong {
  color: #101828;
  font-size: 20px;
}

.hero-kpi-card small,
.hero-mini-card i {
  color: #29906a;
  font-size: 8px;
  font-style: normal;
  font-weight: 750;
}

.hero-chart-card {
  padding: 16px 18px 12px;
}

.hero-card-title {
  color: #344054;
  font-size: 9px;
  font-weight: 800;
}

.hero-card-title i {
  color: #98a2b3;
  font-style: normal;
  letter-spacing: 0.15em;
}

.hero-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 13px;
  height: 150px;
  margin-top: 16px;
  padding: 12px 14px 0;
  border-bottom: 1px solid #e7ebf1;
  background-image: linear-gradient(to bottom, #eef1f5 1px, transparent 1px);
  background-size: 100% 33.333%;
}

.hero-chart-bars span {
  flex: 1;
  height: 50%;
  border-radius: 5px 5px 1px 1px;
  background: linear-gradient(180deg, #62a0ff, #2f6fed);
  box-shadow: 0 -6px 20px rgba(47, 111, 237, 0.13);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: landing-bar-grow 0.85s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.hero-chart-bars span:nth-child(1) { height: 34%; animation-delay: 0.12s; }
.hero-chart-bars span:nth-child(2) { height: 52%; animation-delay: 0.18s; }
.hero-chart-bars span:nth-child(3) { height: 47%; animation-delay: 0.24s; }
.hero-chart-bars span:nth-child(4) { height: 76%; animation-delay: 0.30s; }
.hero-chart-bars span:nth-child(5) { height: 66%; animation-delay: 0.36s; }
.hero-chart-bars span:nth-child(6) { height: 92%; animation-delay: 0.42s; }

.hero-chart-axis {
  display: flex;
  justify-content: space-around;
  padding: 8px 18px 0;
  color: #98a2b3;
  font-size: 8px;
  font-weight: 700;
}

.hero-floating-file,
.hero-floating-insight {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #dfe8f5;
  background: rgba(13, 27, 48, 0.88);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.hero-floating-file {
  bottom: 40px;
  left: -26px;
  gap: 11px;
  min-width: 230px;
  padding: 12px 13px;
  border-radius: 13px;
  animation: landing-float 5s ease-in-out infinite 0.8s;
}

.hero-file-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.13);
  font-size: 8px;
  font-weight: 900;
}

.hero-floating-file > span:nth-child(2) {
  display: grid;
  flex: 1;
  gap: 2px;
}

.hero-floating-file strong,
.hero-floating-insight strong {
  color: #ffffff;
  font-size: 10px;
}

.hero-floating-file small,
.hero-floating-insight small,
.hero-floating-insight > span {
  color: #91a2ba;
  font-size: 8px;
}

.hero-floating-file > i {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #07111f;
  background: #34d399;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.hero-floating-insight {
  top: 18px;
  right: -20px;
  display: grid;
  gap: 3px;
  min-width: 166px;
  padding: 13px 15px;
  border-radius: 13px;
  animation: landing-float 5.8s ease-in-out infinite 0.2s reverse;
}

.hero-floating-insight small {
  color: #67e8f9;
  font-weight: 800;
}

.landing-scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #7f91aa;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.landing-scroll-cue i {
  position: relative;
  display: block;
  width: 21px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.landing-scroll-cue i::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: #67e8f9;
  content: "";
  transform: translateX(-50%);
  animation: landing-scroll-dot 1.7s ease-in-out infinite;
}

.landing-story {
  position: relative;
  padding: 112px 0 132px;
  background:
    radial-gradient(circle at 80% 16%, rgba(59, 130, 246, 0.07), transparent 28%),
    #f5f7fb;
  scroll-margin-top: 74px;
}

.story-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.story-heading h2,
.landing-trust-heading h2,
.landing-final-content h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 780;
  line-height: 1.05;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.story-heading > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--landing-muted);
  font-size: 17px;
  line-height: 1.65;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(570px, 1.3fr);
  align-items: start;
  gap: 76px;
}

.story-copy {
  min-width: 0;
}

.story-progress {
  margin-bottom: 8px;
  padding: 16px 0 18px;
}

.story-progress-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 11px;
  color: #667085;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-progress-label strong {
  color: #2563eb;
}

.story-progress-track {
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe5ee;
}

.story-progress-track > span {
  display: block;
  width: var(--story-progress, 20%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.4);
  transition: width 0.45s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.story-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-content: center;
  gap: 16px;
  min-height: 68vh;
  padding: 56px 2px;
  border-top: 1px solid #dfe5ee;
  opacity: 0.38;
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.story-step:last-child {
  border-bottom: 1px solid #dfe5ee;
}

.story-step.is-active {
  opacity: 1;
  transform: translateX(8px);
}

.story-step.is-complete {
  opacity: 0.58;
}

.story-step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d9e0ea;
  border-radius: 13px;
  color: #8190a4;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(16, 24, 40, 0.05);
  font-size: 11px;
  font-weight: 900;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.story-step.is-active .story-step-number,
.story-step.is-complete .story-step-number {
  border-color: #2f6fed;
  color: #ffffff;
  background: #2f6fed;
  box-shadow: 0 10px 24px rgba(47, 111, 237, 0.24);
}

.story-step-kicker {
  margin: 1px 0 8px;
  color: #2f6fed;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story-step h3 {
  margin: 0;
  color: #101828;
  font-size: clamp(26px, 2.6vw, 35px);
  font-weight: 780;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.story-step > div > p:not(.story-step-kicker) {
  margin: 15px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.72;
}

.story-step-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #344054;
  font-size: 11px;
  font-weight: 800;
}

.story-step-detail i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #067647;
  background: #d1fadf;
  font-size: 10px;
  font-style: normal;
}

.story-mobile-preview {
  display: none;
}

.story-visual-column {
  align-self: stretch;
}

.story-stage {
  position: sticky;
  top: 108px;
  display: grid;
  place-items: center;
  min-height: min(660px, calc(100vh - 132px));
}

.story-stage-aura {
  position: absolute;
  width: 84%;
  height: 72%;
  border-radius: 50%;
  opacity: 0.42;
  background: rgba(47, 111, 237, 0.22);
  filter: blur(85px);
}

.mock-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  border: 1px solid rgba(15, 35, 64, 0.15);
  border-radius: 21px;
  background: #ffffff;
  box-shadow: var(--landing-shadow);
}

.mock-window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid #e4e8ef;
  color: #667085;
  background: #fbfcfe;
  font-size: 9px;
  font-weight: 800;
}

.mock-window-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #344054;
}

.mock-window-brand i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  color: #ffffff;
  background: #2f6fed;
  font-size: 8px;
  font-style: normal;
}

.mock-window-brand i .brand-logo {
  width: 14px;
  height: 14px;
}

.mock-window-dots {
  display: flex;
  gap: 5px;
}

.mock-window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5dce7;
}

.mock-window-user {
  justify-self: end;
  width: 24px;
  height: 24px;
  border: 4px solid #e9efff;
  border-radius: 50%;
  background: #7aa4f8;
}

.mock-window-body {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  height: 492px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 25px;
  background: #111b2b;
}

.mock-sidebar span {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
}

.mock-sidebar span.is-active {
  border-color: #5d95f7;
  background: #2f6fed;
}

.mock-workspace {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 35, 64, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 35, 64, 0.025) 1px, transparent 1px),
    #f4f6f9;
  background-size: 22px 22px;
}

.mock-scene {
  position: absolute;
  inset: 0;
  padding: 26px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.42s ease, transform 0.52s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.landing-story[data-active-step="1"] .mock-upload,
.landing-story[data-active-step="2"] .mock-data,
.landing-story[data-active-step="3"] .mock-builder,
.landing-story[data-active-step="4"] .mock-dashboard,
.landing-story[data-active-step="5"] .mock-dashboard {
  z-index: 2;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.landing-story[data-active-step="5"] .mock-dashboard {
  transform: translateY(-7px) scale(0.975);
}

.mock-scene-heading,
.mock-dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.mock-scene-heading > span,
.mock-dashboard-heading > span {
  display: grid;
  gap: 3px;
}

.mock-scene-heading small,
.mock-dashboard-heading small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mock-dashboard-step i,
.mock-dashboard-step b {
  font-style: normal;
  font-weight: 850;
}

.mock-dashboard-step b {
  display: none;
}

.landing-story[data-active-step="5"] .mock-dashboard-step i {
  display: none;
}

.landing-story[data-active-step="5"] .mock-dashboard-step b {
  display: inline;
}

.mock-scene-heading strong,
.mock-dashboard-heading strong {
  color: #101828;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.mock-status-pill,
.mock-filter-pill {
  padding: 7px 9px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  color: #667085;
  background: #ffffff;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.mock-status-success {
  border-color: #a6f4c5;
  color: #067647;
  background: #ecfdf3;
}

.mock-upload-card {
  display: grid;
  place-items: center;
  min-height: 198px;
  padding: 28px;
  border: 2px dashed #aebbd0;
  border-radius: 15px;
  color: #344054;
  background: rgba(255, 255, 255, 0.74);
}

.mock-upload-card strong {
  margin-top: 12px;
  font-size: 13px;
}

.mock-upload-card small {
  margin-top: 5px;
  color: #98a2b3;
  font-size: 9px;
}

.mock-upload-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #c7d7f5;
  border-radius: 14px;
  color: #2f6fed;
  background: #eaf1ff;
  font-size: 22px;
  font-weight: 700;
}

.mock-upload-file {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 15px;
  padding: 12px;
  border: 1px solid #dfe5ee;
  border-radius: 11px;
  background: #ffffff;
  transform: translateY(7px);
  transition: transform 0.45s ease 0.15s;
}

.landing-story[data-active-step="1"] .mock-upload-file {
  transform: translateY(0);
}

.mock-file-badge {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 9px;
  color: #067647;
  background: #d1fadf;
  font-size: 8px;
  font-weight: 900;
}

.mock-upload-file > span:nth-child(2) {
  display: grid;
  flex: 1;
  gap: 2px;
}

.mock-upload-file strong {
  color: #344054;
  font-size: 10px;
}

.mock-upload-file small {
  color: #98a2b3;
  font-size: 8px;
}

.mock-file-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: #12b76a;
  font-size: 10px;
  font-style: normal;
}

.mock-upload-progress {
  height: 4px;
  margin: 10px 3px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #e7ebf1;
}

.mock-upload-progress i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f6fed, #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  animation: mock-upload-fill 0.85s ease-out 0.15s forwards;
}

.mock-data-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.mock-data-stats span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid #e1e6ee;
  border-radius: 10px;
  background: #ffffff;
}

.mock-data-stats i {
  color: #98a2b3;
  font-size: 8px;
  font-style: normal;
}

.mock-data-stats strong {
  color: #344054;
  font-size: 12px;
}

.mock-data-table {
  overflow: hidden;
  border: 1px solid #dfe5ee;
  border-radius: 11px;
  background: #ffffff;
}

.mock-table-row {
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 1fr 1fr;
  border-top: 1px solid #edf0f4;
}

.mock-table-row:first-child {
  border-top: 0;
}

.mock-table-row span {
  padding: 12px 10px;
  overflow: hidden;
  color: #667085;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-table-head {
  background: #f8fafc;
}

.mock-table-head span {
  color: #475467;
  font-weight: 850;
}

.mock-type-chips {
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 1fr 1fr;
  gap: 7px;
  margin-top: 9px;
}

.mock-type-chips span {
  padding: 6px;
  overflow: hidden;
  border-radius: 6px;
  color: #2f6fed;
  background: #eaf1ff;
  font-size: 7px;
  font-weight: 800;
  text-align: center;
  text-overflow: ellipsis;
}

.mock-builder-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 14px;
  min-height: 380px;
}

.mock-builder-controls,
.mock-chart-card {
  border: 1px solid #dfe5ee;
  border-radius: 12px;
  background: #ffffff;
}

.mock-builder-controls {
  padding: 14px;
}

.mock-control-label {
  display: block;
  margin: 3px 0 8px;
  color: #667085;
  font-size: 8px;
  font-weight: 850;
}

.mock-builder-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin-bottom: 18px;
}

.mock-type {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 9px 4px;
  border: 1px solid #e1e6ee;
  border-radius: 7px;
  color: #667085;
  font-size: 7px;
  font-weight: 800;
}

.mock-type > i {
  width: 17px;
  height: 13px;
  border-bottom: 2px solid currentColor;
  background: linear-gradient(90deg, transparent 8%, currentColor 8% 25%, transparent 25% 42%, currentColor 42% 67%, transparent 67% 78%, currentColor 78% 94%, transparent 94%);
  opacity: 0.7;
}

.mock-type.is-selected {
  border-color: #8fb2f6;
  color: #1e5ed6;
  background: #eef4ff;
  box-shadow: 0 0 0 2px rgba(47, 111, 237, 0.08);
}

.mock-builder-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 8px;
  margin-bottom: 8px;
  padding: 10px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
}

.mock-builder-field i {
  grid-column: 1;
  color: #98a2b3;
  font-size: 7px;
  font-style: normal;
}

.mock-builder-field strong {
  grid-column: 1;
  color: #344054;
  font-size: 9px;
}

.mock-builder-field span {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: #98a2b3;
  font-size: 10px;
}

.mock-chart-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.mock-chart-title {
  color: #344054;
  font-size: 9px;
  font-weight: 850;
}

.mock-chart-title i {
  padding: 4px 6px;
  border-radius: 5px;
  color: #2f6fed;
  background: #eaf1ff;
  font-size: 7px;
  font-style: normal;
}

.mock-chart-bars {
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: center;
  gap: 35px;
  min-height: 250px;
  padding: 34px 35px 0;
  border-bottom: 1px solid #dfe5ee;
  background-image: linear-gradient(to bottom, #edf1f5 1px, transparent 1px);
  background-size: 100% 25%;
}

.mock-chart-bar {
  position: relative;
  width: 56px;
  border-radius: 8px 8px 1px 1px;
  background: linear-gradient(180deg, #68a4ff, #2f6fed);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.72s cubic-bezier(0.2, 0.75, 0.2, 1) 0.18s;
}

.landing-story[data-active-step="3"] .mock-chart-bar {
  transform: scaleY(1);
}

.mock-chart-bar-one { height: 46%; }
.mock-chart-bar-two { height: 86%; transition-delay: 0.29s; }

.mock-chart-bar i,
.mock-dashboard-bar i {
  position: absolute;
  top: -19px;
  left: 50%;
  color: #475467;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  transform: translateX(-50%);
}

.mock-chart-labels {
  display: flex;
  justify-content: space-around;
  padding: 8px 5px 0;
  color: #98a2b3;
  font-size: 7px;
  font-weight: 750;
}

.mock-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 116px 236px;
  gap: 11px;
}

.mock-dashboard-card {
  border: 1px solid #dfe5ee;
  border-radius: 11px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(16, 24, 40, 0.045);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.38s ease, transform 0.48s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.landing-story[data-active-step="4"] .mock-dashboard-card,
.landing-story[data-active-step="5"] .mock-dashboard-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mock-dashboard-kpi {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 17px;
}

.mock-dashboard-kpi span,
.mock-dashboard-donut-card > span {
  color: #667085;
  font-size: 8px;
  font-weight: 800;
}

.mock-dashboard-kpi strong {
  color: #101828;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.mock-dashboard-kpi small {
  color: #29906a;
  font-size: 7px;
  font-weight: 800;
}

.mock-dashboard-donut-card {
  position: relative;
  grid-row: 1 / 3;
  grid-column: 2;
  padding: 15px;
  transition-delay: 0.18s;
}

.mock-donut {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: conic-gradient(#2f6fed 0 46%, #60a5fa 46% 74%, #a8c5fb 74% 100%);
  transform: translate(-50%, -42%);
}

.mock-donut::after {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.mock-donut > i {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  color: #101828;
  font-size: 16px;
  font-style: normal;
  font-weight: 850;
}

.mock-donut small {
  color: #98a2b3;
  font-size: 7px;
  font-weight: 750;
}

.mock-dashboard-chart {
  padding: 14px 16px 10px;
  transition-delay: 0.1s;
}

.mock-dashboard-bar-area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 42px;
  height: 152px;
  margin-top: 12px;
  padding: 20px 26px 0;
  border-bottom: 1px solid #dfe5ee;
  background-image: linear-gradient(to bottom, #edf1f5 1px, transparent 1px);
  background-size: 100% 33.33%;
}

.mock-dashboard-bar {
  position: relative;
  width: 50px;
  border-radius: 7px 7px 1px 1px;
  background: linear-gradient(180deg, #68a4ff, #2f6fed);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1) 0.25s;
}

.landing-story[data-active-step="4"] .mock-dashboard-bar,
.landing-story[data-active-step="5"] .mock-dashboard-bar {
  transform: scaleY(1);
}

.mock-dashboard-bar.is-smb { height: 42%; }
.mock-dashboard-bar.is-enterprise { height: 83%; transition-delay: 0.36s; }

.mock-insight {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 286px;
  padding: 13px;
  border: 1px solid #9fe8c5;
  border-radius: 12px;
  opacity: 0;
  background: rgba(236, 253, 243, 0.96);
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.14);
  transform: translateY(18px) scale(0.94);
  transition: opacity 0.38s ease 0.18s, transform 0.46s cubic-bezier(0.2, 0.75, 0.2, 1) 0.18s;
}

.landing-story[data-active-step="5"] .mock-insight {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mock-insight-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #ffffff;
  background: #12b76a;
  font-size: 16px;
  font-weight: 850;
}

.mock-insight > span:last-child {
  display: grid;
  gap: 2px;
}

.mock-insight small {
  color: #087443;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-insight strong {
  color: #075937;
  font-size: 9px;
}

.mock-insight i {
  color: #29906a;
  font-size: 8px;
  font-style: normal;
}

.story-stage-caption {
  position: absolute;
  right: 18px;
  bottom: 27px;
  left: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  color: #667085;
  font-size: 9px;
  font-weight: 800;
}

.story-stage-caption strong {
  margin-left: auto;
  color: #344054;
}

.story-stage-caption strong i {
  color: #2f6fed;
  font-style: normal;
}

.story-caption-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.13);
}

.landing-trust {
  padding: 116px 0 124px;
  background: #ffffff;
}

.landing-trust-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.landing-trust-heading .landing-eyebrow {
  align-self: start;
}

.landing-trust-heading h2 {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: clamp(34px, 3.8vw, 53px);
}

.landing-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dfe5ee;
  border-bottom: 1px solid #dfe5ee;
}

.landing-trust-grid article {
  min-height: 250px;
  padding: 34px 30px;
  border-left: 1px solid #dfe5ee;
  transition: background 0.25s ease, transform 0.25s ease;
}

.landing-trust-grid article:first-child {
  border-left: 0;
}

.landing-trust-grid article:hover {
  background: #f8faff;
  transform: translateY(-4px);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #cbd9f4;
  border-radius: 11px;
  color: #2f6fed;
  background: #eef4ff;
  font-size: 10px;
  font-weight: 900;
}

.landing-trust-grid h3 {
  margin: 34px 0 0;
  color: #101828;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.landing-trust-grid p {
  margin: 13px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
}

.landing-final-cta {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #0b1b31, #07111f);
  background-size: 52px 52px, 52px 52px, auto;
}

.landing-final-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 920px;
  padding-top: 118px;
  padding-bottom: 122px;
  text-align: center;
}

.landing-final-content h2 {
  color: #ffffff;
  font-size: clamp(40px, 5vw, 66px);
}

.landing-final-content > p:not(.landing-eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #aab8cb;
  font-size: 16px;
  line-height: 1.65;
}

.landing-final-actions {
  justify-content: center;
}

.landing-button-light {
  color: #07111f;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.landing-button-outline {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.landing-final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.landing-final-orb-one {
  top: -180px;
  left: -80px;
  width: 430px;
  height: 430px;
  background: rgba(47, 111, 237, 0.23);
}

.landing-final-orb-two {
  right: -100px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  background: rgba(52, 211, 153, 0.12);
}

.landing-footer-modern {
  color: #9aa9bd;
  background: #050c16;
}

.landing-footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 112px;
  font-size: 11px;
}

.landing-brand-footer .landing-brand-mark {
  width: 34px;
  height: 34px;
}

.landing-footer-layout nav {
  display: flex;
  gap: 26px;
  font-weight: 750;
}

.landing-footer-layout nav a:hover {
  color: #ffffff;
}

.landing-footer-layout > span {
  justify-self: end;
}

@keyframes landing-window-float {
  0%, 100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-3deg) rotateX(1deg) translateY(-8px); }
}

@keyframes landing-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes landing-orbit {
  to { transform: rotate(360deg); }
}

@keyframes landing-bar-grow {
  to { transform: scaleY(1); }
}

@keyframes landing-scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

@keyframes mock-upload-fill {
  to { transform: scaleX(1); }
}

@media (max-width: 1100px) {
  .landing-hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 36px;
  }

  .hero-showcase {
    min-height: 500px;
  }

  .hero-floating-file {
    left: -8px;
  }

  .hero-floating-insight {
    right: -8px;
  }

  .story-layout {
    grid-template-columns: minmax(280px, 0.68fr) minmax(520px, 1.32fr);
    gap: 44px;
  }

  .mock-window-body {
    height: 460px;
  }

  .mock-scene {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .landing-container,
  .landing-nav-inner {
    width: min(720px, calc(100% - 36px));
  }

  .landing-nav-inner {
    grid-template-columns: 1fr auto;
  }

  .landing-home .landing-nav-links {
    display: none;
  }

  .landing-home .landing-hero {
    min-height: auto;
    padding-bottom: 76px;
  }

  .landing-hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 86px 0 24px;
    text-align: left;
  }

  .landing-home .landing-hero-copy h1,
  .landing-hero-lead {
    max-width: 690px;
    margin-right: 0;
    margin-left: 0;
  }

  .landing-home .landing-hero-actions {
    justify-content: flex-start;
  }

  .hero-showcase {
    width: 100%;
    min-height: 505px;
    margin-top: 5px;
  }

  .hero-dashboard-window {
    right: 50%;
    width: min(660px, calc(100% - 18px));
    transform: translateX(50%);
    animation: none;
  }

  .hero-floating-file {
    bottom: 10px;
    left: 0;
  }

  .hero-floating-insight {
    top: 22px;
    right: 0;
  }

  .landing-scroll-cue {
    display: none;
  }

  .landing-story {
    padding: 88px 0 96px;
  }

  .story-heading {
    margin-bottom: 36px;
  }

  .story-layout {
    display: block;
  }

  .story-progress,
  .story-visual-column {
    display: none;
  }

  .story-step,
  .story-step.is-active,
  .story-step.is-complete {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 0;
    margin-top: 14px;
    padding: 24px;
    border: 1px solid #dfe5ee;
    border-radius: 17px;
    opacity: 1;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
    transform: none;
  }

  .story-step:last-child {
    border-bottom: 1px solid #dfe5ee;
  }

  .story-step-number {
    width: 38px;
    height: 38px;
  }

  .story-mobile-preview {
    display: flex;
    grid-column: 1 / -1;
    margin-top: 20px;
  }

  .mobile-file-preview {
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #dfe5ee;
    border-radius: 11px;
    background: #f8fafc;
  }

  .mobile-file-badge {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    color: #067647;
    background: #d1fadf;
    font-size: 8px;
    font-weight: 900;
  }

  .mobile-file-preview > span:nth-child(2) {
    display: grid;
    flex: 1;
  }

  .mobile-file-preview strong { font-size: 10px; }
  .mobile-file-preview small { color: #98a2b3; font-size: 8px; }
  .mobile-file-preview > i { color: #067647; font-style: normal; font-weight: 900; }

  .mobile-table-preview {
    display: grid;
    overflow: hidden;
    border: 1px solid #dfe5ee;
    border-radius: 10px;
  }

  .mobile-table-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 1fr;
  }

  .mobile-table-row + .mobile-table-row { border-top: 1px solid #edf0f4; }
  .mobile-table-row i { padding: 9px; color: #667085; font-size: 8px; font-style: normal; }
  .mobile-table-row.is-head { background: #f8fafc; }
  .mobile-table-row.is-head i { color: #344054; font-weight: 850; }

  .mobile-builder-preview {
    flex-wrap: wrap;
    gap: 7px;
  }

  .mobile-builder-chip,
  .mobile-builder-field {
    padding: 9px 11px;
    border: 1px solid #dfe5ee;
    border-radius: 8px;
    color: #667085;
    background: #ffffff;
    font-size: 8px;
    font-weight: 800;
  }

  .mobile-builder-chip.is-selected {
    border-color: #8fb2f6;
    color: #1e5ed6;
    background: #eef4ff;
  }

  .mobile-builder-field {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #344054;
  }

  .mobile-builder-field i { color: #98a2b3; font-style: normal; }

  .mobile-dashboard-preview {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
  }

  .mobile-dashboard-kpi,
  .mobile-dashboard-bars {
    min-height: 100px;
    padding: 13px;
    border: 1px solid #dfe5ee;
    border-radius: 10px;
    background: #ffffff;
  }

  .mobile-dashboard-kpi {
    display: grid;
    align-content: center;
    gap: 5px;
  }

  .mobile-dashboard-kpi i { color: #667085; font-size: 8px; font-style: normal; }
  .mobile-dashboard-kpi strong { color: #101828; font-size: 16px; }
  .mobile-dashboard-bars { display: flex; align-items: flex-end; gap: 8px; }
  .mobile-dashboard-bars i { flex: 1; border-radius: 4px 4px 0 0; background: #2f6fed; }
  .mobile-dashboard-bars i:nth-child(1) { height: 34%; }
  .mobile-dashboard-bars i:nth-child(2) { height: 52%; }
  .mobile-dashboard-bars i:nth-child(3) { height: 73%; }
  .mobile-dashboard-bars i:nth-child(4) { height: 92%; }

  .mobile-insight-preview {
    display: grid;
    gap: 3px;
    padding: 14px;
    border: 1px solid #a6f4c5;
    border-radius: 10px;
    background: #ecfdf3;
  }

  .mobile-insight-preview span { color: #087443; font-size: 8px; font-weight: 850; text-transform: uppercase; }
  .mobile-insight-preview strong { color: #075937; font-size: 14px; }
  .mobile-insight-preview i { color: #29906a; font-size: 9px; font-style: normal; }

  .landing-trust {
    padding: 88px 0 96px;
  }

  .landing-trust-heading {
    display: block;
  }

  .landing-trust-heading h2 {
    margin-top: 4px;
  }

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

  .landing-trust-grid article,
  .landing-trust-grid article:first-child {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid #dfe5ee;
    border-left: 0;
  }

  .landing-trust-grid article:first-child {
    border-top: 0;
  }

  .landing-trust-grid h3 {
    margin-top: 20px;
  }

  .landing-footer-layout {
    grid-template-columns: 1fr auto;
    padding: 28px 0;
  }

  .landing-footer-layout nav {
    display: none;
  }
}

@media (max-width: 560px) {
  .landing-container,
  .landing-nav-inner {
    width: min(520px, calc(100% - 28px));
  }

  .landing-nav-inner {
    min-height: 68px;
    gap: 12px;
  }

  .landing-brand-copy span {
    display: none;
  }

  .landing-brand-mark {
    width: 34px;
    height: 34px;
  }

  .landing-nav-actions {
    gap: 10px;
  }

  .landing-nav-login {
    display: none;
  }

  .landing-button-compact {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .landing-home .landing-hero {
    padding-top: 68px;
  }

  .landing-hero-layout {
    padding-top: 66px;
  }

  .landing-home .landing-hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1;
  }

  .landing-hero-lead {
    font-size: 15px;
  }

  .landing-home .landing-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .landing-hero-facts {
    gap: 9px 14px;
    font-size: 10px;
  }

  .hero-showcase {
    min-height: 350px;
    margin-top: 10px;
  }

  .hero-dashboard-window {
    top: 30px;
    width: 100%;
    border-radius: 15px;
  }

  .hero-window-bar {
    min-height: 36px;
    padding: 0 10px;
    font-size: 8px;
  }

  .hero-dashboard-body {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 275px;
  }

  .hero-side-rail {
    gap: 14px;
    padding-top: 18px;
  }

  .hero-side-rail span {
    width: 13px;
    height: 13px;
  }

  .hero-dashboard-content {
    padding: 13px;
  }

  .hero-dashboard-heading {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-kpi-row {
    gap: 7px;
    margin-bottom: 7px;
  }

  .hero-kpi-card,
  .hero-mini-card {
    gap: 2px;
    padding: 9px;
  }

  .hero-kpi-card strong { font-size: 17px; }
  .hero-mini-card strong { font-size: 15px; }
  .hero-chart-card { padding: 10px 11px 8px; }
  .hero-chart-bars { height: 92px; margin-top: 9px; padding-top: 6px; gap: 7px; }

  .hero-floating-file {
    bottom: 0;
    left: 7px;
    min-width: 195px;
    padding: 9px;
  }

  .hero-floating-insight,
  .hero-orbit {
    display: none;
  }

  .story-heading h2,
  .landing-trust-heading h2,
  .landing-final-content h2 {
    font-size: 36px;
  }

  .story-heading > p:last-child {
    font-size: 15px;
  }

  .story-step,
  .story-step.is-active,
  .story-step.is-complete {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    padding: 20px 16px;
  }

  .story-step h3 {
    font-size: 25px;
  }

  .story-step > div > p:not(.story-step-kicker) {
    font-size: 14px;
  }

  .landing-final-content {
    padding-top: 90px;
    padding-bottom: 94px;
  }

  .landing-footer-layout {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .landing-footer-layout > span {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-home *,
  .landing-home *::before,
  .landing-home *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .hero-dashboard-window,
  .hero-floating-file,
  .hero-floating-insight,
  .story-step,
  .story-step.is-active,
  .mock-scene,
  .mock-dashboard-card,
  .mock-insight {
    transform: none;
  }
}

/* Formulario de lista de espera (waitlist.html) */
.landing-waitlist-emphasis {
  margin: 22px 0 30px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
}

.landing-waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.landing-waitlist-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Especificidade reforcada (.landing-waitlist-fields + classe do input):
   input[type="email"] etc. em app.css tem especificidade (0,1,1) — uma
   classe sozinha (0,1,0) perde para ele mesmo carregando depois. */
.landing-waitlist-fields .landing-waitlist-input {
  flex: 1 1 180px;
  min-width: 0;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: var(--landing-ink-soft);
  color: #ffffff;
  font-size: 14px;
  -webkit-text-fill-color: #ffffff;
}

.landing-waitlist-fields .landing-waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.landing-waitlist-fields .landing-waitlist-input:focus {
  outline: none;
  border-color: var(--landing-blue);
  background-color: #16294a;
}

/* O Chrome pinta fundo proprio em campos reconhecidos p/ autofill (mesmo
   sem foco) — sem isso o campo aparece "todo branco" com texto invisivel. */
.landing-waitlist-fields .landing-waitlist-input:-webkit-autofill,
.landing-waitlist-fields .landing-waitlist-input:-webkit-autofill:hover,
.landing-waitlist-fields .landing-waitlist-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1000px var(--landing-ink-soft) inset;
  caret-color: #ffffff;
  transition: background-color 9999s ease-in-out 0s;
}

.landing-waitlist-form .landing-button {
  align-self: flex-start;
}

.landing-waitlist-errors {
  color: #fda4af;
  font-size: 13px;
}

.landing-waitlist-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
