@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

@font-face {
  font-family: "DMSans";
  src: url("/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "DMSans";
}

:root {
  --brand: #ff5a54;
  --ink: #0d0e12;
  --muted: #6a6f76;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --ring: rgba(255, 90, 84, .28);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(13, 14, 18, .08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(13, 14, 18, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: var(--shadow);
}

.bar {
  border-bottom: 1px solid rgba(13, 14, 18, 0.06);
}

.bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.bar-link {
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--bg-soft);
  font-weight: 600;
}

.lang {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(13, 14, 18, 0.08);
  background: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 44px;
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 6px;
  display: none;
  min-width: 120px;
}

.lang-menu.open {
  display: block;
}

.lang-item {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.lang-item:hover {
  background: var(--bg-soft);
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.logo {
  display: inline-grid;
  place-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9e7a, var(--brand));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px var(--ring);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.nav-link {
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--ink);
  background: var(--bg-soft);
}

.btn {
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(255, 90, 84, 0.25);
}

.btn:hover {
  box-shadow: 0 10px 26px rgba(255, 90, 84, 0.33);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(13, 14, 18, 0.1);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
}

.burger-line {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
  position: relative;
  transition: transform 0.2s, opacity 0.2s;
}

.burger-line:nth-child(2) {
  margin: 5px 0;
}

.burger.open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 18, 0.3);
  backdrop-filter: blur(2px);
  display: none;
}

.drawer.open {
  display: block;
}

.drawer-nav {
  position: absolute;
  right: 0;
  top: 0;
  width: min(90vw, 420px);
  height: 100%;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: -12px 0 32px rgba(13, 14, 18, 0.14);
  animation: slideIn 0.2s ease both;
}

