/* === Corporate base === */
:root {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--cb-bg);
  color: var(--cb-light-base);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

:is(.page, .products-page, .team-page, .legal-page) .container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

.main {
  padding-bottom: 72px;
  padding-top: 86px;
  flex: 1;
}

.hero-title,
.hero-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.hero-standard {
  padding: 84px 0 12px;
}

.explanatory-section {
  text-align: left;
}

.explanatory-block {
  border-left: 1px solid rgba(220, 225, 232, 0.08);
  padding-left: 18px;
}

.document-section {
  text-align: left;
}

.document-container {
  max-width: 760px;
  margin: 0 auto;
}

:is(.page, .products-page, .team-page) .section {
  padding: 36px 0;
}

:is(.page, .products-page, .team-page) .section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 28px;
}

:is(.page, .products-page, .team-page) .section-body {
  max-width: 760px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(220, 225, 232, 0.78);
}

:is(.page, .products-page) .panel-inner {
  color: rgba(220, 225, 232, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

:is(.page, .products-page) .bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

:is(.page, .products-page) .bullets li {
  position: relative;
  padding-left: 16px;
  margin: 8px 0;
  color: rgba(220, 225, 232, 0.8);
}

:is(.page, .products-page) .bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(220, 225, 232, 0.45);
}

@media (max-width: 640px) {
  :is(.page, .products-page, .team-page, .legal-page) .container {
    padding: 0 20px;
  }

  .hero-standard {
    padding-top: 56px;
  }
}
