:root {
  --black: #2b2b2e;
  --dark: #333333;
  --muted: #4c4c4c;
  --nav: #555555;
  --line: #f4f4f4;
  --soft-line: #f4f5f6;
  --panel: #f9fafe;
  --yellow: #ffce00;
  --yellow-soft: #fedd2c;
  --orange: #f9a618;
  --green: #0f9d82;
  --green-soft: #e0f6f2;
  --blue: #1d78d4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--black);
  background: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container-figma {
  width: min(1410px, calc(100vw - 48px));
  margin: 0 auto;
}

@media (min-width: 1500px) {
  .container-figma {
    width: 1410px;
    margin-left: calc((100vw - 1410px) / 2);
    margin-right: 0;
  }
}

.site-header {
  height: 95px;
  background: #ffffff;
}

.header-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(181.5deg, #50d5b8 0%, #067d69 100%);
  box-shadow: 0 2px 10px rgba(6, 125, 105, 0.18);
}

.header-inner {
  height: 92px;
}

.brand {
  gap: 10px;
  width: 172px;
}

.site-header .brand {
  width: 222px;
  gap: 15px;
}

.brand-mark {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.site-header .brand-mark {
  width: 40px;
  height: 40px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1;
}

.brand-title {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
}

.site-header .brand-title {
  color: #2b2b2e;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.site-header .brand-subtitle {
  color: #4c4c4c;
  font-size: 9px;
  letter-spacing: .09px;
  white-space: nowrap;
}

.main-nav {
  width: auto;
  margin-left: auto;
  gap: 44px;
  justify-content: flex-end;
}

.main-nav .login-button {
  display: none !important;
}

.main-nav a:not(.login-button),
.footer-nav a {
  color: var(--nav);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

.login-button {
  width: 90px;
  height: 38px;
  gap: 8px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
}

.user-icon,
.search-icon,
.mail-icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
}

.user-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
}

.user-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 1px;
  width: 11px;
  height: 6px;
  border: 1.5px solid var(--black);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom: 0;
}

.menu-button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #ffffff;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--black);
}

.hero-section {
  height: 460px;
  background: var(--panel);
}

.hero-inner {
  position: relative;
  height: 100%;
}

.hero-copy {
  position: absolute;
  left: 0;
  top: 94px;
  width: 513px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.nowrap {
  white-space: nowrap;
}

.hero-copy p {
  width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 32px;
  gap: 32px;
}

.primary-action,
.secondary-action,
.view-toggle,
.details-button,
.show-more,
.subscribe-form button {
  height: 43px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
}

.primary-action {
  width: 176px;
  background: var(--yellow-soft);
  color: var(--black);
}

.secondary-action {
  width: 200px;
  gap: 12px;
  border: 1px solid rgba(51, 51, 51, .5);
  background: #ffffff;
  color: var(--black);
}

.play-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2.5px;
  border-left: 4px solid currentColor;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.hero-stats-card {
  position: absolute;
  left: 570px;
  right: auto;
  top: 83px;
  display: grid;
  grid-template-columns: 145px 145px 180px 180px;
  align-items: end;
  justify-content: space-between;
  width: 896px;
  max-width: 66vw;
  height: 294px;
  padding: 90px 73px 50px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(30, 48, 90, .09);
}

.verified-ribbon {
  position: absolute;
  top: -17px;
  right: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 32px;
  gap: 10px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
}

.small-shield {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--black);
}

.small-shield::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(-45deg);
}

.hero-stat-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stat-icon {
  margin-bottom: 22px;
}

.hero-stat-item strong {
  display: block;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.hero-stat-item b {
  display: block;
  margin-top: 16px;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-stat-item small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

.hero-stat-chart svg {
  width: 120px;
  height: 64px;
  margin-bottom: 20px;
  overflow: visible;
}

@media (min-width: 1500px) {
  .hero-stats-card {
    display: block;
    width: 896.39px;
    max-width: none;
    height: 294px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-stats-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 840px;
    height: 280px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px #f3f4f6;
  }

  .verified-ribbon {
    top: 0;
    right: auto;
    left: 589px;
    width: 221.04px;
    height: 32px;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 15px;
    border-radius: 10px;
  }

  .hero-stat-item {
    position: absolute;
    z-index: 1;
  }

  .hero-stat-item:nth-of-type(1) {
    left: 51.95px;
    top: 102px;
    width: 139.55px;
  }

  .hero-stat-item:nth-of-type(2) {
    left: 247.52px;
    top: 102px;
    width: 139.55px;
  }

  .hero-stat-item:nth-of-type(3) {
    left: 443.1px;
    top: 92px;
    width: 148.72px;
  }

  .hero-stat-item:nth-of-type(4) {
    left: 647.84px;
    top: 92px;
    width: 248.54px;
  }

  .hero-stat-icon {
    margin-bottom: 20px;
  }

  .hero-stat-item b {
    margin-top: 15px;
  }

  .hero-chart-img {
    width: 115.34px;
    height: 60px;
    margin-bottom: 20px;
  }

  .hero-stat-item:nth-of-type(4) b {
    width: 160px;
    white-space: normal;
  }
}

.companies-section {
  padding-top: 100px;
}

.section-title,
.media-section h2,
.score-heading h2 {
  margin: 0;
  color: var(--muted);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.filters-row {
  margin-top: 40px;
  gap: 16px;
}

.filter-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--nav);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  overflow: visible;
  box-shadow: 0 10px 10px #fbfbfb;
  z-index: 4;
}

.filter-control[aria-expanded="true"] {
  border-color: rgba(51, 51, 51, .35);
  z-index: 20;
}

.filter-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  display: none;
  width: 100%;
  min-width: 176px;
  padding: 6px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(30, 48, 90, .1);
}

.filter-control[aria-expanded="true"] .filter-menu {
  display: block;
}

.filter-option {
  display: block;
  width: 100%;
  padding: 10px 9px;
  border-radius: 6px;
  color: var(--black);
  text-align: left;
  white-space: nowrap;
}

.filter-option:hover,
.filter-option.is-active {
  background: var(--panel);
}

.filter-search {
  width: 195px;
  padding-left: 10px;
}

.filter-search.wide {
  width: 330px;
}

.filter-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 10px;
  color: var(--nav);
  background: transparent;
  font-size: 12px;
  letter-spacing: .02em;
}

.search-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 9px;
  height: 9px;
  border: 1.5px solid #b7bec8;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 6px;
  height: 1.5px;
  background: #b7bec8;
  transform: rotate(45deg);
  transform-origin: left center;
}

.filter-select {
  width: 150px;
  padding: 0 10px;
  justify-content: space-between;
}

.list-select {
  width: 160px;
  padding: 0 10px;
  justify-content: space-between;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #7d8490;
  border-bottom: 1.5px solid #7d8490;
  transform: rotate(45deg) translateY(-2px);
}

.verify-filter {
  height: 24px;
  gap: 10px;
  color: var(--nav);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .02em;
}

.verify-filter span {
  width: 24px;
  height: 24px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: #ffffff;
  position: relative;
}

.verify-filter b {
  font-weight: 400;
}

.verify-filter.is-selected span {
  border-color: var(--yellow);
  background: var(--yellow);
}

.verify-filter.is-selected span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(-45deg);
}

.filter-sort {
  width: 237px;
  padding: 0 10px;
  justify-content: space-between;
}

@media (min-width: 1500px) {
  .companies-section .filter-sort,
  .list-section .filter-sort {
    margin-left: 4.56px;
  }

  .companies-section .filters-row,
  .list-section .filters-row {
    flex-wrap: nowrap !important;
  }

  .companies-section .filters-row > *,
  .list-section .filters-row > * {
    flex-shrink: 0;
  }
}

.sort-icon,
.list-icon,
.tile-icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.sort-icon::before,
.list-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 11px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
  border-radius: 2px;
}

.tile-icon::before,
.tile-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: currentColor;
}

.tile-icon::before {
  left: 2px;
  top: 2px;
  box-shadow: 7px 0 0 currentColor;
}

.tile-icon::after {
  left: 2px;
  top: 9px;
  box-shadow: 7px 0 0 currentColor;
}

.view-summary {
  margin-top: 40px;
  height: 78px;
}

.view-toggle {
  width: 210px;
  gap: 12px;
  border: 1px solid rgba(51, 51, 51, .5);
  background: #ffffff;
  color: var(--black);
}

.summary-metrics {
  width: 1048px;
  gap: 30px;
}

.summary-item {
  min-width: 197px;
  height: 78px;
}

.summary-item strong {
  display: block;
  margin-bottom: 16px;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.summary-item b {
  display: block;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.summary-item small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

.summary-with-icon {
  gap: 15px;
}

.building-icon,
.shield-icon {
  position: relative;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
}

.building-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 20px;
  height: 34px;
  border-radius: 5px;
  background: #bd4a1d;
}

.building-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 9px;
  width: 4px;
  height: 4px;
  background: #ffffff;
  box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff, 8px 0 0 #ffffff, 8px 8px 0 #ffffff, 8px 16px 0 #ffffff, 19px 10px 0 #bd4a1d, 19px 18px 0 #bd4a1d;
}

.shield-icon::before {
  content: "";
  position: absolute;
  inset: 0 4px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 90% 13%, 90% 50%, 50% 100%, 10% 50%, 10% 13%);
}

.shield-icon::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 13px;
  width: 13px;
  height: 7px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(-45deg);
}

.summary-with-chart {
  min-width: 233px;
  gap: 20px;
}

.summary-with-chart svg {
  width: 98px;
  height: 38px;
  margin-top: 10px;
  overflow: visible;
}

.grid-path {
  fill: none;
  stroke: #edf1f6;
  stroke-width: 1;
}

.line-orange,
.line-blue,
.mini-chart polyline {
  fill: none;
  stroke-width: 2;
}

.line-orange,
.mini-chart polyline {
  stroke: var(--yellow);
}

.line-blue {
  stroke: #1d78d4;
}

.dots-orange circle,
.mini-chart circle {
  fill: #ffffff;
  stroke: var(--yellow);
  stroke-width: 2;
}

.dots-blue circle {
  fill: #ffffff;
  stroke: #1d78d4;
  stroke-width: 2;
}

.cards-grid {
  margin-top: 40px;
  row-gap: 40px;
  column-gap: 30px;
}

.cards-grid > .col-xl-6 {
  width: 690px;
}

.growth-card {
  width: 690px;
  height: 255px;
  border-radius: 20px;
  background: var(--panel);
  overflow: hidden;
}

.growth-card[data-card-link],
.table-row[data-card-link] {
  cursor: pointer;
}

.growth-card[data-card-link]:focus-visible,
.table-row[data-card-link]:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.growth-card > img {
  width: 330px;
  height: 255px;
  object-fit: cover;
  border: 1px solid #e5e9f0;
  border-radius: 20px;
  flex: 0 0 330px;
}

.growth-card > img.company-logo-image:not(.is-placeholder),
.row-company img.company-logo-image:not(.is-placeholder) {
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.growth-card > img.company-logo-image:not(.is-placeholder) {
  padding: 28px;
}

.row-company img.company-logo-image:not(.is-placeholder) {
  padding: 14px;
}

.growth-card > img.is-placeholder,
.row-company img.is-placeholder {
  background: #fedd2c;
  object-fit: contain;
  object-position: center;
}

.growth-card-body {
  width: 345px;
  height: 210px;
  margin: 23px 0 22px 15px;
}

.card-heading {
  width: 330px;
  height: 39px;
  align-items: center;
}

.card-heading strong,
.row-company strong {
  display: block;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.card-heading small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px 0 20px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  white-space: nowrap;
}

.verified-badge::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #44d5bf;
}

.card-values {
  width: 330px;
  height: 38px;
  margin-top: 10px;
  gap: 30px;
}

.card-values span {
  width: 131px;
}

.card-values small,
.card-kpis small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.card-values b,
.card-kpis b,
.table-row > b {
  display: block;
  margin-top: 8px;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.card-kpis {
  width: 330px;
  height: 43px;
  margin-top: 10px;
  gap: 17px;
}

.card-bottom {
  width: 330px;
  height: 60px;
  margin-top: 10px;
}

.mini-chart {
  width: 187.947px;
  height: 60px;
  overflow: visible;
  background: url("figma/card-graph-main.svg") center / contain no-repeat;
}

.mini-chart > * {
  display: none;
}

.cards-grid > *:nth-child(4n + 1) .mini-chart,
.raise-project-grid .growth-card:nth-child(4n + 1) .mini-chart {
  background-image: url("figma/card-graph-volna.svg");
}

.cards-grid > *:nth-child(4n + 4) .mini-chart,
.raise-project-grid .growth-card:nth-child(4n + 4) .mini-chart {
  background-image: url("figma/card-graph-retail.svg");
}

.details-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  gap: 12px;
  background: var(--yellow);
  color: var(--dark);
}

.growth-card .details-button {
  width: 120px;
  height: 44px;
}

.list-view {
  display: none;
}

body[data-view="list"] .grid-view {
  display: none;
}

body[data-view="list"] .list-view {
  display: block;
}

.is-company-hidden,
.catalog-filter-hidden {
  display: none !important;
}

.list-section {
  padding-top: 100px;
}

.list-filters {
  gap: 16px;
}

.list-summary {
  margin-top: 40px;
}

.company-table {
  position: relative;
  margin-top: 41px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 44px 443px 255px 255px 204px 210px;
  align-items: center;
  width: 1411px;
}

.table-head {
  height: 20px;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.table-line {
  width: 1410px;
  height: 1px;
  margin-top: 15px;
  background: var(--line);
}

.table-row {
  height: 150px;
  border-bottom: 1px solid var(--line);
}

.table-row:first-of-type {
  height: 150px;
}

.row-num {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
}

.row-company {
  display: flex;
  align-items: center;
  gap: 30px;
}

.row-company img {
  width: 210px;
  height: 120px;
  object-fit: cover;
  border: 1px solid #e5e9f0;
  border-radius: 20px;
}

.row-company .verified-badge {
  margin-top: 26px;
}

.growth-value {
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.table-button {
  width: 210px;
  height: 44px;
}

.show-more {
  display: block;
  width: 210px;
  height: 44px;
  margin: 29px auto 0;
  border: 1px solid rgba(255, 206, 0, .5);
  background: #ffffff;
  color: var(--dark);
}

.score-section {
  padding-top: 100px;
}

.score-heading {
  width: 374px;
  height: 80px;
  margin: 0 auto;
  text-align: center;
}

.score-heading h2,
.media-section h2 {
  color: var(--black);
  font-weight: 700;
}

.score-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.score-cards {
  margin-top: 40px;
  gap: 30px;
}

.score-card {
  width: 450px;
  height: 120px;
  gap: 15px;
  padding: 26px 22px;
  border-radius: 8px;
  background: var(--yellow);
}

.score-card strong {
  display: block;
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.score-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.score-icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #ffd938;
  position: relative;
  flex: 0 0 64px;
}

.score-icon::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 2px solid #aa8a00;
  border-radius: 3px;
}

.score-icon.growth::before {
  border-top: 0;
  border-right: 0;
  transform: skew(-12deg);
}

.score-icon.document::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 20px;
  width: 17px;
  height: 2px;
  background: #aa8a00;
  box-shadow: 0 7px 0 #aa8a00, 0 14px 0 #aa8a00;
}