@keyframes slideIn {
  from {
    transform: translateX(14px);
    opacity: 0.001;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.drawer-link {
  padding: 14px;
  border-radius: 12px;
  background: var(--bg-soft);
  font-weight: 800;
}

.drawer-cta {
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand), #ffb36f);
  color: #fff;
  text-align: center;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .nav {
    gap: 10px;
  }
  .nav .btn {
    display: none;
  }
}
@media (max-width: 920px) {
  .shell {
    grid-template-columns: auto 1fr auto;
  }
  .nav {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
}
@media (max-width: 420px) {
  .bar-inner {
    padding: 8px 14px;
  }
  .shell {
    padding: 12px 14px;
  }
  .logo {
    font-size: 14px;
  }
}
:root {
  --brand: #ff5a54;
  --brand-2: #ffb36f;
  --ink: #0d0e12;
  --muted: #6a6f76;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --radius: 18px;
  --shadow: 0 14px 36px rgba(13, 14, 18, .10);
}

* {
  box-sizing: border-box;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(80% 60% at 20% 10%, rgba(255, 179, 111, 0.25) 0%, rgba(255, 179, 111, 0) 60%), radial-gradient(70% 60% at 85% 15%, rgba(255, 90, 84, 0.16) 0%, rgba(255, 90, 84, 0) 58%), linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.title {
  margin: 14px 0 8px 0;
  line-height: 1.02;
}

.title-top {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.title-grad {
  display: block;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.02;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.subtitle {
  margin: 12px 0 24px 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 52ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(255, 90, 84, 0.28);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  font-weight: 800;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  box-shadow: 0 6px 18px rgba(13, 14, 18, 0.04);
}

.chip-ico {
  width: 16px;
  height: 16px;
  fill: var(--brand);
}

.chip-text {
  font-weight: 700;
  color: #30343a;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.trust {
  color: var(--muted);
  font-weight: 700;
}

.trust-logo {
  height: 20px;
  opacity: 0.9;
}

.hero-right {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.card.main {
  aspect-ratio: 4/3;
}

.card.small {
  aspect-ratio: 1/1;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  font-weight: 800;
}

.stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.floating-note {
  position: absolute;
  right: -8px;
  bottom: -8px;
  transform: translate(10%, -10%);
  background: #fff;
  border: 1px dashed rgba(13, 14, 18, 0.16);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(13, 14, 18, 0.08);
}

@media (max-width: 1060px) {
  .container {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .title-top {
    font-size: 34px;
  }
  .title-grad {
    font-size: 48px;
  }
  .hero-right {
    order: -1;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 40px 14px;
  }
  .title-top {
    font-size: 28px;
  }
  .title-grad {
    font-size: 38px;
  }
  .subtitle {
    font-size: 16px;
  }
  .trust-logo {
    height: 18px;
  }
  .floating-note {
    right: 8px;
    bottom: 8px;
    transform: none;
  }
}
:root {
  --brand: #ff5a54;
  --brand2: #ffb36f;
  --ink: #0d0e12;
  --muted: #6a6f76;
  --bg: #ffffff;
  --soft: #f6f8fb;
  --radius: 22px;
  --shadow: 0 14px 36px rgba(13, 14, 18, .10);
}

.feature-block {
  padding: 64px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.feature-block .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.feature-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.feature-media {
  position: relative;
  display: grid;
  margin: 0;
}

.feature-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.feature-cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.cap-eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 12px;
  width: max-content;
}

.cap-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.cap-sub {
  margin: 0;
  color: var(--muted);
}

.cap-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.price {
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 90, 84, 0.22);
}

.feature-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  display: grid;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-img {
  width: 140px;
  height: 120px;
  object-fit: cover;
}

.card-body {
  padding: 12px;
  display: grid;
  gap: 6px;
}

.card-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.card-desc {
  margin: 0;
  color: var(--muted);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.link {
  font-weight: 900;
  color: var(--brand);
  text-decoration: none;
}

@media (max-width: 1100px) {
  .feature-block .container {
    grid-template-columns: 1fr;
  }
  .feature-img {
    height: 420px;
  }
}
@media (max-width: 560px) {
  .feature-img {
    height: 320px;
  }
  .card {
    grid-template-columns: 110px 1fr;
  }
  .card-img {
    width: 110px;
    height: 96px;
  }
}
:root {
  --brand: #ff5a54;
  --brand2: #ffb36f;
  --ink: #0d0e12;
  --muted: #6a6f76;
  --soft: #f6f8fb;
  --bg: #ffffff;
  --shadow: 0 14px 36px rgba(13, 14, 18, .10);
  --radius: 22px;
}

.about {
  padding: 64px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.title {
  margin: 10px 0 8px;
  font-size: 36px;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 14px;
  color: #2c3138;
}

.bullets {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.bullet {
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.b-k {
  font-weight: 900;
}

.b-t {
  margin: 6px 0 0;
  color: var(--muted);
}

.facts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.fact {
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  min-width: 110px;
}

.f-num {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.f-txt {
  color: var(--muted);
  font-weight: 700;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  border: 1px solid rgba(13, 14, 18, 0.08);
}

.i-title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.i-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.i-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
}

.i-text {
  margin: 0 0 10px;
  color: #2c3138;
}

.mapph {
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #fff7f3 100%), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0 2px, transparent 2px 8px), repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.04) 0 2px, transparent 2px 8px);
  border: 1px dashed rgba(13, 14, 18, 0.15);
}

.i-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.i-contacts a {
  text-decoration: none;
  color: #1f2329;
  font-weight: 800;
}

.i-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 90, 84, 0.22);
}

.strip {
  margin-top: 24px;
  border-top: 1px solid rgba(13, 14, 18, 0.08);
  background: #fff;
}

.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .about .container {
    grid-template-columns: 1fr;
  }
  .title {
    font-size: 30px;
  }
}
@media (max-width: 560px) {
  .title {
    font-size: 26px;
  }
}
:root {
  --brand: #ff5a54;
  --brand2: #ffb36f;
  --ink: #0d0e12;
  --muted: #6a6f76;
  --soft: #f6f8fb;
  --bg: #ffffff;
  --shadow: 0 14px 36px rgba(13, 14, 18, .10);
  --radius: 22px;
}

.press {
  padding: 64px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.press .container {
  max-width: 1200px;
  margin: 0 auto;
}

.head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.title {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.02em;
}

.logos {
  margin: 14px 0 10px;
  padding: 12px;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
}

.logos li {
  list-style: none;
  display: grid;
  place-items: center;
  opacity: 0.85;
}

.logos img {
  max-height: 26px;
  max-width: 140px;
  display: block;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.quote {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(13, 14, 18, 0.08);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.stars {
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #ffb400;
}

.stars .dim {
  color: #e6e6e6;
}

.q-title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.q-text {
  margin: 0;
  color: var(--muted);
}

.q-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.who .name {
  display: block;
}

.who .role {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.ribbon {
  margin-top: 18px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
  font-weight: 900;
}

.dot {
  color: var(--muted);
  font-weight: 800;
}

.logos {
  margin: 14px 0 10px;
  padding: 12px;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: center;
  justify-items: center;
  font-size: 28px;
  /* размер эмодзи */
}

.logos li {
  list-style: none;
  opacity: 0.9;
}

:root {
  --brand: #ff5a54;
  --brand2: #ffb36f;
  --ink: #0d0e12;
  --muted: #6a6f76;
  --soft: #f6f8fb;
  --shadow: 0 14px 36px rgba(13, 14, 18, .10);
  --radius: 18px;
}

.events {
  padding: 64px 20px;
  background: #fff;
}

.events .container {
  max-width: 1200px;
  margin: 0 auto;
}

.head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.title {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.02em;
}

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

@media (max-width: 960px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.event-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.date {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.date .day {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.date .mon {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.body {
  display: grid;
  gap: 6px;
}

.name {
  margin: 0;
  font-size: 18px;
}

.desc {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

:root {
  --brand: #ff5a54;
  --brand2: #ffb36f;
  --ink: #0d0e12;
  --muted: #6a6f76;
  --soft: #f6f8fb;
  --bg: #ffffff;
  --shadow: 0 14px 36px rgba(13, 14, 18, .10);
  --radius: 20px;
}

.timeline {
  padding: 64px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.timeline .container {
  max-width: 1200px;
  margin: 0 auto;
}

.head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.title {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  color: #2b3037;
}

.rail {
  list-style: none;
  margin: 24px 0 12px;
  padding: 0 0 0 0;
  display: grid;
  gap: 18px;
  position: relative;
}

/* вертикальная линия */
.rail::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(13, 14, 18, 0.06), rgba(13, 14, 18, 0.12));
  border-radius: 2px;
}

.item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;
  position: relative;
}

.item:nth-child(odd) .box {
  grid-column: 1;
}

.item:nth-child(odd) .dot {
  grid-column: 1;
  justify-self: end;
  transform: translateX(50%);
}

.item:nth-child(even) .box {
  grid-column: 2;
}

.item:nth-child(even) .dot {
  grid-column: 2;
  justify-self: start;
  transform: translateX(-50%);
}

.dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  box-shadow: 0 10px 24px rgba(13, 14, 18, 0.08);
  font-size: 24px;
  z-index: 2;
}

.box {
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.year {
  display: inline-block;
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.name {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.text {
  margin: 0;
  color: var(--muted);
}

.cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 90, 84, 0.22);
}

/* мобильная версия — одна колонка, линия слева */
@media (max-width: 820px) {
  .rail::before {
    left: 24px;
  }
  .item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dot {
    justify-self: start;
    transform: translateX(0);
  }
  .box {
    margin-left: 64px;
  }
}
:root {
  --brand: #ff5a54;
  --brand2: #ffb36f;
  --ink: #0d0e12;
  --muted: #6a6f76;
  --soft: #f6f8fb;
  --shadow: 0 14px 36px rgba(13, 14, 18, .10);
  --radius: 18px;
}

.faq {
  padding: 64px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.faq .container {
  max-width: 1200px;
  margin: 0 auto;
}

.head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.title {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  color: #2b3037;
}

.list {
  max-width: 900px;
  margin: 18px auto 0;
  display: grid;
  gap: 10px;
}

.item {
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.q {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 14px 16px;
  font-weight: 900;
  color: #1f2329;
}

.q:hover {
  background: var(--soft);
}

.q-text {
  flex: 1;
}

.ico {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.ico::before,
.ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.ico::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.item[open] .ico::after {
  opacity: 0;
}

.a {
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* доступность */
.q::-webkit-details-marker {
  display: none;
}

.q:focus {
  outline: none;
}

.item:focus-within {
  box-shadow: 0 0 0 3px rgba(255, 90, 84, 0.25);
}

:root {
  --ink: #0d0e12;
  --muted: #6a6f76;
  --soft: #f6f8fb;
  --brand: #ff5a54;
}

.footer {
  background: #fff;
  border-top: 1px solid rgba(13, 14, 18, 0.08);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  margin-right: auto;
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: #1f2329;
  font-weight: 700;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 10px;
}

.footer-nav a:hover {
  background: var(--soft);
}

.footer-nav .reserve {
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(13, 14, 18, 0.1);
  border-radius: 10px;
  text-decoration: none;
  line-height: 1;
  font-size: 18px;
}

.footer-socials a:hover {
  background: var(--soft);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  flex-wrap: wrap;
}

.footer-legal a {
  text-decoration: none;
  color: var(--muted);
}

.footer-legal a:hover {
  color: var(--ink);
}

.footer-sub {
  border-top: 1px solid rgba(13, 14, 18, 0.06);
  background: #fff;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  padding: 10px 0;
}

/* адаптив: держим «в ряд» до 960px, ниже — аккуратно стекаем */
@media (max-width: 960px) {
  .footer-container {
    flex-wrap: wrap;
  }
  .footer-logo {
    flex: 1 1 100%;
  }
  .footer-nav {
    order: 3;
    flex: 1 1 100%;
    justify-content: center;
    gap: 12px;
  }
  .footer-right {
    order: 2;
    margin-left: auto;
  }
}
@media (max-width: 560px) {
  .footer-right {
    width: 100%;
    justify-content: space-between;
  }
  .footer-socials a {
    width: 34px;
    height: 34px;
  }
  .footer-nav .reserve {
    padding: 8px 10px;
  }
}
:root {
  --brand: #ff5a54;
  --brand2: #ffb36f;
  --ink: #0d0e12;
  --muted: #6a6f76;
  --bg: #ffffff;
  --soft: #f6f8fb;
  --radius: 22px;
  --shadow: 0 14px 36px rgba(13, 14, 18, .10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-page .eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.title {
  margin: 10px 0 8px;
  font-size: 38px;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  color: #2b3037;
  max-width: 70ch;
}

.intro {
  padding: 64px 0;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.pill-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.story {
  padding: 40px 0;
}

.story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.story p {
  margin: 0;
  color: #30343a;
}

.values {
  padding: 40px 0;
  background: linear-gradient(180deg, #fff 0%, #fff7f3 100%);
}

.section-title {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}

.card .icon {
  font-size: 24px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.milestones {
  padding: 40px 0;
}

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

.list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 12px;
}

.txt {
  font-weight: 800;
}

.team-note {
  padding: 40px 0;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.kicker {
  margin: 0 0 12px;
  color: #2b3037;
  font-weight: 700;
}

.manifest {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.manifest li {
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-weight: 800;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cta-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 90, 84, 0.22);
}

.btn.ghost {
  background: #fff;
  color: #1f2329;
  border: 1px solid rgba(13, 14, 18, 0.08);
  box-shadow: var(--shadow);
}

/* адаптив */
@media (max-width: 980px) {
  .title {
    font-size: 32px;
  }
  .story .container {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .title {
    font-size: 28px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}
.container-values {
  display: flex;
  flex-direction: column;
}

/* ===== локальные стили только для этой страницы ===== */
:root {
  --brand: #ff5a54;
  --brand2: #ffb36f;
  --ink: #0d0e12;
  --muted: #6a6f76;
  --soft: #f6f8fb;
  --radius: 18px;
  --shadow: 0 14px 36px rgba(13, 14, 18, .10);
}

/* страница = одна секция, без общих контейнеров */
.contact-reserve {
  padding: 56px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.cr-head {
  display: grid;
  gap: 8px;
  margin: 0 auto 18px auto;
  max-width: 860px;
}

.cr-eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.cr-title {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.cr-lead {
  margin: 0;
  color: #2b3037;
}

.cr-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .cr-grid {
    grid-template-columns: 1fr;
  }
}
.cr-form {
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.cr-label {
  font-weight: 800;
  margin-bottom: 6px;
  display: block;
}

.cr-input {
  width: 100%;
  border: 1px solid rgba(13, 14, 18, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  font: inherit;
  box-sizing: border-box;
}

.cr-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 90, 84, 0.2);
}

.cr-textarea {
  resize: vertical;
}

.cr-row {
  display: grid;
  gap: 8px;
}

.cr-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cr-row.two .col {
  display: grid;
  gap: 8px;
}

@media (max-width: 600px) {
  .cr-row.two {
    grid-template-columns: 1fr;
  }
}
.cr-err {
  min-height: 16px;
  margin: 0;
  color: #d32323;
  font-weight: 700;
  font-size: 13px;
}

.cr-check {
  align-items: center;
}

.cr-checkwrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cr-checkwrap input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cr-box {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(13, 14, 18, 0.2);
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.cr-checkwrap input:checked + .cr-box {
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border-color: transparent;
}

.cr-checkwrap input:checked + .cr-box::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 2px;
}

.cr-link {
  font-weight: 800;
  color: #1f2329;
  text-decoration: none;
}

.cr-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 90, 84, 0.22);
}

.cr-btn.ghost {
  background: #fff;
  color: #1f2329;
  border: 1px solid rgba(13, 14, 18, 0.12);
  box-shadow: var(--shadow);
}

.cr-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
  min-height: 18px;
}

.cr-aside {
  display: grid;
  gap: 16px;
}

.cr-card {
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.cr-card-title {
  margin: 0 0 10px;
  font-size: 18px;
}

.cr-list,
.cr-tips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cr-list a {
  text-decoration: none;
  font-weight: 800;
}

/* модалка подтверждения */
.cr-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 18, 0.4);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.cr-modal[aria-hidden=false] {
  display: flex;
}

.cr-modal-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
  max-width: 520px;
  width: 100%;
  position: relative;
  border: 1px solid rgba(13, 14, 18, 0.08);
}

.cr-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(13, 14, 18, 0.12);
  background: #fff;
  cursor: pointer;
}

.cr-modal-title {
  margin: 0 0 6px;
  font-size: 22px;
}

.cr-modal-text {
  margin: 0 0 12px;
  color: #2b3037;
}

/* локальные стили только для секции .privacy */
.privacy {
  padding: 56px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  color: #0d0e12;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

.pv-head {
  max-width: 900px;
  margin: 0 auto 14px auto;
  display: grid;
  gap: 8px;
}

.pv-eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f6f8fb;
  color: #6a6f76;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.pv-title {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.pv-lead {
  margin: 0;
  color: #2b3037;
}

.pv-meta {
  margin: 4px 0 0;
  color: #6a6f76;
  font-weight: 700;
}

.pv-toc {
  max-width: 900px;
  margin: 12px auto 18px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pv-toc a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  text-decoration: none;
  color: #1f2329;
  font-weight: 800;
}

.pv-toc a:hover {
  background: #f6f8fb;
}

.pv-body {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.pv-block {
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 36px rgba(13, 14, 18, 0.08);
}

.pv-block h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.pv-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.pv-note {
  color: #6a6f76;
  font-weight: 700;
  margin: 8px 0 0;
}

@media (max-width: 560px) {
  .pv-title {
    font-size: 28px;
  }
  .pv-block h2 {
    font-size: 20px;
  }
}
/* локальные стили только для секции .terms */
.terms {
  padding: 56px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  color: #0d0e12;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

.tm-head {
  max-width: 900px;
  margin: 0 auto 14px auto;
  display: grid;
  gap: 8px;
}

.tm-eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f6f8fb;
  color: #6a6f76;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.tm-title {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.tm-lead {
  margin: 0;
  color: #2b3037;
}

.tm-meta {
  margin: 4px 0 0;
  color: #6a6f76;
  font-weight: 700;
}

.tm-toc {
  max-width: 900px;
  margin: 12px auto 18px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tm-toc a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  text-decoration: none;
  color: #1f2329;
  font-weight: 800;
}

.tm-toc a:hover {
  background: #f6f8fb;
}

.tm-body {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.tm-block {
  background: #fff;
  border: 1px solid rgba(13, 14, 18, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 36px rgba(13, 14, 18, 0.08);
}

.tm-block h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.tm-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

@media (max-width: 560px) {
  .tm-title {
    font-size: 28px;
  }
  .tm-block h2 {
    font-size: 20px;
  }
}

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