/* [project]/src/styles/pages/simulators.css [app-client] (css) */
.projects-v3.simulators-v3 {
  --hymo-red: #1d9a96;
  --hymo-red-2: #0e585d;
  --hymo-red-3: #228779;
  --hymo-red-soft: #e6f4f4;
  --hymo-red-soft-2: #d4edec;
  --hymo-red-line: #afd4d3;
  --hymo-red-faint: #f4fafa;
  --hymo-red-glow: #156f6c38;
  --hymo-red-halo: #156f6c52;
  --hymo-red-accent: #228779;
  --hymo-grad-accent: var(--hymo-red);
  --hymo-grad-accent-kpi: var(--hymo-red);
  --hymo-grad-bar: var(--hymo-red);
}

.projects-v3.simulators-v3 {
  min-height: 0;
  padding-bottom: 64px;
}

.projects-v3.simulators-v3 .hero-row {
  margin-bottom: 0;
}

.projects-v3.simulators-v3 .greet-title {
  text-wrap: balance;
}

.projects-v3.simulators-v3 .hero-left {
  gap: 20px;
}

.projects-v3.simulators-v3 .hero-left > .greet {
  margin-bottom: 8px;
}

.projects-v3.simulators-v3 .empty-pitch .accent-strong {
  background: #156f6c;
  -webkit-background-clip: text;
  background-clip: text;
}

@media (width <= 1023px) {
  .projects-v3.simulators-v3 {
    padding-bottom: 48px;
  }
}

@media (width <= 767px) {
  .projects-v3.simulators-v3 {
    padding-bottom: 36px;
  }
}

.sim-content.sim-content--public {
  max-width: 1144px;
  padding: 0 32px 80px;
}

@media (width <= 1023px) {
  .sim-content.sim-content--public {
    padding: 0 24px 60px;
  }
}

@media (width <= 767px) {
  .sim-content.sim-content--public {
    padding: 0 18px 24px;
  }
}

.simulators-v3 .sim-hero__args {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.simulators-v3 .sim-hero__arg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hymo-fg-2);
  background: var(--hymo-glass-soft);
  border: 1px solid var(--hymo-glass-border-light);
}

.simulators-v3 .sim-hero__arg svg {
  width: 13px;
  height: 13px;
  color: var(--hymo-red);
  flex-shrink: 0;
}

@media (width <= 767px) {
  .simulators-v3 .sim-hero__args {
    gap: 6px;
  }
}

[data-portal="owner"]:has(.sim-content) .header-bar__breadcrumb-link:hover {
  color: #1d9a96;
}

.sim-head {
  margin-bottom: 28px;
}

.sim-head__title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--hymo-v4-ink);
}

.sim-head__title .accent {
  color: #1d9a96;
}

.sim-head__lead {
  margin-top: 6px;
  max-width: 720px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--hymo-fg-3);
}

@media (width <= 767px) {
  .sim-head {
    margin-bottom: 20px;
  }

  .sim-head__title {
    font-size: 30px;
  }

  .sim-head__lead {
    font-size: 15px;
  }
}

.sim-hero {
  background: none;
  padding: 32px 24px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-normal);
}

.sim-hero__glow {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 450px;
  border-radius: 50%;
  background: none;
  pointer-events: none;
}

.sim-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .25;
  display: none;
}

.sim-hero__orb--1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  background: #14a0964d;
}

.sim-hero__orb--2 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -40px;
  background: #1d9a9640;
  animation-delay: -4s;
}

@keyframes sim-orb-float {
  0%, 100% {
    transform: translateY(0)scale(1);
  }

  50% {
    transform: translateY(-20px)scale(1.05);
  }
}

.sim-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: #1d9a96;
  margin-bottom: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sim-hero__title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 10px;
  color: hsl(var(--foreground));
}

.sim-hero__title--accent {
  color: #1d9a96;
}

.sim-hero__cursor {
  display: inline-block;
  width: 2px;
  height: .85em;
  background: #1d9a96;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: .75s step-end infinite sim-blink-cursor;
}

@keyframes sim-blink-cursor {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.sim-hero__subtitle {
  font-size: 15px;
  color: hsl(var(--foreground-muted));
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.sim-hero__subtitle--highlight {
  color: #1d9a96;
  font-weight: 700;
}

.sim-hero__features {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sim-hero__feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: hsl(var(--foreground-muted));
}

.sim-hero__feature svg {
  color: #1d9a96;
}

.sim-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 32px 80px;
}

@media (width <= 767px) {
  .sim-content {
    padding: 20px 16px 24px;
  }
}

main:has( > .sim-content:not(.sim-content--public)), .sim-content:not(.sim-content--public) {
  background: var(--hymo-bg);
}

.sim-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.sim-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sim-nav::-webkit-scrollbar {
  display: none;
}

.sim-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  height: 36px;
  color: hsl(var(--foreground-muted));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-full);
  padding: 0 16px;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s, background .15s, transform .15s;
}