.notice-box {
  width: 1411px;
  height: 80px;
  margin-top: 40px;
  gap: 12px;
  padding: 19px 24px;
  border: 1px solid #ffeea6;
  border-radius: 8px;
  background: #fefbf2;
}

.notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 400;
  flex: 0 0 32px;
}

.notice-box strong {
  display: block;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.notice-box small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.media-section {
  padding-top: 80px;
}

.media-viewport {
  margin-top: 40px;
  overflow: hidden;
}

.media-row {
  display: flex;
  flex-wrap: nowrap !important;
  width: max-content;
  margin-top: 0;
  gap: 30px;
  will-change: transform;
}

.media-row article {
  flex: 0 0 min(330px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(330px, 100%);
  height: 120px;
  border-radius: 8px;
  background: var(--panel);
  transition: opacity .18s ease;
}

.media-row img {
  max-width: 250px;
  max-height: 50px;
}

.media-arrows {
  margin-top: 40px;
  gap: 49px;
}

.media-arrows button {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #303136;
  font-size: 22px;
  line-height: 1;
}

.site-footer {
  margin-top: 80px;
}

body[data-view="list"] .site-footer {
  margin-top: 80px;
}

.footer-main {
  height: 190px;
  background: #fbfbfb;
}

.footer-inner {
  height: 190px;
  padding-top: 38px;
}

.footer-top {
  align-items: flex-start;
}

.site-footer .brand {
  width: auto;
  flex: 0 0 222px;
  gap: 15px;
}

.site-footer .brand-mark {
  width: 40px;
  height: 40px;
}

.site-footer .brand-title {
  color: #2b2b2e;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer .brand-subtitle {
  color: #4c4c4c;
  font-size: 9px;
  letter-spacing: .09px;
  white-space: nowrap;
}

.footer-nav {
  width: auto;
  max-width: calc(100% - 270px);
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 16px 34px;
  margin-left: auto;
  padding-top: 13px;
}

.footer-bottom {
  height: 38px;
  margin-top: 40px;
  justify-content: flex-start !important;
}

.footer-bottom p {
  width: 502px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.subscribe-form {
  width: 567px;
  flex: 0 0 567px;
  gap: 30px;
  margin-left: 98px;
}

.subscribe-form label {
  display: flex;
  align-items: center;
  width: 330px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  background: #ffffff;
}

.mail-icon {
  margin-right: 11px;
}

.mail-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 3px;
  width: 14px;
  height: 10px;
  border: 1.4px solid #9da5b0;
  border-radius: 2px;
}

.mail-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 10px;
  height: 7px;
  border-left: 1.4px solid #9da5b0;
  border-bottom: 1.4px solid #9da5b0;
  transform: rotate(-45deg);
}

.subscribe-form input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--nav);
  font-size: 12px;
  line-height: 1;
}

.subscribe-form button {
  width: 207px;
  height: 38px;
  border: 0;
  background: var(--yellow);
  color: var(--dark);
}

.socials {
  flex: 0 0 156px;
  gap: 30px;
  margin-left: 87px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.socials .vk {
  background: #1685ff;
  text-transform: uppercase;
}

.socials .tg {
  background: #2aa9e0;
  font-size: 12px;
}

.socials .chat {
  border: 5px solid #635bff;
  background: #ffffff;
  position: relative;
}

.socials .chat::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #39c2ff;
}

.footer-legal {
  height: 61px;
  background: #e5e9f0;
}

.footer-legal .container-figma {
  height: 61px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.legal-links {
  gap: 47px;
}

.legal-links a {
  color: var(--muted);
  text-decoration: underline;
}

.modal-open body {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 34, .46);
}

.lead-modal-dialog {
  position: relative;
  width: min(480px, 100%);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(34, 46, 73, .2);
  padding: 40px;
}

.lead-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #f2f3f5;
}

.lead-modal-close::before,
.lead-modal-close::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 15px;
  width: 14px;
  height: 2px;
  background: #333333;
}

.lead-modal-close::before {
  transform: rotate(45deg);
}

.lead-modal-close::after {
  transform: rotate(-45deg);
}

.lead-modal h2 {
  margin: 0 40px 24px 0;
  color: #333333;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #333333;
  font-size: 13px;
  font-weight: 600;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"] {
  width: 100%;
  height: 44px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  padding: 0 14px;
  color: #333333;
  font-size: 14px;
  outline: 0;
}

.lead-form input:focus {
  border-color: rgba(51, 51, 51, .45);
}

.lead-consent {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  margin-top: 4px;
  color: #666666 !important;
  font-weight: 400 !important;
  line-height: 1.4;
}

.lead-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--yellow);
}

.lead-consent a {
  color: #333333;
  text-decoration: underline;
}

.lead-form .yellow-button {
  width: 100%;
  height: 44px;
  margin-top: 4px;
  border: 0;
}

.lead-modal-status {
  margin: 0;
  color: #0f8c6f;
  font-size: 13px;
  line-height: 1.4;
}

/* Figma-exported icon layer replacements. */
.user-icon,
.search-icon,
.mail-icon,
.play-icon,
.chevron,
.sort-icon,
.building-icon,
.shield-icon,
.small-shield,
.notice-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.user-icon::before,
.user-icon::after,
.search-icon::before,
.search-icon::after,
.mail-icon::before,
.mail-icon::after,
.play-icon::after,
.small-shield::after,
.building-icon::before,
.building-icon::after,
.shield-icon::before,
.shield-icon::after,
.sort-icon::before,
.score-icon::before,
.score-icon::after,
.socials .chat::after {
  content: none;
  display: none;
}

.user-icon {
  width: 15px;
  height: 15px;
  background-image: url("icons/icon-user.svg");
}

.search-icon {
  width: 12px;
  height: 12px;
  background-image: url("icons/icon-search.svg");
}

.mail-icon {
  width: 18px;
  height: 18px;
  background-image: url("icons/icon-mail.svg");
}

.play-icon {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 0;
  background-image: url("icons/icon-play.svg");
}

.chevron {
  width: 12px;
  height: 12px;
  border: 0;
  transform: rotate(-90deg);
  background-image: url("icons/icon-chevron.svg");
}

.sort-icon {
  width: 12px;
  height: 12px;
  background-image: url("icons/icon-sliders.svg");
}

.list-icon {
  width: 14px;
  height: 14px;
}

.list-icon::before {
  left: 0;
  top: 0;
  width: 14px;
  height: 2px;
  border-radius: 5px;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.tile-icon {
  width: 14px;
  height: 14px;
}

.tile-icon::before,
.tile-icon::after {
  width: 6px;
  height: 5px;
  border-radius: 5px;
}

.tile-icon::before {
  left: 0;
  top: 0;
  box-shadow: 8px 0 0 currentColor;
}

.tile-icon::after {
  left: 0;
  top: 9px;
  box-shadow: 8px 0 0 currentColor;
}

.small-shield {
  border-radius: 0;
  background-color: transparent;
  background-image: url("icons/icon-shield-small.svg");
}

.hero-stat-icon.building-icon,
.hero-stat-icon.shield-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
}

.hero-stat-icon.building-icon {
  background-image: url("icons/icon-building-50.svg");
}

.hero-stat-icon.shield-icon {
  background-image: url("icons/icon-shield-50.svg");
}

.summary-with-icon .building-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background-image: url("icons/icon-building-40.svg");
}

.summary-with-icon .shield-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background-image: url("icons/icon-shield-40.svg");
}

.hero-chart-img {
  display: block;
  width: 119px;
  height: 65px;
  margin-bottom: 19px;
}

.summary-chart-img {
  display: block;
  order: -1;
  width: 67.28px;
  height: 35px;
  margin-top: 21.5px;
  object-fit: contain;
}

@media (min-width: 1500px) {
  .hero-stat-chart .hero-chart-img {
    width: 115.34px;
    height: 60px;
  }
}

.verified-badge {
  padding-left: 25px;
}

.verified-badge::before {
  left: 8px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: url("icons/icon-verified.svg") center / contain no-repeat;
}

.score-icon {
  background-color: #ffd938;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
}

.score-icon.bank {
  background-image: url("icons/icon-score-bank.svg");
}

.score-icon.growth {
  background-image: url("icons/icon-score-growth.svg");
}

.score-icon.document {
  background-image: url("icons/icon-score-assessment.svg");
}

.notice-icon {
  border: 0;
  border-radius: 0;
  color: transparent;
  font-size: 0;
  background-image: url("icons/icon-notice.svg");
}

.media-arrows button {
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}

.media-arrows button[data-carousel-prev] {
  background-image: url("icons/icon-arrow-left.svg");
}

.media-arrows button[data-carousel-next] {
  background-image: url("icons/icon-arrow-right.svg");
}

.socials a {
  font-size: 0;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
}

.socials .vk {
  background-color: transparent;
  background-image: url("icons/social-vk.png");
  background-size: 32px 32px;
}

.socials .tg {
  background-color: transparent;
  background-image: url("icons/social-tg.png");
  background-size: 32px 32px;
  font-size: 0;
}

.socials .chat {
  border: 0;
  background-color: transparent;
  background-image: url("icons/social-max.png");
  background-size: 32px 32px;
}