.sim-nav__btn:hover {
  background: hsl(var(--background-muted));
  color: hsl(var(--foreground));
}

.sim-nav__btn--active {
  font-weight: 700;
  color: #1d9a96;
  border-color: #1d9a96;
  background: #14a09614;
  border-width: 1.5px;
}

.sim-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  min-width: 240px;
  max-width: 320px;
  transition: box-shadow .2s, transform .2s;
}

.sim-search--focused {
  box-shadow: var(--shadow-lg);
}

.sim-search__input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 13px;
  color: hsl(var(--foreground));
  min-width: 0;
}

.sim-search__input::-moz-placeholder {
  color: hsl(var(--foreground-subtle));
}

.sim-search__input::placeholder {
  color: hsl(var(--foreground-subtle));
}

.sim-search__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: hsl(var(--background-muted));
  color: hsl(var(--foreground-muted));
  cursor: pointer;
  transition: background .15s;
}

.sim-search__clear:hover {
  background: hsl(var(--background-subtle));
}

.sim-empty {
  text-align: center;
  padding: 48px 24px;
  font-size: 15px;
  color: hsl(var(--foreground-muted));
}

.sim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sim-card {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 232px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s, border-color .3s;
}

.sim-card:hover {
  box-shadow: var(--hymo-v4-shadow);
  border-color: var(--sim-color, #1d9a96);
}

.sim-card:focus-visible {
  outline: 2px solid #1d9a96;
  outline-offset: 2px;
}

.sim-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-width: 0;
}

.sim-card__viz {
  flex: 0 0 50%;
  display: flex;
  align-items: stretch;
  border-left: 1px solid hsl(var(--border) / .3);
  background: var(--sim-bg, #14a0960a);
  position: relative;
  overflow: hidden;
}

.sim-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  margin-bottom: 12px;
  background: var(--sim-bg);
  color: var(--sim-color);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

.sim-card:hover .sim-card__icon {
}

.sim-card__name {
  font-size: 16px;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sim-card__desc {
  font-size: 13px;
  color: hsl(var(--foreground-muted));
  line-height: 1.55;
  flex: none;
  height: 3.1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sim-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid hsl(var(--border) / .5);
}

.sim-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: #14a0961a;
  color: #1d9a96;
}

.sim-card__arrow {
  color: hsl(var(--foreground-subtle));
  transition: transform .2s, color .2s;
}

.sim-card:hover .sim-card__arrow {
  color: var(--sim-color, #1d9a96);
}

.sim-preview {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 16px;
  gap: 6px;
}

.sim-preview__title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--sim-color, #1d9a96);
  opacity: .75;
}

.sim-preview__credit-chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.sim-preview__svg {
  flex: 1;
  width: 100%;
  min-height: 0;
}

.sim-preview__x-axis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: hsl(var(--foreground-subtle));
  padding-top: 2px;
}

.sim-preview__legend {
  display: flex;
  gap: 10px;
  font-size: 9px;
  color: hsl(var(--foreground-muted));
}

.sim-preview__legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sim-preview__legend-line {
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--sim-color, #1d9a96);
  border-radius: 1px;
}

.sim-preview__legend-line--dashed {
  background: repeating-linear-gradient(90deg, var(--sim-color, #1d9a96) 0 4px, transparent 4px 7px);
  opacity: .5;
}

.sim-preview__bars {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex: 1;
  align-items: flex-end;
  padding-bottom: 2px;
}

.sim-preview__bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  max-width: 52px;
}

.sim-preview__bar-value {
  font-size: 10px;
  font-weight: 700;
  color: var(--sim-color, #1d9a96);
}

.sim-preview__bar-track {
  width: 100%;
  height: 60px;
  background: hsl(var(--border) / .3);
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sim-preview__bar-fill {
  width: 100%;
  background: var(--sim-color, #1d9a96);
  border-radius: 4px;
  opacity: .4;
  transition: opacity .3s;
}

.sim-card:hover .sim-preview__bar-fill {
  opacity: .65;
}

.sim-preview__bar-label {
  font-size: 8px;
  color: hsl(var(--foreground-subtle));
  text-align: center;
  white-space: nowrap;
}

.sim-preview__amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--sim-color, #1d9a96);
  letter-spacing: -.02em;
}

.sim-preview__rate {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
}

.sim-preview__rate-label {
  color: hsl(var(--foreground-subtle));
}

.sim-preview__rate-bar {
  flex: 1;
  height: 4px;
  background: hsl(var(--border));
  border-radius: 2px;
  position: relative;
}

.sim-preview__rate-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: var(--sim-color, #1d9a96);
  border-radius: 2px;
}

.sim-preview__rate-dot {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sim-color, #1d9a96);
  border: 2px solid hsl(var(--background));
  box-shadow: var(--shadow-sm);
}

.sim-preview__rate-value {
  font-weight: 700;
  color: var(--sim-color, #1d9a96);
}

.sim-preview__durations {
  display: flex;
  gap: 4px;
  margin-top: 2px;
}

.sim-preview__dur-btn {
  flex: 1;
  padding: 3px 0;
  font-size: 9px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid hsl(var(--border));
  background: none;
  color: hsl(var(--foreground-muted));
  cursor: pointer;
  transition: all .15s;
}

.sim-preview__dur-btn:hover {
  border-color: var(--sim-color, #1d9a96);
  color: var(--sim-color, #1d9a96);
}

.sim-preview__dur-btn--active {
  background: var(--sim-color, #1d9a96);
  border-color: var(--sim-color, #1d9a96);
  color: #fff;
}

.sim-preview__notaire-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--sim-color, #e76f51);
  letter-spacing: -.02em;
}

.sim-preview__donut-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.sim-preview__donut {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.sim-preview__donut-legend {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 9px;
  color: hsl(var(--foreground-muted));
}

.sim-preview__donut-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sim-preview__donut-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sim-color, #e76f51);
  flex-shrink: 0;
}

.sim-preview__donut-pct {
  font-weight: 700;
  color: var(--sim-color, #e76f51);
  margin-left: auto;
}

.sim-preview__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  flex: 1;
}

.sim-preview__table td {
  padding: 3px 0;
}

.sim-preview__table-label {
  color: hsl(var(--foreground-muted));
  font-weight: 500;
}

.sim-preview__table-value {
  text-align: right;
  font-weight: 700;
  color: var(--sim-color, #1d9a96);
}

.sim-preview__table-total {
  border-top: 1px solid hsl(var(--border) / .5);
}

.sim-preview__table-total .sim-preview__table-label {
  font-weight: 700;
  color: hsl(var(--foreground));
}

.sim-preview__gauge-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sim-preview__gauge {
  width: 100%;
  max-width: 120px;
}

.sim-preview__gauge-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--sim-color, #1d9a96);
  margin-top: -16px;
}

.sim-preview__gauge-scale {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 110px;
  font-size: 9px;
  color: hsl(var(--foreground-subtle));
  margin-top: -2px;
}

.dark .sim-preview__dur-btn--active {
  color: #fff;
}

.dark .sim-hero {
  background: none;
}

.dark .sim-hero__glow {
  background: none;
}

.dark .sim-card {
  background: #111832c7;
  border-color: #47557873;
}

.dark .sim-card:hover {
  box-shadow: var(--hymo-v4-shadow);
}

.dark .sim-card__viz {
  background: #14a0960a;
}

.dark .sim-preview__title {
  color: #34d399;
}

.dark .sim-hero__badge {
  color: #34d399;
}

.dark .sim-hero__subtitle--highlight {
  color: #34d399;
}

.dark .sim-hero__feature svg {
  color: #34d399;
}

.dark .sim-hero__cursor {
  background: #34d399;
}

.dark .sim-nav__btn--active {
  color: #34d399;
  border-color: #34d399;
  background: #34d39914;
}

.dark .sim-card__badge {
  background: #34d3991f;
  color: #34d399;
}

@media (width <= 767px) {
  .sim-hero {
    padding: 24px 16px 32px;
  }

  .sim-hero__title {
    font-size: 32px;
  }

  .sim-hero__features {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .sim-content {
    padding: 20px 16px 64px;
  }

  .sim-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .sim-search {
    min-width: 0;
    max-width: 100%;
  }

  .sim-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sim-card {
    flex-direction: column;
    height: auto;
  }

  .sim-card:hover {
    transform: none;
    box-shadow: 0 2px 12px #0000000f;
    border-color: hsl(var(--border) / .5);
  }

  .sim-card__viz {
    flex: none;
    height: 140px;
    border-left: none;
    border-top: 1px solid hsl(var(--border) / .3);
  }

  .sim-card__info {
    padding: 20px 18px;
  }

  .sim-nav {
    gap: 8px;
  }
}

@media (width >= 768px) and (width <= 1023px) {
  .sim-grid {
    grid-template-columns: 1fr;
  }

  .sim-card {
    height: 212px;
  }
}


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