@media (max-width: 1499.98px) {
  .container-figma {
    width: min(1140px, calc(100vw - 48px));
  }

  .hero-inner {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .hero-copy,
  .hero-stats-card {
    position: static;
  }

  .hero-copy {
    flex: 0 0 460px;
    width: 460px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    width: 100%;
  }

  .hero-stats-card {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    padding-left: 42px;
    padding-right: 42px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .summary-metrics {
    width: auto;
    flex-wrap: wrap;
  }

  .cards-grid > .col-xl-6,
  .growth-card {
    width: 100%;
  }

  .cards-grid > .col-xl-6:nth-child(even) {
    margin-left: 0;
  }

  .table-head,
  .table-row,
  .table-line,
  .notice-box {
    width: 100%;
  }

  .table-head,
  .table-row {
    grid-template-columns: 44px minmax(330px, 1fr) 160px 160px 130px 190px;
  }

  .footer-bottom,
  .footer-top {
    gap: 24px;
  }
}

@media (max-width: 1199.98px) {
  .hero-section {
    height: auto;
    padding: 64px 0;
  }

  .hero-inner,
  .hero-copy,
  .hero-stats-card {
    position: static;
  }

  .hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
  }

  .hero-copy {
    width: 44%;
  }

  .hero-stats-card {
    width: 56%;
    max-width: none;
    height: auto;
    min-height: 294px;
  }

  .view-summary {
    height: auto;
    align-items: flex-start !important;
    gap: 24px;
  }

  .summary-metrics {
    gap: 24px;
  }

  .growth-card {
    max-width: 690px;
  }

  .score-card,
  .media-row article {
    width: calc(50% - 15px);
  }

  .footer-main {
    height: auto;
  }

  .footer-inner {
    height: auto;
    padding-bottom: 32px;
  }

  .footer-top,
  .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-bottom {
    height: auto;
    justify-content: space-between !important;
  }

  .subscribe-form,
  .socials {
    margin-left: 0;
  }

  .subscribe-form {
    flex: 0 1 auto;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    height: 86px;
  }

  .header-inner {
    height: 83px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    flex: 0 0 auto;
    width: 100%;
  }

  .hero-copy p {
    width: min(100%, 520px);
  }

  .hero-stats-card {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 64px 32px 40px;
  }

  .filters-row {
    gap: 12px;
  }

  .filter-search,
  .filter-search.wide,
  .filter-select,
  .list-select,
  .filter-sort {
    width: calc(50% - 6px);
  }

  .view-summary {
    flex-direction: column;
  }

  .summary-metrics {
    width: 100%;
  }

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

  .growth-card > img {
    width: 100%;
    height: auto;
    aspect-ratio: 330 / 255;
  }

  .growth-card-body {
    width: auto;
    height: auto;
    margin: 22px 18px;
  }

  .card-heading,
  .card-values,
  .card-kpis,
  .card-bottom {
    width: 100%;
  }

  .company-table {
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .table-head,
  .table-row {
    width: 990px;
    grid-template-columns: 44px 330px 150px 150px 120px 170px;
  }

  .table-line {
    width: 990px;
  }

  .row-company {
    gap: 20px;
  }

  .row-company img {
    width: 150px;
    height: 86px;
  }

  .table-button {
    width: 170px;
  }

  .score-card,
  .media-row article {
    width: 100%;
  }

  .footer-nav {
    width: 100%;
    max-width: none;
    flex-basis: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  .container-figma {
    width: calc(100vw - 32px);
  }

  .brand-title {
    font-size: 16px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .nowrap {
    white-space: normal;
  }

  .hero-actions,
  .card-values,
  .card-kpis,
  .card-bottom,
  .subscribe-form {
    flex-direction: column;
    align-items: stretch !important;
  }

  .primary-action,
  .secondary-action,
  .view-toggle,
  .filter-search,
  .filter-search.wide,
  .filter-select,
  .list-select,
  .filter-sort,
  .subscribe-form label,
  .subscribe-form button {
    width: 100%;
  }

  .summary-item {
    width: 100%;
  }

  .score-heading {
    width: 100%;
    height: auto;
  }

  .hero-stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 54px 24px 32px;
  }

  .verified-ribbon {
    left: 24px;
    right: auto;
    max-width: calc(100% - 48px);
  }

  .card-values,
  .card-kpis,
  .card-bottom {
    height: auto;
  }

  .card-kpis {
    gap: 12px;
  }

  .details-button {
    width: 100%;
  }

  .notice-box {
    height: auto;
    align-items: flex-start !important;
  }

  .footer-bottom p,
  .subscribe-form {
    width: 100%;
  }

  .footer-legal {
    height: auto;
    padding: 20px 0;
  }

  .footer-legal .container-figma,
  .legal-links {
    height: auto;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }

  .lead-modal {
    padding: 16px;
  }

  .lead-modal-dialog {
    padding: 32px 22px 24px;
    border-radius: 16px;
  }

  .lead-modal h2 {
    font-size: 24px;
  }
}

/* Inner pages */
body.inner-page {
  color: #333333;
  background: #ffffff;
}

body.inner-page .site-footer {
  margin-top: 0;
}

.inner-main {
  padding-top: 0;
}

.inner-main.about-main {
  min-height: 904px;
}

.inner-main.documents-main {
  min-height: 1561px;
}

.inner-main.blog-main {
  min-height: 1720px;
}

.inner-main.post-main {
  min-height: 1943px;
}

.inner-main.invest-main {
  min-height: 3000px;
}

.inner-main.raise-main {
  min-height: 4248px;
}

.breadcrumbs {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs a,
.breadcrumbs span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 16px;
  background: #f6f7f9;
  padding: 0 20px;
  color: #4c4c4c;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
}

.inner-page-title {
  margin: 40px 0 0;
  color: #333333;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-text {
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.page-text p {
  margin: 0 0 24px;
}

.page-text h2 {
  margin: 34px 0 14px;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.post-source a {
  color: #333333;
  text-decoration: underline;
}

.yellow-button {
  width: 210px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 206, 0, 0.5);
  border-radius: 16px;
  background: #ffce00;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.outline-yellow-button {
  width: 210px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 206, 0, 0.5);
  border-radius: 8px;
  background: #ffffff;
  color: #333333;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 690px 690px;
  gap: 30px;
  margin-top: 27px;
}

.about-lead {
  width: 690px;
  height: 391px;
}

.about-lead p,
.about-wide-text p {
  margin: 0;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, 330px);
  gap: 30px;
  margin-top: -79px;
}

.about-metric {
  width: 330px;
  height: 220px;
  border: 1px solid #e5e9f0;
  border-radius: 20px;
  background: #ffffff;
  padding: 30px 23px 30px 32px;
}

.about-metric img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}

.about-metric strong {
  display: block;
  color: #333333;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.about-metric span {
  display: block;
  width: min(274px, 100%);
  margin-top: 8px;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  white-space: nowrap;
}

.about-wide-text {
  width: 1410px;
  min-height: 208px;
  margin-top: 60px;
}

.about-main .about-metrics {
  display: none;
}

.about-content {
  width: 100%;
  margin-top: 30px;
}

.about-content .about-intro {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.about-content p {
  margin-bottom: 18px;
}

.about-content h2 {
  margin-top: 44px;
}

.about-founder-block {
  margin-top: 44px;
}

.about-founder-block h2 {
  margin-top: 0;
}

.about-founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 60px;
  align-items: stretch;
  margin-top: 18px;
}

.about-founder-text p:first-child {
  margin-top: 0;
}

.about-founder-photo {
  width: 260px;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.about-formula-card {
  width: 100%;
  margin: 44px 0 0;
  border: 1px solid #e5e9f0;
  border-radius: 20px;
  background: #f9fafe;
  padding: 34px 40px 36px;
}

.about-formula-card h2 {
  margin-top: 0;
}

.about-formula-label {
  margin-top: 26px !important;
  color: #333333 !important;
  font-weight: 700 !important;
}

.about-formula {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-top: 10px;
  border-radius: 12px;
  background: #ffce00;
  padding: 0 22px;
  color: #333333;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.about-definition-list {
  display: grid;
  gap: 14px;
  margin: 14px 0 26px;
  padding: 0;
}

.about-definition-list div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid #e5e9f0;
  padding-top: 14px;
}

.about-definition-list dt {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.about-definition-list dd {
  margin: 0;
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.documents-list {
  margin-top: 40px;
}

.document-row {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  transition: min-height .28s ease;
}

.document-row:not(:first-child) {
  margin-bottom: 60px;
}

.document-row.is-open {
  min-height: 195px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.document-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 1px;
  background: #e5e9f0;
}

.document-row.is-open::after {
  bottom: -30px;
}

.document-copy {
  width: 1290px;
  max-width: 1290px;
}

.document-copy h2 {
  margin: 0;
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.document-copy p {
  max-width: 1290px;
  margin: 20px 0 0;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  white-space: pre-line;
}

.document-row.is-open .document-copy h2 {
  line-height: 1;
}

.document-row.is-open .document-copy p {
  margin-top: 15px;
}

.document-copy .document-panel {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .28s ease, opacity .2s ease, margin-top .28s ease;
}

.document-row.is-open .document-panel {
  margin-top: 15px;
  max-height: 190px;
  opacity: 1;
}

.document-action {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  background: rgba(102, 102, 102, 0.1);
}

.document-row.is-open .document-action {
  margin-top: 73px;
  background: rgba(1, 70, 238, 0.1);
}

.document-action img {
  width: 23px;
  height: 23px;
  transition: transform .28s ease;
}

.document-row.is-open .document-action img {
  transform: rotate(180deg);
}

.blog-card-image {
  display: block;
  width: 100%;
  margin-top: 0;
  border-radius: 16px;
}

.blog-card h2 a,
.blog-card h3 a {
  display: inline;
  width: auto;
  margin-top: 0;
  color: inherit;
  text-decoration: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 450px);
  column-gap: 30px;
  row-gap: 40px;
  margin-top: 40px;
}

.blog-card {
  width: 450px;
  min-height: 433px;
}

.blog-card img {
  width: 450px;
  height: 220px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.blog-card-body {
  padding-top: 20px;
}

.blog-tag {
  min-height: 24px;
  display: flex;
  align-items: center;
  width: max-content;
  border-radius: 16px;
  background: #ffce00;
  padding: 0 8px;
  color: #333333;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}

.blog-card h2,
.blog-card h3 {
  margin: 8px 0 0;
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card p {
  margin: 16px 0 0;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.blog-card-body > a {
  display: flex;
  width: max-content;
  margin-top: 16px;
  color: #f9a618;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.26px;
  text-decoration: none;
}

.blog-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.post-date {
  margin: 16px 0 0;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.post-hero-img {
  width: 1410px;
  height: 620px;
  display: block;
  margin-top: 40px;
  border-radius: 16px;
  object-fit: cover;
}

.post-body {
  width: 1410px;
  margin-top: 40px;
}

.post-related-title {
  margin-top: 86px;
}

.post-related-grid {
  margin-top: 40px;
}

.invest-hero {
  position: relative;
  min-height: 556px;
  margin-top: 40px;
}

.invest-hero-copy {
  width: 680px;
  padding-top: 0;
}

.invest-hero-copy h1,
.raise-hero-copy h1 {
  margin: 0;
  color: #2b2b2e;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.invest-hero-copy p,
.raise-hero-copy p {
  width: 575px;
  margin: 24px 0 0;
  color: #808080;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.invest-hero-copy .yellow-button,
.raise-hero-copy .yellow-button {
  margin-top: 40px;
}

.invest-hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 682px;
  height: 556px;
  object-fit: cover;
  object-position: center 56%;
}

.invest-stats {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: -75px;
}

.invest-stat strong,
.raise-stat strong {
  display: block;
  color: #333333;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.invest-stat span,
.raise-stat span {
  display: block;
  margin-top: 10px;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.section-heading-center {
  text-align: center;
}

.section-heading-center h2,
.section-heading-left h2 {
  margin: 0;
  color: #333333;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.section-heading-center p,
.section-heading-left p {
  margin: 16px 0 0;
  color: #808080;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.earnings-section {
  margin-top: 68px;
}

.invest-slider {
  width: 454px;
  margin: 40px auto 0;
}

.invest-slider-value {
  display: block;
  margin-bottom: 14px;
  color: #f9a618;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.invest-slider-line {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #e5e9f0;
}

.invest-slider-input {
  position: absolute;
  inset: -12px 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.invest-slider-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 27%;
  border-radius: 999px;
  background: #ffce00;
}

.invest-slider-knob {
  position: absolute;
  left: 27%;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border: 8px solid #ffce00;
  border-radius: 50%;
  background: #ffffff;
  pointer-events: none;
}

.earning-cards {
  display: grid;
  grid-template-columns: repeat(4, 330px);
  gap: 30px;
  margin-top: 52px;
}

.earning-card {
  width: 330px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e5e9f0;
  border-radius: 32px;
  background: #ffffff;
  padding: 32px 28px 26px;
  text-align: center;
}

.earning-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.earning-card:nth-child(1) img,
.earning-card:nth-child(3) img {
  width: 139px;
  height: 60px;
  object-fit: cover;
}

.earning-card:nth-child(4) img {
  width: 100px;
  height: 44.25px;
  object-fit: contain;
}

.earning-card h3 {
  margin: 14px 0 0;
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.earning-card p {
  min-height: 40px;
  margin: 8px 0 0;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.earning-card strong {
  display: block;
  margin-top: auto;
  color: #333333;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.earning-card small {
  display: block;
  margin-top: 5px;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.invest-steps-section {
  margin-top: 99px;
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(4, 330px);
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  position: relative;
  width: 330px;
  min-height: 175px;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.step-card b {
  display: block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 1px #e5e9f0;
  text-stroke: 1px #e5e9f0;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
}

.step-card h3 {
  margin: 5px 0 0;
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.step-card p {
  margin: 5px 0 0;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.invest-cases-section {
  margin-top: 70px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 690px);
  gap: 30px;
  margin-top: 40px;
}

.case-card {
  width: 690px;
  min-height: 280px;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 15px;
  border: 1px solid #e5e9f0;
  border-radius: 20px;
  background: #ffffff;
  padding: 26px 21px;
}

.case-card img {
  box-sizing: border-box;
  width: 210px;
  height: 120px;
  display: block;
  border-radius: 20px;
  background: #f9fafe;
  padding: 26px 56px 25px;
  object-fit: cover;
  object-position: center;
}

.case-card h3 {
  margin: 0;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.case-card .case-subtitle {
  display: block;
  margin-top: 5px;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.case-card p {
  margin: 20px 0 0;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.case-card p strong {
  display: block;
  margin-bottom: 5px;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.invest-blog-section {
  margin-top: 100px;
}

.invest-blog-section .blog-grid {
  margin-top: 40px;
}

.raise-hero {
  position: relative;
  height: 670px;
  margin-top: -26px;
}

.raise-hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 670px;
  height: 670px;
  object-fit: contain;
}

.raise-hero-copy {
  position: absolute;
  top: 178px;
  left: 0;
  width: 650px;
}

.raise-platform {
  margin-top: 25px;
}

.raise-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.raise-stat {
  position: relative;
  min-height: 110px;
}

.raise-stat::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #ffce00;
  box-shadow: 9px 0 0 rgba(255, 206, 0, 0.35);
}

.raise-expert {
  position: relative;
  height: 520px;
  margin-top: 116px;
}

.raise-expert-panel {
  width: 1390px;
  height: 460px;
  border-radius: 20px;
  background: #f9fafe;
  padding: 62px 70px;
}

.raise-expert-copy {
  width: 610px;
}

.raise-expert-copy h2,
.raise-projects h2,
.raise-business h2,
.raise-process h2,
.raise-team h2,
.raise-faq h2 {
  margin: 0;
  color: #333333;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.raise-expert-copy p {
  width: 560px;
  margin: 20px 0 0;
  color: #808080;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.raise-checks {
  display: grid;
  gap: 15px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.raise-checks li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.raise-checks li::before {
  content: "";
  position: static;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 0;
  background: url("figma/raise-check.svg") center / 14.6664px 10.7782px no-repeat;
}

.raise-expert-copy .yellow-button {
  width: 169px;
  height: 43px;
  margin-top: 30px;
  border-radius: 8px;
  font-size: 13px;
}

.raise-expert-img {
  position: absolute;
  right: 120px;
  top: -20px;
  width: 480px;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
}

.raise-projects {
  min-height: 684px;
  padding-top: 14px;
  margin-top: 37px;
}

.raise-project-grid {
  display: grid;
  grid-template-columns: repeat(2, 690px);
  gap: 30px;
  margin-top: 40px;
}

.raise-project-grid .growth-card {
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.raise-project-card {
  min-height: 255px;
  border: 1px solid #e5e9f0;
  border-radius: 20px;
  background: #ffffff;
  padding: 28px;
}

.raise-project-card h3 {
  margin: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.raise-project-card p {
  margin: 12px 0 0;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.raise-project-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.raise-project-values strong {
  display: block;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.raise-project-values span {
  display: block;
  margin-top: 6px;
  color: #808080;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.raise-business {
  margin-top: 110px;
}

.raise-business-panel {
  display: grid;
  grid-template-columns: 610px 1fr;
  gap: 70px;
  min-height: 440px;
  margin-top: 40px;
  border-radius: 20px;
  background: #f9fafe;
  padding: 62px 70px;
}

.raise-business-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.raise-business-list li {
  position: relative;
  padding-left: 34px;
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.raise-business-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffce00;
}

.raise-business-panel p {
  margin: 0;
  color: #808080;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.raise-process {
  margin-top: 110px;
}

.raise-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 330px);
  gap: 30px;
  margin-top: 40px;
}

.raise-process-card {
  min-height: 250px;
  border-radius: 20px;
  background: #f6f7f9;
  padding: 30px;
}

.raise-process-card b {
  display: block;
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.raise-process-card h3 {
  margin: 24px 0 0;
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.raise-process-card p {
  margin: 12px 0 0;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.raise-team {
  margin-top: 100px;
}

.raise-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 450px);
  gap: 30px;
  margin-top: 40px;
}

.raise-person {
  min-height: 360px;
}

.raise-person img {
  width: 450px;
  height: 230px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.raise-person h3 {
  margin: 20px 0 0;
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.raise-person p {
  margin: 8px 0 0;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.raise-faq {
  margin-top: 100px;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border: 1px solid #e5e9f0;
  border-radius: 20px;
  background: #ffffff;
  padding: 0 30px;
}

.faq-item span {
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-item b {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffce00;
  color: #333333;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 1499.98px) {
  .about-layout,
  .case-grid,
  .raise-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-lead,
  .about-wide-text,
  .post-hero-img,
  .post-body {
    width: 100%;
  }

  .about-metrics,
  .earning-cards,
  .step-cards,
  .raise-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-metric,
  .earning-card,
  .step-card,
  .case-card,
  .raise-project-card {
    width: 100%;
  }

  .blog-grid,
  .raise-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-card,
  .blog-card img,
  .raise-person img {
    width: 100%;
  }

  .invest-hero-img {
    width: 48%;
  }

  .raise-expert-panel {
    width: 100%;
  }

  .raise-expert-img {
    right: 70px;
  }
}

@media (max-width: 991.98px) {
  .inner-main.about-main,
  .inner-main.documents-main,
  .inner-main.blog-main,
  .inner-main.post-main,
  .inner-main.invest-main,
  .inner-main.raise-main {
    min-height: 0;
    padding-bottom: 80px;
  }

  .inner-page-title,
  .invest-hero-copy h1,
  .raise-hero-copy h1,
  .section-heading-center h2,
  .section-heading-left h2,
  .raise-expert-copy h2,
  .raise-projects h2,
  .raise-business h2,
  .raise-process h2,
  .raise-team h2,
  .raise-faq h2 {
    font-size: 34px;
  }

  .about-layout,
  .case-grid,
  .raise-project-grid,
  .raise-business-panel,
  .blog-grid,
  .post-related-grid,
  .raise-team-grid {
    grid-template-columns: 1fr;
  }

  .about-metrics {
    margin-top: 0;
  }

  .invest-hero,
  .raise-hero {
    min-height: 0;
    height: auto;
    margin-top: 40px;
  }

  .invest-hero-img,
  .raise-hero-img,
  .raise-hero-copy {
    position: static;
  }

  .invest-hero-img,
  .raise-hero-img {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .invest-hero-copy,
  .raise-hero-copy,
  .invest-hero-copy p,
  .raise-hero-copy p,
  .raise-expert-copy,
  .raise-expert-copy p {
    width: 100%;
  }

  .invest-stats,
  .raise-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .earning-cards,
  .step-cards,
  .raise-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .raise-expert {
    height: auto;
  }

  .raise-expert-panel {
    height: auto;
    padding: 40px;
  }

  .raise-expert-img {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 30px;
  }

  .post-hero-img {
    height: auto;
    aspect-ratio: 1410 / 620;
  }
}

@media (max-width: 575.98px) {
  .breadcrumbs {
    flex-wrap: wrap;
    height: auto;
  }

  .inner-page-title,
  .invest-hero-copy h1,
  .raise-hero-copy h1,
  .section-heading-center h2,
  .section-heading-left h2,
  .raise-expert-copy h2,
  .raise-projects h2,
  .raise-business h2,
  .raise-process h2,
  .raise-team h2,
  .raise-faq h2 {
    font-size: 30px;
  }

  .about-metrics,
  .earning-cards,
  .step-cards,
  .invest-stats,
  .raise-stats,
  .raise-process-grid {
    grid-template-columns: 1fr;
  }

  .about-metric,
  .earning-card,
  .step-card {
    min-height: auto;
    height: auto;
  }

  .case-card {
    width: auto;
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .document-row {
    gap: 18px;
  }

  .document-copy h2,
  .faq-item span {
    font-size: 18px;
  }

  .blog-card img {
    height: auto;
    aspect-ratio: 450 / 220;
  }

  .invest-slider {
    width: 100%;
  }

  .raise-expert-panel,
  .raise-business-panel {
    padding: 30px 22px;
  }

  .raise-project-values {
    grid-template-columns: 1fr;
  }
}

/* Raise investments page refinements */
.raise-project-grid {
  grid-template-columns: repeat(2, 690px);
  gap: 40px 30px;
}

.raise-project-grid .growth-card {
  margin: 0;
}

.raise-business {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 49px;
  background: #f9fafb;
  padding: 60px 0;
}

.raise-business-inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 70px;
}

.raise-business h2 {
  margin-bottom: 40px;
}

.raise-business-list {
  gap: 20px;
}

.raise-business-list li {
  min-height: 24px;
  padding-left: 34px;
  font-size: 16px;
  font-weight: 700;
}

.raise-business-list li::before {
  top: 3px;
  width: 16px;
  height: 16px;
  border: 5px solid #ffce00;
  background: #ffffff;
}

.raise-rocket-img {
  width: 780px;
  max-width: 100%;
  display: block;
}

.raise-process {
  margin-top: 70px;
  height: 279px;
  min-height: 279px;
  text-align: center;
}

.raise-process p,
.raise-team p {
  margin: 20px 0 0;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.raise-process-grid {
  position: relative;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 62px;
}

.raise-process-grid::before {
  content: "";
  position: absolute;
  left: 42px;
  right: 42px;
  top: 28px;
  border-top: 1px dashed rgba(255, 206, 0, 0.75);
}

.raise-process-card {
  position: relative;
  min-height: 120px;
  padding: 0 0 0;
  background: transparent;
  border-radius: 0;
  text-align: left;
}

.raise-process-card b {
  position: relative;
  z-index: 1;
  display: block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 1px #ffce00;
  text-stroke: 1px #ffce00;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
}

.raise-process-card h3 {
  width: 185px;
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.raise-process-card p {
  display: none;
}

.raise-team {
  margin-top: 70px;
  text-align: center;
}

.raise-team-viewport {
  overflow: hidden;
  margin-top: 40px;
}

.raise-team-grid {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 30px;
  margin-top: 0;
  text-align: left;
  will-change: transform;
}

.raise-team > h2,
.raise-team > p,
.raise-team-viewport,
.raise-team-arrows {
  transform: translateY(27px);
}

.raise-team-grid .raise-person:nth-child(n + 5) {
  display: grid;
}

.raise-person {
  flex: 0 0 330px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  min-height: 120px;
  align-items: center;
}

.raise-person img {
  width: 120px;
  height: 120px;
  border-radius: 16px;
}

.raise-person h3 {
  margin: 0;
  font-size: 16px;
}

.raise-person p {
  margin-top: 8px;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
}

.raise-team-arrows {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 40px;
}

.raise-team-arrows button {
  border: 0;
  background: transparent;
  color: #333333;
  font-size: 34px;
  line-height: 1;
}

.raise-faq {
  margin-top: 64px;
  text-align: center;
}

.faq-list {
  display: block;
  height: 240px;
  margin-top: 40px;
}

.faq-item {
  position: relative;
  min-height: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  margin-bottom: 60px;
  padding: 0;
  text-align: left;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  border-bottom: 1px dashed #e5e9f0;
}

.faq-item span {
  font-size: 20px;
  font-weight: 700;
}

.faq-item b {
  width: 40px;
  height: 40px;
  background: #f2f3f5;
  color: #949494;
  font-size: 24px;
}

/* Pass 4: page-specific Figma typography and section geometry */
.invest-hero-copy p,
.raise-hero-copy p {
  font-size: 16px;
  line-height: 1.6;
}

.invest-stat strong,
.raise-stat strong {
  font-size: 20px;
  line-height: 1.4;
}

.invest-stat span,
.raise-stat span {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.invest-main .section-heading-center h2,
.invest-main .section-heading-left h2,
.raise-expert-copy h2,
.raise-projects h2,
.raise-business h2,
.raise-process h2,
.raise-team h2,
.raise-faq h2 {
  font-size: 30px;
  line-height: 1.3;
}

.invest-steps-section .section-heading-center h2 {
  letter-spacing: 0.6px;
}

.raise-team h2 {
  line-height: 1.4;
}

.invest-main .section-heading-center p,
.invest-main .section-heading-left p,
.raise-process p,
.raise-team p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.4;
}

.raise-team > p {
  margin-top: 20px;
}

.raise-person p {
  margin-top: 8px;
  font-size: 14px;
  color: #808080;
}

.earnings-section {
  margin-top: 105px;
}

.invest-slider {
  margin-top: 46px;
}

.earning-cards {
  margin-top: 46px;
}

.earning-card h3 {
  font-size: 16px;
}

.earning-card strong {
  color: #f9a618;
  font-size: 20px;
}

.invest-steps-section {
  margin-top: 101px;
}

.invest-steps-section .section-heading-center h2,
.invest-blog-section .section-heading-center h2,
.raise-projects h2,
.raise-business h2 {
  line-height: 1.4;
}

.invest-steps-section .section-heading-center p {
  margin-top: 20px;
}

.step-cards {
  margin-top: 40px;
}

.step-card h3 {
  font-size: 15px;
}

.invest-cases-section {
  margin-top: 103px;
}

.case-grid {
  margin-top: 43px;
}

.case-card {
  border-radius: 20px;
}

.invest-blog-section {
  margin-top: 100px;
}

.earnings-section .yellow-button,
.invest-steps-section .yellow-button {
  width: 154px;
  height: 43px;
  border-radius: 8px;
  font-size: 13px;
}

.raise-platform {
  min-height: 227px;
}

.raise-platform .section-heading-center h2 {
  font-size: 30px;
}

.raise-stats {
  position: relative;
  grid-template-columns: repeat(6, 210px);
  gap: 30px;
  margin-top: 53px;
}

.raise-stats::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 1218px;
  height: 1px;
  background: url("figma/raise-platform-line.svg") left center / 1218px 1px no-repeat;
}

.raise-stat::before {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin-bottom: 16px;
  background: url("figma/raise-platform-dot.svg") center / 18px 18px no-repeat;
  box-shadow: none;
}

.raise-expert-panel {
  position: relative;
  top: 11px;
}

.raise-expert-copy p {
  font-size: 16px;
  line-height: 1.6;
}

.raise-checks li {
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.raise-expert-img {
  top: -9px;
}

.raise-business {
  height: 624px;
  padding: 0;
  display: flex;
  align-items: center;
  margin-top: 62px;
  background: linear-gradient(90deg, #f6f6f6 0%, #fdfdfd 42.812%, #fdfdfd 100%);
}

.raise-business-inner {
  grid-template-columns: 499px 840px;
  gap: 70px;
}

.raise-rocket-img {
  width: 840px;
  height: 417px;
  object-fit: cover;
  object-position: 30% center;
}

.raise-business h2 {
  margin-bottom: 30px;
}

.raise-business-list {
  width: 449px;
  gap: 26px;
}

.raise-business-list li {
  min-height: 0;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.raise-business-list li::before {
  top: 2px;
  width: 18px;
  height: 18px;
  border-width: 5px;
}

.raise-process-grid::before {
  left: 72px;
  right: 205px;
  top: 30px;
}

.raise-process h2 {
  transform: translateY(30px);
}

.raise-process > p {
  transform: translateY(41px);
}

.raise-process-grid {
  transform: translateY(19px);
}

.raise-process-card h3 {
  width: 210px;
  margin-top: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.invest-hero-copy .yellow-button {
  width: 154px;
  height: 43px;
  border-radius: 8px;
  font-size: 13px;
}

.invest-steps-section .section-heading-center p {
  color: #333333;
  font-weight: 600;
}

.raise-faq {
  margin-top: 123px;
}

.raise-faq h2 {
  line-height: 1.4;
}

.raise-faq .documents-list {
  margin-top: 40px;
  text-align: left;
}

.raise-faq .document-row:last-child {
  margin-bottom: 0;
}

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

  .raise-stats {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
  }

  .raise-stats::before {
    width: 100%;
    background-size: 100% 1px;
  }

  .raise-business-inner {
    grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
    gap: 40px;
  }

  .raise-rocket-img {
    width: 100%;
    height: auto;
  }

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

@media (max-width: 991.98px) {
  .invest-stats {
    display: grid;
  }

  .raise-business-inner,
  .raise-project-grid,
  .raise-process-grid {
    grid-template-columns: 1fr;
  }

  .raise-business {
    height: auto;
  }

  .raise-business-list {
    width: 100%;
    max-width: 100%;
  }

  .raise-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .raise-stats::before {
    display: none;
  }

  .raise-rocket-img {
    width: 100%;
    height: auto;
  }

  .raise-process-grid::before {
    display: none;
  }

  .raise-process-card {
    text-align: center;
  }

  .raise-process-card h3 {
    width: auto;
  }

  .raise-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .raise-business {
    height: auto;
    padding: 70px 0;
  }

  .invest-stats {
    display: grid;
  }

  .raise-stats {
    grid-template-columns: 1fr;
  }

  .raise-person {
    grid-template-columns: 92px 1fr;
    flex-basis: 100%;
    gap: 18px;
  }

  .raise-person img {
    width: 92px;
    height: 92px;
  }
}

/* Company card page */
body.company-page .site-footer {
  margin-top: 1.45px;
}

.company-main {
  padding-bottom: 0;
}

.company-breadcrumbs {
  margin-top: 0;
}

.company-hero {
  display: grid;
  grid-template-columns: 930px 450px;
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.company-hero-left {
  width: 930px;
}

.company-hero-head {
  display: grid;
  grid-template-columns: 210px 690px;
  gap: 30px;
  align-items: center;
}

.company-logo-group {
  display: grid;
  gap: 15px;
}

.company-logo-card {
  width: 210px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e9f0;
  border-radius: 16px;
  background: #ffffff;
}

.company-logo-card.company-logo-placeholder {
  overflow: hidden;
  border-color: #fedd2c;
  background: #fedd2c;
}

.company-logo-card img {
  width: 109px;
  height: 90px;
  object-fit: contain;
}

.company-logo-card img.is-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: contain;
  object-position: center;
  background: #fedd2c;
}

.company-founder {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-founder img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.company-founder img.is-placeholder,
.company-team img.is-placeholder,
.company-docs img.is-placeholder {
  background: #fedd2c;
  object-fit: contain;
  object-position: center;
}

.company-founder small,
.company-location small,
.company-facts small,
.company-kpis small,
.company-invest-grid small,
.company-finance-grid small,
.company-value-card p,
.company-value-card small {
  display: block;
  color: #4c4c4c;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.company-founder strong {
  display: block;
  margin-top: 5px;
  color: #2b2b2e;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.company-title-block {
  display: grid;
  gap: 32px;
}

.company-title-line {
  display: flex;
  align-items: center;
  gap: 20px;
}

.company-title-line h1 {
  margin: 0;
  color: #2b2b2e;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.company-tags {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.company-tags span {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.tag-success {
  color: #0f9d82;
  background: rgba(15, 157, 130, .1);
}

.tag-blue {
  color: #1b71c2;
  background: rgba(185, 222, 240, .25);
}

.tag-gray {
  color: #2b2b2e;
  background: rgba(102, 102, 102, .1);
}

.company-lead {
  margin: -27px 0 0;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.company-location strong {
  display: block;
  width: 684px;
  margin-top: 8px;
  color: #2b2b2e;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.company-divider {
  height: 1px;
  margin-top: 28px;
  background: #e5e9f0;
}

.company-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.company-facts article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  min-height: 36px;
}

.company-facts article:nth-child(1),
.company-facts article:nth-child(6) {
  width: 150px;
}

.company-facts article:nth-child(2),
.company-facts article:nth-child(7) {
  width: 140px;
}

.company-facts article:nth-child(3) {
  width: 190px;
}

.company-facts article:nth-child(4) {
  width: 170px;
}

.company-facts article:nth-child(5) {
  width: 170px;
}

.company-facts article:nth-child(8) {
  width: 190px;
}

.company-facts img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 24px;
  opacity: .35;
}

.company-facts strong {
  display: block;
  margin-top: 8px;
  color: #2b2b2e;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.company-facts article.company-round-request {
  width: 250px;
  min-height: 118px;
  align-items: flex-start;
  border: 1px solid #d5e8ff;
  border-radius: 12px;
  padding: 14px;
  background: #f7fbff;
  box-shadow: 0 10px 28px rgba(1, 70, 238, .06);
}

.company-facts article.company-round-request img {
  opacity: 1;
  filter: invert(38%) sepia(88%) saturate(2878%) hue-rotate(202deg) brightness(101%) contrast(102%);
}

.company-facts article.company-round-request strong {
  white-space: normal;
}

.company-facts article.company-round-request em {
  display: inline-flex;
  align-items: center;
  height: 24px;
  margin-top: 8px;
  border-radius: 16px;
  padding: 0 12px;
  background: rgba(185, 222, 240, .45);
  color: #1b71c2;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.company-facts article.company-round-request time {
  display: block;
  margin-top: 10px;
  color: #2b2b2e;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.company-fact-wide {
  width: min(360px, 100%);
}

.company-round-summary {
  margin-top: 30px;
  border-top: 1px solid #e5e9f0;
  padding-top: 22px;
  padding-bottom: 24px;
}

.company-round-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.company-round-summary-head p {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: #2b2b2e;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.company-round-summary-head strong {
  color: #1b71c2;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.company-round-summary-head span {
  color: #4c4c4c;
}

.company-round-summary-head .company-round-dot {
  color: #2b2b2e;
}

.company-round-until {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

.company-round-until svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #808080;
}

.company-round-progress {
  position: relative;
  height: 10px;
  margin-top: 16px;
  border-radius: 999px;
  background: #eef2f7;
}

.company-round-progress span {
  display: block;
  width: 0;
  max-width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #1479ff;
}

.company-round-progress b {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.company-round-use {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.company-round-use article {
  min-height: 90px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px 10px;
  align-content: start;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  padding: 14px;
  background: #ffffff;
}

.company-round-use article > span {
  grid-row: 1 / 3;
  color: #7a39cc;
}

.company-round-use svg {
  display: block;
  width: 24px;
  height: 24px;
}

.company-round-use small {
  min-width: 0;
  color: #2b2b2e;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.22;
}

.company-round-use strong {
  color: currentColor;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.company-round-use .is-purple {
  color: #6839c8;
}

.company-round-use .is-green {
  color: #0f9d82;
}

.company-round-use .is-blue {
  color: #1479ff;
}

.company-round-use .is-orange {
  color: #f36f21;
}

.company-value-card {
  width: 450px;
  height: 336px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e5e9f0;
  border-radius: 16px;
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
}

.company-value-card > p:first-child {
  margin: 0;
  color: #666666;
  font-size: 14px;
}

.company-value-title {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.company-value-info {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #666666;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  color: #666666;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.company-value-info:focus-visible {
  outline: 2px solid rgba(15, 157, 130, .45);
  outline-offset: 2px;
}

.company-value-tooltip {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 50%;
  width: 371px;
  min-height: 157px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e9f0;
  border-radius: 16px;
  padding: 19px 14px 18px 18px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 18px 40px rgba(43, 43, 46, .08);
  color: #4c4c4c;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  transform: translateX(-50%) translateY(-4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(8.5px);
  -webkit-backdrop-filter: blur(8.5px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.company-value-title.is-tooltip-open .company-value-tooltip {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .company-value-title:hover .company-value-tooltip {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.company-value-card > strong {
  display: block;
  margin-top: 3px;
  color: #2b2b2e;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.company-value-card > small {
  margin-top: 10px;
}

.company-value-line {
  width: 400px;
  height: 1px;
  margin: 20px 0;
  background: #e5e9f0;
}

.company-consent-label {
  margin: 0 0 8px;
}

.company-consent-main,
.company-consent-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.company-consent-main img {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.company-consent-main b,
.company-consent-more span {
  color: #2b2b2e;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.company-consent-more {
  margin-top: 15px;
}

.company-consent-more span {
  font-weight: 400;
}

.company-consent-more div {
  display: flex;
  width: 55px;
}

.company-consent-more img {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-left: -7px;
}

.company-consent-more img:first-child {
  margin-left: 0;
}

.company-value-dates {
  width: 400px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
}

.company-value-dates small,
.company-value-dates b {
  display: block;
}

.company-value-dates b {
  margin-top: 8px;
  color: #2b2b2e;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.company-kpis {
  display: grid;
  grid-template-columns: repeat(6, 210px);
  justify-content: space-between;
  gap: 30px;
  padding-top: 29px;
  margin-top: 38px;
  border-top: 1px solid #e5e9f0;
}

.company-kpi-card {
  position: relative;
  width: 100%;
  min-height: 145px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
}

.company-kpi-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 86px;
  border-radius: 0 0 16px 16px;
  background: #f8fbff;
  pointer-events: none;
}

.company-kpi-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px 0 0;
}

.company-kpi-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex: 0 0 60px;
  background: #f8fbff;
}

.company-kpi-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.company-kpis .is-orange {
  --kpi-tint: #ffe2d1;
}

.company-kpis .is-yellow {
  --kpi-tint: #fff8d8;
}

.company-kpis .is-green {
  --kpi-tint: #dcf5f0;
}

.company-kpis .is-mint {
  --kpi-tint: #e4eeeb;
}

.company-kpis .is-blue {
  --kpi-tint: #e8f3ff;
}

.company-kpis .is-purple {
  --kpi-tint: #f5dcff;
}

.company-kpis strong {
  display: block;
  margin-top: 6px;
  color: #2b2b2e;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.company-kpi-head small {
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.company-kpi-chart {
  position: relative;
  z-index: 1;
  width: calc(100% - 25px);
  max-width: 185px;
  height: 56px;
  margin: 0 auto 11px;
}

.company-sparkline {
  display: block;
  width: 100%;
  height: 56px;
  overflow: visible;
}

.company-sparkline-grid line {
  stroke: #d5e1ed;
  stroke-width: 1;
  opacity: .62;
}

.company-sparkline path {
  fill: none;
  stroke: var(--spark-color);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-sparkline-dots circle {
  fill: var(--spark-color);
  stroke: var(--spark-color);
  stroke-width: 0;
}

.company-section {
  margin-top: 80px;
}

.company-text-section {
  margin-top: 56px;
}

.company-section h2,
.company-investor h2 {
  margin: 0;
  color: #333333;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .6px;
}

.company-section p,
.company-investor p,
.company-article p {
  margin: 20px 0 0;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.company-check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.company-check-list li {
  position: relative;
  padding-left: 24px;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.company-check-list li::before,
.company-status li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #333333;
}

.company-check-list li::after,
.company-status li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.company-two-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px;
}

.company-stages-section {
  margin-top: 127px;
}

.company-stage-line {
  height: 1px;
  margin-top: 45px;
  background: repeating-linear-gradient(to right, #ffce00 0 8px, transparent 8px 17px);
}

.company-stages {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 42px;
  margin-top: -10px;
}

.company-stages article {
  position: relative;
  padding-top: 36px;
}

.company-stages article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 6px solid #ffce00;
  border-radius: 50%;
  background: #ffffff;
}

.company-stages b {
  display: block;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.company-stages p {
  margin: 12px 0 0;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.company-stage-progress {
  width: 1410px;
  height: 5px;
  margin-top: 39px;
  background: #f4f4f4;
}

.company-stage-progress span {
  display: block;
  width: 440px;
  height: 5px;
  background: #ffce00;
}

.company-invest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 29px;
}

.company-invest-grid article {
  height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #e5e9f0;
  border-radius: 16px;
  padding: 0 16px;
}

.company-invest-grid strong,
.company-finance-grid strong {
  display: block;
  margin-top: 6px;
  color: #333333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.company-investment-volume {
  margin-top: 70px;
}

.company-investor {
  display: grid;
  grid-template-columns: 300px 690px;
  gap: 30px;
  align-items: center;
  margin-top: 100px;
}

.company-investor-logo {
  width: 300px;
  height: auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e9f0;
  border-radius: 16px;
  background: #ffffff;
}

.company-investor-logo.is-placeholder {
  border-color: #e5e9f0;
  background: #ffffff;
}

.company-investor-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company-investor-logo.is-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

.company-investor h3 {
  margin: 20px 0 0;
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.company-article {
  margin-top: 95px;
}

.company-status ul {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.company-status li {
  position: relative;
  padding-left: 40px;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.company-status li::before {
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.company-status li::after {
  left: 6px;
  top: 10px;
}

.company-columns {
  display: grid;
  grid-template-columns: 570px 690px;
  gap: 80px;
}

.company-columns .company-section,
.company-columns article {
  margin: 0;
}

.company-model-grid,
.company-advantages > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.company-model-grid h3 {
  margin: 0;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.company-advantages h3 {
  margin: 0;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.company-model-grid p {
  margin-top: 12px;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.company-advantages p {
  margin-top: 8px;
  color: #808080;
  font-size: 16px;
  line-height: 1.4;
}

.company-finance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 70px;
  margin-top: 30px;
}

.company-finance-note {
  margin-top: 25px !important;
}

.company-financial {
  margin-top: 202px;
}

.company-growth-rate {
  margin-top: 83px;
}

.company-revaluation {
  margin-top: 92px;
}

.company-plan {
  margin-top: 134px;
}

.company-team-section {
  margin-top: 131px;
}

.company-team {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 50px;
  margin-top: 40px;
  text-align: center;
}

.company-team img {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  object-fit: cover;
}

.company-team strong,
.company-team span {
  display: block;
}

.company-team strong {
  margin-top: 25px;
  color: #333333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.company-team span {
  margin-top: 4px;
  color: #808080;
  font-size: 14px;
  line-height: 1.4;
}

.company-docs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.company-docs article {
  text-align: center;
}

.company-docs img {
  width: 204px;
  height: 280px;
  object-fit: cover;
  border: 4px solid #f2b392;
}

.company-docs img.is-placeholder {
  border-color: #fedd2c;
}

.company-docs strong {
  display: block;
  width: 176px;
  margin: 25px auto 0;
  color: #333333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.company-certificates {
  margin-top: 149px;
}

.company-advantages {
  margin-top: 105px;
}

.company-advantages > div {
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

@media (max-width: 1499.98px) {
  .company-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .company-hero-left,
  .company-value-card {
    width: 100%;
  }

  .company-hero-head {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .company-location strong,
  .company-stage-progress {
    width: 100%;
  }

  .company-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .company-kpis {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-content: stretch;
    gap: 18px;
  }

  .company-kpi-card {
    min-height: 125px;
  }

  .company-kpi-card::before {
    height: 74px;
  }

  .company-kpi-head {
    gap: 8px;
    padding-right: 8px;
  }

  .company-kpi-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 12px;
  }

  .company-kpi-icon img {
    width: 28px;
    height: 28px;
  }

  .company-kpi-head small {
    font-size: 12px;
  }

  .company-kpis strong {
    font-size: 13px;
    margin-top: 4px;
  }

  .company-kpi-chart {
    height: 48px;
    margin-bottom: 8px;
  }

  .company-sparkline {
    height: 48px;
  }

  .company-stages,
  .company-docs {
    gap: 24px;
  }

  .company-docs img {
    width: 100%;
    height: auto;
    aspect-ratio: 204 / 280;
  }
}

@media (max-width: 1199.98px) {
  .company-kpis,
  .company-invest-grid,
  .company-finance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-round-use {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .company-stage-line {
    display: none;
  }

  .company-stage-progress {
    display: none;
  }

  .company-investor,
  .company-columns,
  .company-two-lists,
  .company-model-grid,
  .company-advantages > div {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .company-docs,
  .company-team {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-financial,
  .company-growth-rate,
  .company-revaluation,
  .company-plan,
  .company-team-section,
  .company-certificates,
  .company-advantages,
  .company-text-section,
  .company-stages-section,
  .company-investment-volume {
    margin-top: 70px;
  }
}

@media (max-width: 767.98px) {
  .company-hero-head {
    grid-template-columns: 1fr;
  }

  .company-logo-card,
  .company-investor-logo {
    width: 100%;
  }

  .company-title-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .company-lead {
    margin-top: 0;
  }

  .company-value-dates {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .company-value-line {
    width: 100%;
  }

  .company-value-tooltip {
    left: 50%;
    width: min(371px, calc(100vw - 32px));
  }

  .company-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 28px;
  }

  .company-facts article,
  .company-facts article:nth-child(1),
  .company-facts article:nth-child(2),
  .company-facts article:nth-child(3),
  .company-facts article:nth-child(4),
  .company-facts article:nth-child(5),
  .company-facts article:nth-child(6),
  .company-facts article:nth-child(7),
  .company-facts article:nth-child(8) {
    width: auto;
    min-width: 0;
    align-items: flex-start;
  }

  .company-facts article.company-round-request {
    width: auto;
    min-height: 126px;
    padding: 13px 14px;
  }

  .company-facts article > span {
    min-width: 0;
  }

  .company-facts strong {
    line-height: 1.15;
    white-space: normal;
  }

  .company-fact-wide {
    grid-column: 1 / -1;
    width: 100%;
  }

  .company-round-summary {
    margin-top: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .company-round-summary-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .company-round-summary-head p {
    gap: 6px;
    font-size: 14px;
  }

  .company-round-summary-head strong {
    font-size: 22px;
  }

  .company-round-until {
    white-space: normal;
  }

  .company-round-use {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 32px;
  }

  .company-round-use article {
    min-height: 90px;
    grid-template-columns: 26px minmax(0, 1fr);
    padding: 12px;
  }

  .company-round-use small {
    font-size: 12px;
  }

  .company-kpis,
  .company-invest-grid,
  .company-finance-grid,
  .company-stages,
  .company-docs,
  .company-team {
    grid-template-columns: 1fr;
  }

  .company-section h2,
  .company-investor h2 {
    font-size: 28px;
  }
}

/* Responsive stabilization pass */
@media (max-width: 1499.98px) {
  .hero-stats-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
  }

  .raise-project-grid {
    grid-template-columns: 1fr;
  }

  .raise-project-grid .growth-card {
    max-width: 690px;
  }

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

  .raise-process-card {
    width: auto;
  }
}

@media (max-width: 1199.98px) {
  html.menu-open body {
    overflow: hidden;
  }

  .menu-button.d-lg-none {
    display: inline-flex !important;
  }

  .site-header {
    position: relative;
    z-index: 200;
  }

  .site-header .brand,
  .menu-button {
    position: relative;
    z-index: 230;
  }

  .site-header .main-nav {
    position: fixed;
    inset: 0;
    z-index: 210;
    width: 100%;
    height: 100dvh;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start;
    gap: 0;
    padding: 112px 24px 40px;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform .28s ease, opacity .2s ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .main-nav a:not(.login-button) {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #e5e9f0;
    color: #333333;
    font-size: 18px;
    line-height: 1.2;
  }

  .site-header .main-nav .login-button {
    width: 100%;
    height: 48px;
    margin: 28px 0 0;
    font-size: 14px;
  }

  .menu-button span {
    transition: transform .22s ease, opacity .18s ease;
  }

  .site-header.is-menu-open .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .raise-project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  html.menu-open body {
    overflow: hidden;
  }

  .site-header {
    position: relative;
    z-index: 200;
  }

  .site-header .brand,
  .menu-button {
    position: relative;
    z-index: 230;
  }

  .site-header .main-nav {
    position: fixed;
    inset: 0;
    z-index: 210;
    width: 100%;
    height: 100dvh;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start;
    gap: 0;
    padding: 112px 24px 40px;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform .28s ease, opacity .2s ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .main-nav a:not(.login-button) {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #e5e9f0;
    color: #333333;
    font-size: 18px;
    line-height: 1.2;
  }

  .site-header .main-nav .login-button {
    width: 100%;
    height: 48px;
    margin: 28px 0 0;
    font-size: 14px;
  }

  .menu-button span {
    transition: transform .22s ease, opacity .18s ease;
  }

  .site-header.is-menu-open .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .verified-ribbon {
    top: 16px;
    left: 20px;
    right: auto;
  }

  .hero-stats-card {
    padding-top: 72px;
  }

  .summary-metrics {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch !important;
  }

  .view-summary .summary-metrics {
    display: none !important;
  }

  .summary-item,
  .summary-with-chart {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 86px;
  }

  .summary-item b,
  .summary-item small {
    white-space: normal;
  }

  .summary-item strong {
    margin-bottom: 10px;
  }

  .summary-with-chart {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
  }

  .summary-chart-img {
    order: 0;
    width: 76px;
    height: auto;
    margin-top: 0;
  }

  .company-table {
    overflow: visible;
    padding-bottom: 0;
  }

  .company-table .table-head,
  .company-table .table-line {
    display: none;
  }

  .table-row,
  .table-row:first-of-type {
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px 12px;
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid #e5e9f0;
    border-radius: 16px;
    background: #f9fafe;
  }

  .row-num {
    grid-column: 1;
    grid-row: 1;
    padding-top: 2px;
  }

  .row-company {
    grid-column: 2;
    min-width: 0;
    gap: 0;
  }

  .row-company img {
    display: none;
  }

  .row-company strong {
    font-size: 18px;
    line-height: 1.25;
  }

  .row-company .verified-badge {
    margin-top: 10px;
  }

  .table-row > b,
  .table-row > .growth-value {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid #e5e9f0;
    font-size: 15px;
    line-height: 1.3;
  }

  .table-row > b:nth-of-type(1)::before {
    content: "Выручка";
  }

  .table-row > b:nth-of-type(2)::before {
    content: "Доход";
  }

  .table-row > .growth-value::before {
    content: "Индекс роста";
  }

  .table-row > b::before,
  .table-row > .growth-value::before {
    color: #666666;
    font-size: 12px;
    font-weight: 400;
  }

  .table-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .about-lead {
    height: auto;
  }

  .about-metrics {
    margin-top: 32px;
  }

  .document-row,
  .document-row.is-open {
    min-height: 0;
    align-items: flex-start;
    gap: 16px;
  }

  .document-copy {
    width: auto;
    max-width: calc(100% - 56px);
  }

  .document-row.is-open .document-action {
    margin-top: 0;
  }

  .document-row.is-open .document-panel {
    max-height: 520px;
  }

  .raise-team-grid {
    width: 100%;
  }

  .raise-person {
    flex: 0 0 100%;
    min-width: 0;
  }

  .raise-person > div,
  .raise-person h3,
  .raise-person p {
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-stats-card {
    padding: 70px 18px 26px;
  }

  .verified-ribbon {
    top: 18px;
    left: 18px;
    width: auto;
    max-width: calc(100% - 36px);
    padding: 0 14px;
  }

  .summary-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .summary-item {
    min-height: 88px;
  }

  .summary-with-icon {
    gap: 10px;
  }

  .summary-with-icon .building-icon,
  .summary-with-icon .shield-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .summary-item strong {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .summary-item b {
    font-size: 13px;
    line-height: 1.25;
  }

  .summary-item small {
    font-size: 12px;
    line-height: 1.25;
  }

  .cards-grid {
    margin-top: 28px;
    row-gap: 22px;
  }

  .growth-card {
    max-width: none;
    border-radius: 16px;
  }

  .growth-card > img {
    height: 176px;
    aspect-ratio: auto;
    border-radius: 16px 16px 0 0;
  }

  .growth-card-body {
    margin: 16px;
  }

  .card-heading {
    height: auto;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }

  .card-heading strong {
    font-size: 18px;
    line-height: 1.2;
  }

  .card-heading small {
    line-height: 1.3;
  }

  .card-values {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .card-kpis {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .card-values span,
  .card-kpis span {
    width: auto;
    min-width: 0;
  }

  .card-bottom {
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
  }

  .mini-chart {
    width: min(176px, 48vw);
  }

  .growth-card .details-button {
    width: 120px;
    flex: 0 0 120px;
  }

  .about-layout {
    gap: 0;
  }

  .about-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .about-metric {
    min-height: 0;
    height: auto;
    padding: 18px 14px;
  }

  .about-metric img {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .about-metric strong {
    font-size: 26px;
    line-height: 1.2;
    white-space: normal;
  }

  .about-metric span {
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
  }

  .about-content {
    margin-top: 24px;
  }

  .about-content .about-intro {
    font-size: 16px;
  }

  .about-content h2,
  .about-founder-block,
  .about-formula-card {
    margin-top: 34px;
  }

  .about-founder-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 16px;
  }

  .about-founder-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    order: -1;
    border-radius: 16px;
  }

  .about-formula-card {
    border-radius: 16px;
    padding: 24px 18px 26px;
  }

  .about-formula {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 0 14px;
    font-size: 18px;
    text-align: center;
  }

  .about-definition-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .invest-stats,
  .raise-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .earning-cards {
    grid-template-columns: 1fr;
  }

  .step-cards,
  .raise-process-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .case-card img {
    width: 100%;
  }

  .raise-person {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
  }

  .raise-person img {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 374.98px) {
  .summary-metrics,
  .about-metrics,
  .invest-stats,
  .raise-stats {
    grid-template-columns: 1fr;
  }

  .card-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .mini-chart,
  .growth-card .details-button {
    width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .site-header .main-nav {
    width: 100vw;
    max-width: 100vw;
  }
}

/* Compact vertical rhythm pass */
.companies-section,
.list-section,
.score-section {
  padding-top: 70px;
}

.media-section {
  padding-top: 56px;
}

.filters-row,
.list-summary,
.score-cards,
.notice-box,
.media-viewport,
.blog-grid,
.post-hero-img,
.post-body,
.post-related-grid,
.step-cards,
.case-grid,
.invest-blog-section .blog-grid,
.raise-stats,
.raise-project-grid,
.raise-team-viewport,
.raise-faq .documents-list {
  margin-top: 30px;
}

.media-arrows,
.blog-more,
.center-action,
.raise-team-arrows {
  margin-top: 28px;
}

.site-footer,
body[data-view="list"] .site-footer {
  margin-top: 56px;
}

.inner-page-title {
  margin-top: 28px;
}

.about-layout {
  margin-top: 22px;
}

.about-wide-text {
  margin-top: 40px;
}

.documents-list {
  margin-top: 30px;
}

.document-row,
.document-row:not(:first-child),
.document-row.is-open {
  margin-bottom: 42px;
}

.document-row::after,
.document-row.is-open::after {
  bottom: -21px;
}

.post-related-title {
  margin-top: 56px;
}

.earnings-section,
.invest-steps-section,
.invest-cases-section,
.invest-blog-section {
  margin-top: 68px;
}

.earning-cards,
.invest-slider {
  margin-top: 32px;
}

.raise-expert {
  margin-top: 76px;
}

.raise-business,
.raise-process,
.raise-team,
.raise-faq {
  margin-top: 56px;
}

.raise-process-grid {
  margin-top: 46px;
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 42px;
}

.faq-item:not(:last-child)::after {
  bottom: -21px;
}

.company-kpis {
  margin-top: 28px;
  padding-top: 24px;
}

.company-section,
.company-text-section,
.company-stages-section,
.company-investment-volume,
.company-investor,
.company-article,
.company-financial,
.company-growth-rate,
.company-revaluation,
.company-plan,
.company-team-section,
.company-certificates,
.company-advantages {
  margin-top: 56px;
}

.company-stage-line,
.company-invest-grid,
.company-model-grid,
.company-advantages > div,
.company-finance-grid,
.company-team,
.company-docs {
  margin-top: 28px;
}

@media (max-width: 1199.98px) {
  .companies-section,
  .list-section,
  .score-section {
    padding-top: 56px;
  }

  .media-section {
    padding-top: 44px;
  }

  .company-section,
  .company-text-section,
  .company-stages-section,
  .company-investment-volume,
  .company-investor,
  .company-article,
  .company-financial,
  .company-growth-rate,
  .company-revaluation,
  .company-plan,
  .company-team-section,
  .company-certificates,
  .company-advantages {
    margin-top: 48px;
  }
}

@media (max-width: 575.98px) {
  .companies-section,
  .list-section,
  .score-section {
    padding-top: 42px;
  }

  .media-section {
    padding-top: 36px;
  }

  .filters-row,
  .list-summary,
  .score-cards,
  .notice-box,
  .media-viewport,
  .blog-grid,
  .post-hero-img,
  .post-body,
  .post-related-grid,
  .step-cards,
  .case-grid,
  .invest-blog-section .blog-grid,
  .raise-stats,
  .raise-project-grid,
  .raise-team-viewport,
  .raise-faq .documents-list {
    margin-top: 24px;
  }

  .inner-page-title {
    margin-top: 22px;
  }

  .earnings-section,
  .invest-steps-section,
  .invest-cases-section,
  .invest-blog-section,
  .raise-expert,
  .raise-business,
  .raise-process,
  .raise-team,
  .raise-faq {
    margin-top: 42px;
  }

  .company-section,
  .company-text-section,
  .company-stages-section,
  .company-investment-volume,
  .company-investor,
  .company-article,
  .company-financial,
  .company-growth-rate,
  .company-revaluation,
  .company-plan,
  .company-team-section,
  .company-certificates,
  .company-advantages {
    margin-top: 40px;
  }
}

/* Raise page: updated investor attraction content and mobile stabilization */
.raise-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: space-between;
}

.raise-stats::before {
  width: 100%;
  background-size: 100% 1px;
}

.raise-stat {
  min-width: 0;
}

.raise-invest-text {
  width: 100%;
  margin-top: 58px;
  color: #555555;
}

.raise-invest-text h2 {
  margin: 0 0 24px;
  color: #333333;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
}

.raise-invest-text h3 {
  margin: 42px 0 16px;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.raise-invest-text p {
  margin: 0 0 17px;
  color: #555555;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
}

.raise-invest-text .raise-invest-lead {
  margin-bottom: 20px;
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.invest-growth-section {
  width: 100%;
  margin-top: 72px;
  color: #555555;
}

.invest-growth-section h2 {
  max-width: 980px;
  margin: 0 auto 24px;
  color: #333333;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.invest-growth-section p {
  margin: 0 0 17px;
  color: #555555;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
}

.invest-growth-section .invest-growth-lead {
  margin-bottom: 20px;
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.invest-growth-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.invest-growth-action .yellow-button {
  width: auto;
  min-width: 252px;
  height: 43px;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 13px;
}

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

  .invest-growth-section {
    margin-top: 52px;
  }

  .raise-invest-text {
    width: 100%;
    margin-top: 46px;
  }

  .raise-process {
    height: auto;
    min-height: 0;
    text-align: left;
  }

  .raise-process h2,
  .raise-process > p,
  .raise-process-grid {
    transform: none;
  }

  .raise-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
  }

  .raise-process-grid::before {
    display: none;
  }

  .raise-process-card {
    min-height: 0;
    border: 1px solid #e5e9f0;
    border-radius: 16px;
    background: #f9fafe;
    padding: 20px;
    text-align: left;
  }

  .raise-process-card b {
    color: #ffce00;
    -webkit-text-fill-color: #ffce00;
    -webkit-text-stroke: 0;
    text-stroke: 0;
    font-size: 40px;
    letter-spacing: 0;
  }

  .raise-process-card h3 {
    width: auto;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.35;
  }
}

@media (max-width: 575.98px) {
  .raise-stats,
  .raise-process-grid {
    grid-template-columns: 1fr;
  }

  .invest-growth-section {
    margin-top: 42px;
  }

  .invest-growth-section h2 {
    font-size: 28px;
  }

  .invest-growth-section p {
    font-size: 15px;
    line-height: 1.6;
  }

  .invest-growth-section .invest-growth-lead {
    font-size: 17px;
  }

.invest-growth-action .yellow-button {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .raise-invest-text {
    margin-top: 38px;
  }

  .raise-invest-text h2 {
    font-size: 28px;
  }

  .raise-invest-text h3 {
    margin-top: 34px;
    font-size: 21px;
  }

  .raise-invest-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .raise-invest-text .raise-invest-lead {
    font-size: 17px;
  }
}

/* Footer: socials are hidden until launch, newsletter form stays on the right. */
.site-footer .socials {
  display: none !important;
}

.site-footer .subscribe-form {
  margin-left: auto;
}

@media (max-width: 991.98px) {
  .site-footer .subscribe-form {
    margin-left: 0;
  }
}

/* Score section: Terminal Value card */
.score-card.score-terminal-card {
  width: 100%;
  height: auto;
  min-height: 176px;
  gap: 34px;
  padding: 28px 42px 28px 32px;
  border-radius: 16px;
  background: var(--yellow);
}

.score-terminal-icon {
  display: inline-flex;
  width: 128px;
  height: 128px;
  flex: 0 0 128px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 247, 175, .65);
  color: #333333;
}

.score-terminal-icon svg {
  width: 88px;
  height: 88px;
  display: block;
}

.score-terminal-copy {
  display: block;
  min-width: 0;
}

.score-terminal-card .score-terminal-copy strong {
  color: #111111;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.18;
}

.score-terminal-formula {
  display: block;
  margin-top: 12px;
  color: #111111;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.score-terminal-formula sub {
  font-size: .58em;
  line-height: 0;
}

.score-terminal-card .score-terminal-copy small {
  max-width: 860px;
  margin-top: 10px;
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  .score-card.score-terminal-card {
    gap: 24px;
    min-height: 0;
    padding: 26px;
  }

  .score-terminal-icon {
    width: 104px;
    height: 104px;
    flex-basis: 104px;
  }

  .score-terminal-icon svg {
    width: 72px;
    height: 72px;
  }

  .score-terminal-card .score-terminal-copy strong {
    font-size: 28px;
  }

  .score-terminal-formula {
    font-size: 21px;
  }

  .score-terminal-card .score-terminal-copy small {
    font-size: 17px;
  }
}

@media (max-width: 575.98px) {
  .score-card.score-terminal-card {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: 14px;
  }

  .score-terminal-icon {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .score-terminal-icon svg {
    width: 66px;
    height: 66px;
  }

  .score-terminal-card .score-terminal-copy strong {
    font-size: 24px;
  }

  .score-terminal-formula {
    font-size: 18px;
  }

  .score-terminal-card .score-terminal-copy small {
    font-size: 15px;
    line-height: 1.45;
  }
}

/* Company catalog pagination */
.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 29px auto 0;
}

.catalog-pagination[hidden] {
  display: none !important;
}

[data-company-results].is-catalog-loading {
  opacity: .55;
  pointer-events: none;
  transition: opacity .18s ease;
}

.catalog-page-button,
.catalog-page-ellipsis {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.catalog-page-button {
  border: 1px solid rgba(255, 206, 0, .5);
  background: #ffffff;
  cursor: pointer;
}

.catalog-page-button.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
}

.catalog-page-button:disabled {
  cursor: default;
}

.catalog-page-button:disabled:not(.is-active) {
  opacity: .45;
}

.catalog-page-button.is-arrow {
  font-size: 22px;
  font-weight: 500;
}

.catalog-page-ellipsis {
  color: var(--muted);
}

@media (max-width: 575.98px) {
  .catalog-pagination {
    gap: 8px;
    margin-top: 24px;
  }

  .catalog-page-button,
  .catalog-page-ellipsis {
    width: 38px;
    height: 38px;
  }
}

/* Company cards: longer valuation labels */
.growth-card {
  height: 275px;
}

.growth-card > img {
  height: 275px;
}

.growth-card-body {
  height: 230px;
}

.card-values {
  height: 58px;
  align-items: flex-start;
}

.card-values small {
  line-height: 1.2;
}

.card-values b {
  margin-top: 6px;
  line-height: 1.15;
}

@media (max-width: 991.98px) {
  .growth-card,
  .growth-card > img,
  .growth-card-body,
  .card-values {
    height: auto;
  }
}

/* Score section: four equal cards on desktop */
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .score-section .container-figma {
    width: min(1410px, calc(100vw - 48px));
  }
}

.score-cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.score-card,
.score-card.score-terminal-card {
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 150px;
  gap: 15px;
  align-items: center !important;
  padding: 24px 18px;
  border-radius: 8px;
  background: var(--yellow);
}

.score-card > span:last-child,
.score-terminal-copy {
  min-width: 0;
}

.score-terminal-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 8px;
  background: #ffd938;
  color: #333333;
}

.score-terminal-icon svg {
  width: 44px;
  height: 44px;
}

.score-terminal-card .score-terminal-copy strong {
  color: var(--black);
  font-size: 18px;
  line-height: 1.2;
}

.score-terminal-formula {
  margin-top: 5px;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.score-terminal-card .score-terminal-copy small {
  max-width: none;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

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

@media (max-width: 575.98px) {
  .score-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .score-card,
  .score-card.score-terminal-card {
    min-height: 0;
  }
}

/* Company cards: desktop alignment pass */
@media (min-width: 1200px) {
  .growth-card {
    align-items: stretch;
    height: 350px;
  }

  .growth-card > img.company-logo-image {
    box-sizing: border-box;
    height: 350px;
    object-fit: contain;
    background: #ffffff;
    padding: 34px;
  }

  .growth-card-body {
    display: grid;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: auto;
    margin: 14px 30px 12px 18px;
    grid-template-rows: auto auto auto 1fr;
    align-content: start;
  }

  .card-heading,
  .card-values,
  .card-kpis,
  .card-bottom {
    width: 100%;
    height: auto;
  }

  .card-heading {
    display: grid !important;
    min-height: 82px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 10px;
    align-items: start !important;
  }

  .card-heading > span:first-child {
    display: contents;
  }

  .card-heading strong {
    grid-column: 1;
    grid-row: 1;
    font-size: 22px;
    line-height: 1.1;
  }

  .card-heading small {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
    margin-top: 0;
    font-size: 12px;
    line-height: 1.18;
  }

  .card-heading .verified-badge {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    flex: 0 0 auto;
    margin-top: 2px;
  }

  .card-values {
    display: grid !important;
    margin-top: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .card-values span,
  .card-kpis span {
    width: auto;
    min-width: 0;
  }

  .card-values small {
    min-height: 34px;
    font-size: 13px;
    line-height: 1.25;
  }

  .card-values b {
    margin-top: 8px;
    font-size: 21px;
    line-height: 1.1;
  }

  .card-kpis {
    display: grid !important;
    margin-top: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .card-kpis small {
    min-height: 18px;
    font-size: 13px;
    line-height: 1.2;
  }

  .card-kpis b {
    margin-top: 8px;
    font-size: 19px;
    line-height: 1.08;
  }

  .card-bottom {
    align-self: end;
    align-items: flex-end !important;
    gap: 24px;
    margin-top: 16px;
  }

  .mini-chart {
    width: min(360px, calc(100% - 174px));
    min-width: 220px;
  }

  .growth-card .details-button {
    width: 150px;
    flex: 0 0 150px;
  }
}

@media (min-width: 1200px) and (max-width: 1499.98px) {
  .growth-card > img.company-logo-image {
    width: 48%;
    flex-basis: 48%;
  }

  .growth-card-body {
    margin-left: 30px;
  }
}

@media (min-width: 1500px) {
  .card-kpis {
    gap: 14px;
  }

  .card-kpis b {
    font-size: 16px;
  }

  .growth-card .details-button {
    width: 130px;
    flex-basis: 130px;
  }

  .mini-chart {
    width: min(188px, calc(100% - 146px));
    min-width: 168px;
  }
}

/* Company cards: all metrics in a unified two-column desktop grid */
@media (min-width: 1200px) {
  .growth-card {
    height: 420px;
  }

  .growth-card > img.company-logo-image {
    height: 420px;
  }

  .growth-card-body {
    display: grid;
    margin: 16px 30px 16px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    column-gap: 30px;
    row-gap: 10px;
    align-content: start;
  }

  .card-heading {
    grid-column: 1 / -1;
    min-height: 78px;
    margin-bottom: 2px;
  }

  .card-values,
  .card-kpis {
    display: contents !important;
    width: auto;
    height: auto;
    margin-top: 0;
    gap: 0;
  }

  .card-values span,
  .card-kpis span {
    display: flex;
    width: auto;
    min-width: 0;
    min-height: 68px;
    flex-direction: column;
  }

  .card-values small,
  .card-kpis small {
    min-height: 36px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
  }

  .card-values b,
  .card-kpis b {
    margin-top: 8px;
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.12;
  }

  .card-bottom {
    grid-column: 1 / -1;
    align-self: end;
    margin-top: 4px;
  }
}

@media (min-width: 1500px) {
  .growth-card > img.company-logo-image {
    width: 300px;
    flex-basis: 300px;
  }

  .growth-card-body {
    margin: 16px 24px 16px 22px;
    column-gap: 24px;
    row-gap: 10px;
  }

  .card-values small,
  .card-kpis small {
    min-height: 34px;
    font-size: 12px;
  }

  .card-values b,
  .card-kpis b {
    font-size: 18px;
  }
}

/* Company cards: mobile logo fit and bottom-row safety */
@media (max-width: 575.98px) {
  .growth-card > img.company-logo-image:not(.is-placeholder) {
    width: 100%;
    height: 176px;
    flex-basis: auto;
    object-fit: contain !important;
    object-position: center;
    padding: 22px;
  }

  .row-company img.company-logo-image:not(.is-placeholder) {
    object-fit: contain !important;
    object-position: center;
    padding: 10px;
  }

  .growth-card .card-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px;
  }

  .growth-card .mini-chart,
  .growth-card .details-button {
    width: 100%;
    min-width: 0;
  }

  .growth-card .details-button {
    flex: 0 0 auto;
  }
}

/* Startup graveyard */
.graveyard-main,
.graveyard-case-main {
  padding-bottom: 56px;
}

.graveyard-hero {
  max-width: 860px;
}

.graveyard-hero .inner-page-title,
.graveyard-case-hero .inner-page-title {
  margin-bottom: 14px;
}

.graveyard-hero .inner-page-title {
  font-size: 36px;
  line-height: 1.24;
}

.graveyard-hero p,
.graveyard-case-hero p {
  margin: 0;
  color: #4c4c4c;
  font-size: 18px;
  line-height: 1.55;
}

.graveyard-hero blockquote,
.graveyard-section blockquote,
.graveyard-otherwise blockquote {
  margin: 22px 0 0;
  border-left: 3px solid #ffce00;
  padding: 4px 0 4px 18px;
  color: #2b2b2e;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.graveyard-section blockquote,
.graveyard-otherwise blockquote {
  margin-top: 20px;
  padding-left: 16px;
  font-size: 18px;
}

.graveyard-notice {
  margin-top: 24px;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.graveyard-notice.is-success {
  border: 1px solid #bfe9dc;
  background: #f0faf6;
  color: #0f7f68;
}

.graveyard-notice.is-error {
  border: 1px solid #ffd0d0;
  background: #fff5f5;
  color: #a03a3a;
}

.graveyard-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.graveyard-summary article,
.graveyard-card,
.graveyard-case-facts,
.graveyard-numbers article,
.graveyard-section,
.graveyard-residual {
  border: 1px solid #edf0f5;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(35, 38, 47, .06);
}

.graveyard-summary article {
  min-height: 132px;
  padding: 26px;
}

.graveyard-summary strong {
  display: block;
  color: #ffce00;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.graveyard-summary span {
  display: block;
  margin-top: 12px;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.graveyard-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.graveyard-filters button {
  min-height: 42px;
  border: 1px solid #e5e9f0;
  border-radius: 999px;
  padding: 0 18px;
  background: #ffffff;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.graveyard-filters button.is-active {
  border-color: #ffce00;
  background: #ffce00;
  color: #2b2b2e;
}

.graveyard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.graveyard-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 28px;
}

.graveyard-add-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff9da 100%);
}

.graveyard-add-card-button {
  display: flex;
  width: 100%;
  flex: 1 1 auto;
  height: 100%;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  border-radius: inherit;
  padding: 28px;
  background: transparent;
  color: #2b2b2e;
  text-align: left;
  cursor: pointer;
}

.graveyard-add-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #ffce00;
  box-shadow: 0 12px 28px rgba(255, 206, 0, .28);
}

.graveyard-add-icon::before,
.graveyard-add-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #2b2b2e;
  transform: translate(-50%, -50%);
}

.graveyard-add-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.graveyard-add-title {
  margin-top: 28px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.graveyard-add-text {
  margin-top: 12px;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 1.45;
}

.graveyard-add-action {
  display: inline-flex;
  min-width: 196px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 12px;
  background: #ffce00;
  color: #2b2b2e;
  font-size: 16px;
  font-weight: 800;
}

.graveyard-card[hidden],
.graveyard-empty[hidden] {
  display: none !important;
}

.graveyard-card-head,
.graveyard-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.graveyard-card-head span,
.graveyard-card-head b,
.graveyard-badges span,
.graveyard-reasons span {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.graveyard-card-head span,
.graveyard-badges span {
  background: #f2f4f8;
  color: #555555;
}

.graveyard-card-head b {
  background: #fff4c4;
  color: #2b2b2e;
}

.graveyard-card h2 {
  margin: 22px 0 10px;
  color: #2b2b2e;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.graveyard-card p {
  margin: 0;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 1.45;
}

.graveyard-card dl,
.graveyard-case-facts,
.graveyard-numbers,
.graveyard-two-columns {
  display: grid;
  gap: 16px;
}

.graveyard-card dl {
  margin: 24px 0 0;
}

.graveyard-card dl div {
  display: grid;
  gap: 4px;
}

.graveyard-card dt,
.graveyard-case-facts dt,
.graveyard-numbers span {
  color: #777777;
  font-size: 13px;
  font-weight: 500;
}

.graveyard-card dd,
.graveyard-case-facts dd,
.graveyard-numbers strong {
  margin: 0;
  color: #2b2b2e;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.graveyard-card-assets {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  color: #4c4c4c;
  font-size: 14px;
  line-height: 1.4;
}

.graveyard-card-assets strong {
  color: #2b2b2e;
  font-size: 15px;
  font-weight: 700;
}

.graveyard-card .graveyard-badges {
  margin-top: 22px;
}

.graveyard-case-link {
  width: 210px;
  height: 56px;
  margin-top: auto;
}

.graveyard-empty {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 16px;
  padding: 28px;
  background: #f9fafe;
  color: #4c4c4c;
  font-size: 16px;
}

.graveyard-submit-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.graveyard-submit-modal[hidden] {
  display: none;
}

.graveyard-submit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 34, .48);
}

.graveyard-submit-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(860px, calc(100dvh - 48px));
  overflow: auto;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(34, 46, 73, .22);
  padding: 38px;
}

.graveyard-submit-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f2f3f5;
}

.graveyard-submit-close::before,
.graveyard-submit-close::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  width: 14px;
  height: 2px;
  background: #333333;
}

.graveyard-submit-close::before {
  transform: rotate(45deg);
}

.graveyard-submit-close::after {
  transform: rotate(-45deg);
}

.graveyard-submit-dialog h2 {
  margin: 0 48px 10px 0;
  color: #2b2b2e;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.graveyard-submit-dialog > p {
  max-width: 700px;
  margin: 0 0 24px;
  color: #4c4c4c;
  font-size: 15px;
  line-height: 1.5;
}

.graveyard-submit-form {
  display: grid;
  gap: 18px;
}

.graveyard-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.graveyard-submit-form label {
  display: grid;
  gap: 7px;
  color: #333333;
  font-size: 13px;
  font-weight: 700;
}

.graveyard-form-grid .is-wide {
  grid-column: 1 / -1;
}

.graveyard-submit-form input[type="text"],
.graveyard-submit-form input[type="tel"],
.graveyard-submit-form input[type="email"],
.graveyard-submit-form select,
.graveyard-submit-form textarea {
  width: 100%;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
}

.graveyard-submit-form input[type="text"],
.graveyard-submit-form input[type="tel"],
.graveyard-submit-form input[type="email"],
.graveyard-submit-form select {
  height: 46px;
  padding: 0 14px;
}

.graveyard-submit-form textarea {
  min-height: 96px;
  resize: vertical;
  padding: 12px 14px;
}

.graveyard-submit-form input:focus,
.graveyard-submit-form select:focus,
.graveyard-submit-form textarea:focus {
  border-color: rgba(51, 51, 51, .45);
}

.graveyard-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.graveyard-consent {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  color: #666666 !important;
  font-weight: 500 !important;
  line-height: 1.4;
}

.graveyard-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #ffce00;
}

.graveyard-consent a {
  color: #333333;
  text-decoration: underline;
}

.graveyard-submit-form .yellow-button {
  width: min(280px, 100%);
  height: 50px;
  border: 0;
}

.graveyard-case-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 28px;
  align-items: start;
}

.graveyard-case-hero .inner-page-title {
  font-size: 34px;
  line-height: 1.22;
}

.graveyard-case-hero p {
  font-size: 16px;
  line-height: 1.55;
}

.graveyard-case-hero .graveyard-badges {
  margin-top: 20px;
}

.graveyard-case-facts {
  grid-template-columns: 1fr;
  padding: 24px;
}

.graveyard-case-facts div,
.graveyard-numbers article {
  display: grid;
  gap: 6px;
}

.graveyard-numbers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.graveyard-numbers article {
  min-height: 104px;
  padding: 20px;
}

.graveyard-case-facts dt,
.graveyard-numbers span {
  font-size: 12px;
}

.graveyard-case-facts dd {
  font-size: 17px;
  font-weight: 700;
}

.graveyard-numbers strong {
  font-size: 22px;
}

.graveyard-section {
  margin-top: 28px;
  padding: 28px;
}

.graveyard-section h2 {
  margin: 0 0 18px;
  color: #2b2b2e;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.graveyard-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.graveyard-reasons span {
  background: #f3f8f7;
  color: #0f9d82;
  font-size: 11px;
}

.graveyard-section ul,
.graveyard-section ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #333333;
  font-size: 16px;
  line-height: 1.45;
}

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

.graveyard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.graveyard-actions .yellow-button,
.graveyard-actions .outline-yellow-button {
  width: auto;
  min-width: 220px;
  height: 50px;
  padding: 0 22px;
}

.graveyard-residual {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
}

.graveyard-residual h2 {
  grid-column: 1 / -1;
  margin: 0;
  color: #2b2b2e;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.graveyard-residual div {
  display: grid;
  gap: 8px;
}

.graveyard-residual span,
.graveyard-residual small {
  color: #777777;
  font-size: 13px;
  line-height: 1.45;
}

.graveyard-residual strong {
  color: #2b2b2e;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.graveyard-residual p {
  margin: 0;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
}

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

  .graveyard-case-hero,
  .graveyard-residual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .graveyard-main,
  .graveyard-case-main {
    padding-bottom: 32px;
  }

  .graveyard-hero p,
  .graveyard-case-hero p {
    font-size: 17px;
  }

  .graveyard-hero .inner-page-title,
  .graveyard-case-hero .inner-page-title {
    font-size: 30px;
  }

  .graveyard-case-hero p {
    font-size: 15px;
  }

  .graveyard-hero blockquote,
  .graveyard-section blockquote,
  .graveyard-otherwise blockquote {
    font-size: 18px;
  }

  .graveyard-summary,
  .graveyard-grid,
  .graveyard-numbers,
  .graveyard-two-columns {
    grid-template-columns: 1fr;
  }

  .graveyard-summary article,
  .graveyard-card,
  .graveyard-section,
  .graveyard-residual,
  .graveyard-case-facts,
  .graveyard-numbers article {
    border-radius: 18px;
    padding: 22px;
  }

  .graveyard-case-facts,
  .graveyard-numbers article,
  .graveyard-section,
  .graveyard-residual {
    padding: 18px;
  }

  .graveyard-card {
    min-height: 0;
  }

  .graveyard-add-card-button {
    min-height: 340px;
    padding: 22px;
  }

  .graveyard-add-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .graveyard-add-title {
    margin-top: 24px;
    font-size: 26px;
  }

  .graveyard-add-action {
    width: 100%;
  }

  .graveyard-summary strong {
    font-size: 30px;
  }

  .graveyard-card h2,
  .graveyard-section h2,
  .graveyard-residual h2 {
    font-size: 22px;
  }

  .graveyard-filters {
    gap: 8px;
  }

  .graveyard-filters button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .graveyard-numbers strong,
  .graveyard-residual strong {
    font-size: 22px;
  }

  .graveyard-section ul,
  .graveyard-section ol {
    font-size: 15px;
  }

  .graveyard-section blockquote,
  .graveyard-otherwise blockquote {
    font-size: 16px;
  }

  .graveyard-actions,
  .graveyard-actions .yellow-button,
  .graveyard-actions .outline-yellow-button,
  .graveyard-case-link {
    width: 100%;
  }

  .graveyard-submit-modal {
    padding: 12px;
  }

  .graveyard-submit-dialog {
    max-height: calc(100dvh - 24px);
    border-radius: 18px;
    padding: 30px 18px 20px;
  }

  .graveyard-submit-dialog h2 {
    margin-right: 42px;
    font-size: 25px;
  }

  .graveyard-form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .graveyard-submit-form .yellow-button {
    width: 100%;
  }
}

/* Widget builder page and embeddable widgets */
body.widget-builder-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.widget-builder-page .widget-page-main {
  flex: 1 0 auto;
}

body.widget-builder-page .site-footer {
  margin-top: auto;
}

.widget-builder-hero {
  margin-top: 28px;
}

.widget-builder-hero .inner-page-title {
  margin-top: 0;
}

.widget-search-form {
  max-width: 720px;
  margin-top: 34px;
}

.widget-search-form label {
  display: block;
  margin-bottom: 10px;
  color: #4c4c4c;
  font-size: 16px;
  font-weight: 500;
}

.widget-search-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
}

.widget-search-form input {
  width: 100%;
  height: 58px;
  border: 1px solid #e5e9f0;
  border-radius: 16px;
  padding: 0 22px;
  background: #ffffff;
  color: #2b2b2e;
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.widget-search-form input:focus {
  border-color: #ffce00;
  box-shadow: 0 0 0 4px rgba(255, 206, 0, .18);
}

.widget-search-form .yellow-button {
  width: 100%;
  height: 58px;
}

.widget-search-message {
  margin: 14px 0 0;
  color: #d14b00;
  font-size: 15px;
}

.widget-results {
  margin-top: 58px;
}

.widget-results[hidden],
.widget-code-modal[hidden] {
  display: none !important;
}

.widget-results-head {
  margin-bottom: 28px;
}

.widget-results-head h2 {
  margin: 0;
  color: #2b2b2e;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
}

.widget-results-head p {
  margin: 10px 0 0;
  color: #808080;
  font-size: 16px;
  line-height: 1.5;
}

.widget-preview-layout {
  display: grid;
  grid-template-columns: 894px 360px;
  gap: 30px;
  align-items: start;
}

.widget-preview-stack,
.widget-option {
  display: grid;
  gap: 18px;
}

.widget-preview-stack {
  gap: 34px;
}

.widget-option {
  justify-items: start;
}

.widget-preview-frame {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(43, 43, 46, .08);
}

.widget-preview-frame.is-wide {
  width: 894px;
  height: 355px;
}

.widget-preview-frame.is-wide .ir-widget-wide {
  transform: scale(.63404);
  transform-origin: left top;
}

.widget-preview-frame.is-compact {
  width: 894px;
  height: 320px;
}

.widget-preview-frame.is-mobile {
  width: 360px;
  height: 890px;
}

.widget-install-button {
  min-width: 220px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  padding: 0 24px;
  background: #ffce00;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.widget-install-button:focus-visible {
  outline: 3px solid rgba(255, 206, 0, .35);
  outline-offset: 3px;
}

.ir-widget-embed-body {
  margin: 0;
  padding: 0;
  background: transparent;
}

.ir-widget-embed-body .ir-external-widget {
  margin: 0;
}

.ir-widget-embed-error {
  margin: 0;
  padding: 20px;
  color: #2b2b2e;
  font-family: Inter, Arial, sans-serif;
}

.ir-external-widget,
.ir-external-widget * {
  box-sizing: border-box;
}

.ir-external-widget {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  color: #2b2b2e;
  font-family: Inter, Arial, sans-serif;
}

.ir-widget-wide {
  width: 1410px;
  height: 560px;
}

.ir-widget-compact {
  width: 894px;
  height: 320px;
}

.ir-widget-mobile {
  width: 360px;
  height: 890px;
}

.ir-widget-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ir-widget-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.ir-widget-brand strong,
.ir-widget-brand small {
  display: block;
  white-space: nowrap;
}

.ir-widget-brand strong {
  color: #2b2b2e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

.ir-widget-brand small {
  margin-top: 6px;
  color: #4c4c4c;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .09px;
}

.ir-widget-media {
  overflow: hidden;
  border-radius: 20px;
  background: #f7f8fa;
}

.ir-widget-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.ir-widget-company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.ir-widget-company > small,
.ir-widget-company p,
.ir-widget-metrics small,
.ir-widget-forecast small {
  color: #4c4c4c;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.ir-widget-company strong {
  color: #2b2b2e;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.ir-widget-company p {
  margin: 2px 0 0;
}

.ir-widget-company b,
.ir-widget-metrics b {
  color: #2b2b2e;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.ir-widget-company b {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .4px;
}

.ir-widget-verified {
  height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  padding: 0 8px;
  background: rgba(15, 157, 130, .1);
  color: #0f9d82;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.ir-widget-verified img {
  width: 12px;
  height: 12px;
}

.ir-widget-metrics {
  display: grid;
}

.ir-widget-metrics span {
  display: grid;
  gap: 8px;
  align-content: start;
}

.ir-widget-chart {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.ir-widget-chart-grid line {
  stroke: #eef2f7;
  stroke-width: 1;
}

.ir-widget-chart-area {
  fill: url(#irWidgetChartFill);
}

.ir-widget-chart-line {
  fill: none;
  stroke: #ffce00;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ir-widget-chart-dots circle {
  fill: #ffffff;
  stroke: #ffce00;
  stroke-width: 3;
}

.ir-widget-forecast {
  border: 1px solid #efefef;
  border-radius: 32px;
  background: linear-gradient(145deg, #ffffff 0%, #f6f6f6 100%);
}

.ir-widget-forecast,
.ir-widget-forecast > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ir-widget-forecast > div {
  gap: 10px;
}

.ir-widget-forecast strong {
  color: #333333;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.ir-widget-forecast > span {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 12px;
  background: #0f9d82;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.ir-widget-forecast > span img {
  width: 24px;
  height: 24px;
}

.ir-widget-forecast > span b {
  font-weight: 600;
}

.ir-widget-forecast p {
  margin: 0;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.ir-widget-forecast a {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 0 20px;
  background: #ffce00;
  color: #333333;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .26px;
  text-decoration: none;
}

.ir-widget-forecast a img {
  width: 14px;
  height: 14px;
}

.ir-widget-wide .ir-widget-brand {
  position: absolute;
  left: 30px;
  top: 30px;
}

.ir-widget-wide .ir-widget-main {
  position: absolute;
  left: 30px;
  top: 120px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.ir-widget-wide .ir-widget-media {
  width: 315px;
  height: 160px;
}

.ir-widget-wide .ir-widget-company {
  min-width: 190px;
  gap: 8px;
}

.ir-widget-wide .ir-widget-company strong {
  font-size: 40px;
}

.ir-widget-wide .ir-widget-metrics {
  position: absolute;
  left: 30px;
  top: 320px;
  grid-template-columns: repeat(6, max-content);
  column-gap: 50px;
}

.ir-widget-wide .ir-widget-chart-wrap {
  position: absolute;
  left: 33px;
  top: 360px;
  width: 817px;
  height: 156px;
}

.ir-widget-wide .ir-widget-forecast {
  position: absolute;
  right: 30px;
  top: 29px;
  width: 400px;
  height: 502px;
  justify-content: space-between;
  padding: 43px 30px 24px;
}

.ir-widget-wide .ir-widget-forecast strong {
  font-size: 50px;
}

.ir-widget-wide .ir-widget-forecast p {
  width: 340px;
}

.ir-widget-wide .ir-widget-forecast a {
  width: 340px;
}

.ir-widget-compact .ir-widget-brand {
  position: absolute;
  left: 30px;
  top: 35px;
}

.ir-widget-compact .ir-widget-main {
  position: absolute;
  left: 30px;
  top: 125px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.ir-widget-compact .ir-widget-media {
  width: 315px;
  height: 160px;
}

.ir-widget-compact .ir-widget-company strong {
  font-size: 30px;
}

.ir-widget-compact .ir-widget-metrics {
  display: none;
}

.ir-widget-compact .ir-widget-forecast {
  position: absolute;
  right: 30px;
  top: 35px;
  width: 320px;
  height: 250px;
  justify-content: space-between;
  padding: 43px 30px 24px;
}

.ir-widget-compact .ir-widget-forecast strong,
.ir-widget-mobile .ir-widget-forecast strong {
  font-size: 30px;
  letter-spacing: .6px;
}

.ir-widget-compact .ir-widget-forecast a {
  width: 260px;
}

.ir-widget-mobile .ir-widget-brand {
  position: absolute;
  left: 60px;
  top: 30px;
  gap: 20px;
}

.ir-widget-mobile .ir-widget-main {
  position: absolute;
  left: 30px;
  top: 110px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ir-widget-mobile .ir-widget-media {
  width: 160px;
  height: 150px;
}

.ir-widget-mobile .ir-widget-company {
  width: 131px;
  gap: 8px;
}

.ir-widget-mobile .ir-widget-company strong {
  font-size: 30px;
}

.ir-widget-mobile .ir-widget-company b {
  font-size: 16px;
}

.ir-widget-mobile .ir-widget-metrics {
  position: absolute;
  left: 30px;
  top: 280px;
  grid-template-columns: repeat(2, 145px);
  gap: 20px 10px;
}

.ir-widget-mobile .ir-widget-chart-wrap {
  position: absolute;
  left: 30px;
  top: 458px;
  width: 301px;
  height: 56px;
}

.ir-widget-mobile .ir-widget-forecast {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 300px;
  min-height: 321px;
  gap: 20px;
  padding: 30px;
}

.ir-widget-mobile .ir-widget-forecast p {
  font-size: 12px;
}

.ir-widget-mobile .ir-widget-forecast a {
  width: 258px;
}

.widget-code-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.widget-code-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 34, .46);
}

.widget-code-dialog {
  position: relative;
  width: min(720px, 100%);
  border-radius: 24px;
  padding: 38px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.widget-code-dialog h2 {
  margin: 0;
  color: #2b2b2e;
  font-size: 30px;
  font-weight: 700;
}

.widget-code-dialog p {
  margin: 12px 0 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.5;
}

.widget-code-dialog textarea {
  width: 100%;
  height: 150px;
  margin-top: 22px;
  border: 1px solid #e5e9f0;
  border-radius: 16px;
  padding: 16px;
  resize: vertical;
  color: #2b2b2e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  line-height: 1.45;
}

.widget-code-dialog .yellow-button {
  width: 210px;
  height: 50px;
  margin-top: 18px;
}

.widget-copy-status {
  display: inline-flex;
  margin-left: 14px;
  color: #0f9d82;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1399.98px) {
  .widget-preview-layout {
    grid-template-columns: 1fr;
  }

  .widget-preview-frame.is-wide,
  .widget-preview-frame.is-compact {
    max-width: 100%;
    overflow: hidden;
  }

  .widget-option.is-mobile-widget {
    justify-items: start;
  }
}

@media (max-width: 991.98px) {
  .widget-search-form > div {
    grid-template-columns: 1fr;
  }

  .widget-preview-frame.is-wide,
  .widget-preview-frame.is-compact {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .widget-results {
    margin-top: 42px;
  }

  .widget-results-head h2 {
    font-size: 28px;
  }

  .widget-preview-frame.is-wide,
  .widget-preview-frame.is-compact,
  .widget-preview-frame.is-mobile {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .widget-preview-frame.is-wide {
    height: 355px;
  }

  .widget-preview-frame.is-compact {
    height: 320px;
  }

  .widget-preview-frame.is-mobile {
    width: min(360px, 100%);
    height: 890px;
  }

  .widget-code-dialog {
    padding: 30px 20px;
  }

  .widget-code-dialog h2 {
    font-size: 26px;
  }
}
