*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #08080f;
  --bg2: #0f0f1c;
  --bg3: #161628;
  --border: #252538;
  --border2: #303050;
  --gold: #c9a040;
  --gold2: #e0b858;
  --white: #f0ede8;
  --muted: #6868a0;
  --text: #c8c5d8;
  --green: #22c55e;
  --red: #ef4444;
  --blue: #003087;
  --tricolor-red: #c8102e;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  background: #08080feb;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 2.5rem;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-logo {
  color: var(--white);
  flex-shrink: 0;
  font-family: Playfair Display, serif;
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
}

.nav-logo em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.nav-links a {
  color: var(--muted);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  border-radius: 6px;
  padding: .4rem 1.1rem;
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--gold2) !important;
}

.nav-burger {
  cursor: pointer;
  z-index: 101;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  display: none;
}

.nav-burger span {
  background: var(--white);
  border-radius: 2px;
  width: 22px;
  height: 2px;
  transition: all .25s;
  display: block;
}

.nav-burger.open span:first-child {
  transform: translateY(7px)rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

.nav-mobile {
  z-index: 99;
  background: #08080ff7;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  padding: 2rem;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--text);
  letter-spacing: .05em;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.nav-mobile a:hover, .nav-mobile a.active {
  color: var(--white);
}

.nav-mobile .nav-cta {
  border-radius: 8px;
  padding: .65rem 2rem;
  background: var(--gold) !important;
  color: #000 !important;
}

section {
  padding: 5rem 2rem;
}

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

.s-label {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
  font-size: .72rem;
  font-weight: 600;
}

.s-label-red {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tricolor-red);
  margin-bottom: .6rem;
  font-size: .72rem;
  font-weight: 600;
}

.s-title {
  color: var(--white);
  margin-bottom: .8rem;
  font-family: Playfair Display, serif;
  font-size: max(1.8rem, min(4vw, 2.6rem));
  line-height: 1.2;
}

.s-desc {
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 3rem;
  font-size: 1rem;
  line-height: 1.75;
}

.divider {
  background: var(--gold);
  border-radius: 2px;
  width: 50px;
  height: 3px;
  margin: 1.2rem 0;
}

.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}

.stat-card:hover {
  border-color: #c9a04066;
  transform: translateY(-2px);
}

.stat-num {
  color: var(--gold);
  margin-bottom: .5rem;
  font-family: Playfair Display, serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
  display: grid;
}

.p-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.p-card:before {
  content: "";
  background: var(--gold);
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.p-icon {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.p-title {
  color: var(--white);
  margin-bottom: .6rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.p-text {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
}

.principles-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.chart-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.chart-title {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.chart-grid {
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.tricolor {
  border-radius: 2px;
  width: 80px;
  height: 4px;
  display: flex;
  overflow: hidden;
}

.tc-w {
  background: #fff;
  flex: 1;
}

.tc-b {
  background: var(--blue);
  flex: 1;
}

.tc-r {
  background: var(--tricolor-red);
  flex: 1;
}

.dot {
  background: var(--green);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(.7);
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.steps {
  flex-direction: column;
  max-width: 680px;
  display: flex;
}

.step {
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  position: relative;
}

.step:not(:last-child):after {
  content: "";
  background: linear-gradient(to bottom, var(--border2), var(--border));
  width: 2px;
  position: absolute;
  top: 52px;
  bottom: 0;
  left: 23px;
}

.step-num {
  background: var(--bg3);
  border: 2px solid var(--gold);
  width: 48px;
  min-width: 48px;
  height: 48px;
  color: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
}

.step-body {
  padding-top: .6rem;
}

.step-t {
  color: var(--white);
  margin-bottom: .3rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.step-d {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.65;
}

footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 3rem 2rem;
}

.footer-logo {
  color: var(--white);
  margin-bottom: .75rem;
  font-family: Playfair Display, serif;
  font-size: 1.4rem;
}

.footer-logo em {
  color: var(--gold);
  font-style: normal;
}

.footer-txt {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
  font-size: .82rem;
  line-height: 1.65;
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
}

.footer-nav a {
  color: var(--muted);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .78rem;
  text-decoration: none;
  transition: color .2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: #000;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #c9a04040;
}

.page-hero {
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero:before {
  content: "";
  background: radial-gradient(70% 50% at 50% 30%, #c9a0400f 0%, #0000 70%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 7rem 2rem 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  background: radial-gradient(90% 60% at 50% 30%, #c9a04012 0%, #0000 70%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-badge {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 100px;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  padding: .4rem 1rem;
  font-size: .75rem;
  display: inline-flex;
}

.hero-title {
  color: var(--white);
  margin-bottom: .75rem;
  font-family: Playfair Display, serif;
  font-size: max(3.5rem, min(11vw, 8.5rem));
  font-weight: 900;
  line-height: 1;
}

.hero-title .dash {
  color: var(--gold);
}

.hero-tagline {
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-size: max(.9rem, min(2vw, 1.15rem));
  font-weight: 300;
}

.three-words {
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 3rem;
  display: flex;
}

.word-pill {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--white);
  border-radius: 100px;
  padding: .5rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.hero-counter-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 1.2rem 2rem;
  display: flex;
}

.counter-num {
  color: var(--gold);
  font-family: Playfair Display, serif;
  font-size: 2.8rem;
  font-weight: 700;
}

.counter-sep {
  background: var(--border);
  width: 1px;
  height: 40px;
}

.counter-label {
  color: var(--muted);
  text-align: left;
  font-size: .85rem;
  line-height: 1.4;
}

.counter-label strong {
  color: var(--text);
  margin-bottom: .1rem;
  font-size: .95rem;
  display: block;
}

.hero-cta {
  background: var(--gold);
  color: #000;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.5rem;
  font-family: Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.hero-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #c9a04040;
}

.p-card-tri:first-child:before {
  background: #fff;
}

.p-card-tri:nth-child(2):before {
  background: var(--blue);
}

.p-card-tri:nth-child(3):before {
  background: var(--tricolor-red);
}

.form-grid {
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
  gap: 4rem;
  display: grid;
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

label {
  color: var(--text);
  letter-spacing: .03em;
  margin-bottom: .45rem;
  font-size: .82rem;
  font-weight: 600;
  display: block;
}

input[type="text"], input[type="email"], input[type="tel"] {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  width: 100%;
  color: var(--white);
  border-radius: 8px;
  outline: none;
  padding: .75rem 1rem;
  font-family: Inter, sans-serif;
  font-size: .93rem;
  transition: border-color .2s;
}

input[type="text"]:focus, input[type="email"]:focus {
  border-color: var(--gold);
}

input[type="text"]::placeholder, input[type="email"]::placeholder {
  color: var(--muted);
}

input:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.submit-btn {
  background: var(--gold);
  color: #000;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  width: 100%;
  margin-top: 1rem;
  padding: .9rem;
  font-family: Inter, sans-serif;
  font-size: .98rem;
  font-weight: 700;
  transition: all .2s;
}

.submit-btn:hover:not(:disabled) {
  background: var(--gold2);
  transform: translateY(-1px);
}

.submit-btn:disabled {
  color: #555;
  cursor: not-allowed;
  background: #2a2a3a;
  transform: none;
}

.form-note {
  color: var(--muted);
  text-align: center;
  margin-top: .9rem;
  font-size: .74rem;
  line-height: 1.55;
}

.alert {
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: .75rem 1rem;
  font-size: .87rem;
  line-height: 1.5;
}

.alert-ok {
  color: #22c55e;
  background: #22c55e14;
  border: 1px solid #22c55e40;
}

.alert-err {
  color: #ef4444;
  background: #ef444414;
  border: 1px solid #ef444440;
}

.side-info {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}

.guarantees {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
}

.g-title {
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
  font-size: .72rem;
}

.g-row {
  color: var(--text);
  font-size: .85rem;
  line-height: 1.9;
}

.sup-grid {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 3rem;
  display: grid;
}

.big-count {
  color: var(--gold);
  font-family: Playfair Display, serif;
  font-size: max(4rem, min(10vw, 6.5rem));
  font-weight: 900;
  line-height: 1;
}

.big-label {
  color: var(--muted);
  margin-top: .3rem;
  font-size: .95rem;
}

.cities-wrap {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.city-chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 100px;
  padding: .3rem .85rem;
  font-size: .8rem;
}

.city-chip.new {
  border-color: var(--gold);
  color: var(--gold);
  animation: .4s pop;
}

.three-col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  display: grid;
}

.econ-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
}

.econ-title {
  color: var(--white);
  margin-bottom: .5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.econ-text {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.7;
}

.chart-small {
  max-width: 280px;
  margin: 0 auto;
}

.big-stat {
  color: var(--tricolor-red);
  margin-bottom: .5rem;
  font-family: Playfair Display, serif;
  font-size: max(4rem, min(12vw, 7rem));
  font-weight: 900;
  line-height: 1;
}

.big-stat-label {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.timeline {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  display: grid;
}

.tl-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.tl-card:before {
  content: "";
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.tl-card.phase1:before, .tl-card.phase2:before {
  background: var(--tricolor-red);
}

.tl-card.phase3:before {
  background: var(--gold);
}

.tl-card.phase4:before {
  background: var(--green);
}

.tl-period {
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
  font-size: .75rem;
}

.tl-title {
  color: var(--white);
  margin-bottom: .5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.tl-desc {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.65;
}

.four-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  display: grid;
}

.v-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
}

.v-title {
  color: var(--white);
  margin-bottom: .4rem;
  font-size: 1rem;
  font-weight: 700;
}

.v-text {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.65;
}

.career-path {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  display: grid;
}

.cp-step {
  background: var(--bg2);
  border: 1px solid var(--border);
  text-align: center;
  border-radius: 12px;
  padding: 1.2rem;
}

.cp-age {
  color: var(--gold);
  font-family: Playfair Display, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.cp-role {
  color: var(--white);
  margin: .3rem 0;
  font-size: .95rem;
  font-weight: 600;
}

.cp-desc {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

.cp-arrow {
  color: var(--muted);
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 1.5rem;
  display: flex;
}

.manifest-layout {
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
}

.manifest-sidebar {
  max-height: calc(100vh - 110px);
  padding-bottom: 2rem;
  position: sticky;
  top: 90px;
  overflow-y: auto;
}

.manifest-sidebar::-webkit-scrollbar {
  width: 4px;
}

.manifest-sidebar::-webkit-scrollbar-track {
  background: none;
}

.manifest-sidebar::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 4px;
}

.sidebar-title {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-left: .5rem;
  font-size: .7rem;
  font-weight: 600;
}

.sidebar-nav {
  list-style: none;
}

.sidebar-nav li {
  margin-bottom: .2rem;
}

.sidebar-nav a {
  color: var(--muted);
  border-left: 2px solid #0000;
  border-radius: 8px;
  padding: .45rem .75rem;
  font-size: .82rem;
  line-height: 1.35;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.sidebar-nav a:hover {
  color: var(--white);
  background: var(--bg3);
}

.sidebar-nav a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: #c9a0400f;
}

.sidebar-num {
  color: var(--muted);
  margin-bottom: .1rem;
  font-size: .7rem;
  display: block;
}

.manifest-content {
  padding-top: .5rem;
}

.manifest-part {
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}

.manifest-part:last-child {
  border-bottom: none;
}

.part-label {
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--tricolor-red);
  margin-bottom: .7rem;
  font-size: .7rem;
  font-weight: 700;
}

.part-title {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-family: Playfair Display, serif;
  font-size: max(1.6rem, min(3.5vw, 2.2rem));
  line-height: 1.2;
}

.part-text {
  color: var(--text);
  max-width: 700px;
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.85;
}

.part-text strong {
  color: var(--white);
}

.part-list {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.part-list li {
  color: var(--text);
  padding: .35rem 0 .35rem 1.3rem;
  font-size: .93rem;
  line-height: 1.7;
  position: relative;
}

.part-list li:before {
  content: "·";
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.highlight-box {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--gold);
  color: var(--muted);
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  line-height: 1.7;
}

.stat-inline {
  align-items: baseline;
  gap: .4rem;
  margin: .5rem 0;
  display: inline-flex;
}

.stat-big {
  color: var(--gold);
  font-family: Playfair Display, serif;
  font-size: 2rem;
  font-weight: 900;
}

.stat-unit {
  color: var(--muted);
  font-size: .85rem;
}

.manifest-mobile-nav {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: none;
}

.manifest-mobile-nav select {
  background: var(--bg3);
  border: 1px solid var(--border2);
  width: 100%;
  color: var(--white);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%278%27 viewBox=%270 0 12 8%27%3E%3Cpath d=%27M1 1l5 5 5-5%27 stroke=%27%236868a0%27 fill=%27none%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  border-radius: 8px;
  outline: none;
  padding: .65rem 1rem;
  font-family: Inter, sans-serif;
  font-size: .9rem;
}

.blocks-grid {
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  display: grid;
}

.block-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.block-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}

.block-card:before {
  content: "";
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.block-header {
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  display: flex;
}

.block-letter {
  font-family: Playfair Display, serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.block-name {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.block-desc {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: .9rem;
  line-height: 1.8;
}

.block-conc {
  margin-top: 1rem;
}

.block-conc-title {
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
  font-size: .72rem;
  font-weight: 600;
}

.block-conc ul {
  padding: 0;
  list-style: none;
}

.block-conc li {
  color: var(--text);
  padding: .2rem 0 .2rem 1.1rem;
  font-size: .87rem;
  line-height: 1.7;
  position: relative;
}

.block-conc li:before {
  content: "→";
  color: var(--gold);
  font-size: .75rem;
  position: absolute;
  left: 0;
}

.block-sport:before {
  background: var(--tricolor-red);
}

.block-sport .block-letter {
  color: var(--tricolor-red);
}

.block-biz:before {
  background: #5b8bd4;
}

.block-biz .block-letter {
  color: #5b8bd4;
}

.block-pens:before {
  background: var(--gold);
}

.block-pens .block-letter {
  color: var(--gold);
}

.block-edu:before {
  background: var(--green);
}

.block-edu .block-letter {
  color: var(--green);
}

.block-work:before {
  background: #a08cff;
}

.block-work .block-letter {
  color: #a08cff;
}

.block-health:before {
  background: #e8931a;
}

.block-health .block-letter {
  color: #e8931a;
}

.block-media:before {
  background: #66d9e8;
}

.block-media .block-letter {
  color: #66d9e8;
}

.block-fam:before {
  background: #f8c;
}

.block-fam .block-letter {
  color: #f8c;
}

.settlement-hero {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 3rem;
  padding: 3rem;
}

.settlement-stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  display: grid;
}

.settle-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  text-align: center;
  border-radius: 12px;
  padding: 1.2rem;
}

.settle-num {
  color: var(--gold);
  font-family: Playfair Display, serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.settle-label {
  color: var(--muted);
  margin-top: .3rem;
  font-size: .8rem;
  line-height: 1.4;
}

.infra-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .8rem;
  margin-top: 1.5rem;
  display: grid;
}

.infra-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: .9rem 1rem;
  font-size: .87rem;
}

.infra-item strong {
  color: var(--white);
  margin-bottom: .2rem;
  font-size: .9rem;
  display: block;
}

.steps-settle {
  counter-reset: step-cnt;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.steps-settle li {
  counter-increment: step-cnt;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding: .5rem 0 .5rem 2.5rem;
  font-size: .9rem;
  line-height: 1.7;
  position: relative;
}

.steps-settle li:last-child {
  border-bottom: none;
}

.steps-settle li:before {
  content: counter(step-cnt);
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: .5rem;
  left: 0;
}

.settle-chart-wrap {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  display: grid;
}

.analytics-grid {
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.chart-card-header {
  margin-bottom: 1.2rem;
}

.chart-num-label {
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tricolor-red);
  margin-bottom: .3rem;
  font-size: .75rem;
  font-weight: 600;
}

.chart-card-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.chart-subtitle {
  color: var(--muted);
  margin-top: .3rem;
  font-size: .8rem;
}

.sources-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  display: grid;
}

.source-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
}

.source-org {
  color: var(--white);
  margin-bottom: .3rem;
  font-size: .82rem;
  font-weight: 700;
}

.source-desc {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.6;
}

.kpi-strip {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  display: grid;
}

.kpi-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  text-align: center;
  border-radius: 14px;
  padding: 1.3rem;
}

.kpi-val {
  color: var(--gold);
  font-family: Playfair Display, serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.kpi-lbl {
  color: var(--muted);
  margin-top: .3rem;
  font-size: .8rem;
  line-height: 1.4;
}

.quote-block {
  border-left: 3px solid var(--tricolor-red);
  background: var(--bg2);
  color: var(--text);
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
  padding: 1.1rem 1.5rem;
  font-size: .95rem;
  font-style: italic;
  line-height: 1.85;
}

.quote-block cite {
  color: var(--muted);
  letter-spacing: .05em;
  margin-top: .6rem;
  font-size: .8rem;
  font-style: normal;
  display: block;
}

.value-code {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  margin: 1.5rem 0;
  padding: 1.4rem 1.6rem;
}

.vc-title {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: .7rem;
  font-weight: 600;
}

.vc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vc-list li {
  border-bottom: 1px solid var(--border);
  color: var(--text);
  align-items: baseline;
  gap: .75rem;
  padding: .45rem 0;
  font-size: .92rem;
  line-height: 1.6;
  display: flex;
}

.vc-list li:last-child {
  border-bottom: none;
}

.vc-num {
  color: var(--gold);
  min-width: 24px;
  font-family: Playfair Display, serif;
  font-size: .85rem;
  font-weight: 700;
}

.third-way {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  display: grid;
}

.tw-col {
  text-align: center;
  padding: .5rem;
}

.tw-label {
  color: var(--white);
  margin-bottom: .4rem;
  font-size: .87rem;
  font-weight: 700;
}

.tw-result {
  color: var(--muted);
  font-size: .8rem;
}

.tw-bad .tw-label {
  color: var(--text);
}

.tw-good .tw-label {
  color: var(--gold);
}

.tw-good .tw-result {
  color: var(--green);
}

.tw-vs {
  color: var(--border2);
  text-align: center;
  letter-spacing: .1em;
  font-size: .7rem;
}

.nation-table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.2rem 0;
  font-size: .9rem;
}

.nation-table th {
  text-align: left;
  border-bottom: 2px solid var(--border2);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .65rem 1rem;
  font-size: .75rem;
  font-weight: 600;
}

.nation-table td {
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
  padding: .75rem 1rem;
  line-height: 1.5;
}

.nation-table td:nth-child(2) {
  color: var(--gold);
  font-family: Playfair Display, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.nation-table tr:last-child td {
  border-bottom: none;
}

.nation-table tr:hover td {
  background: #c9a04008;
}

.priv-h2 {
  color: var(--white);
  margin: 2.5rem 0 .75rem;
  font-family: Playfair Display, serif;
  font-size: 1.3rem;
}

.priv-p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: .93rem;
  line-height: 1.85;
}

.priv-ul {
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
}

.priv-ul li {
  color: var(--text);
  padding: .2rem 0 .2rem 1.2rem;
  font-size: .9rem;
  line-height: 1.85;
  position: relative;
}

.priv-ul li:before {
  content: "·";
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.priv-table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.2rem 0;
  font-size: .87rem;
}

.priv-table th {
  text-align: left;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding: .7rem 1rem;
  font-size: .78rem;
}

.priv-table td {
  color: var(--text);
  vertical-align: top;
  border-bottom: 1px solid #25253880;
  padding: .75rem 1rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .manifest-layout {
    grid-template-columns: 1fr;
  }

  .manifest-sidebar {
    display: none;
  }

  .manifest-mobile-nav {
    display: block;
  }
}

@media (max-width: 768px) {
  nav {
    padding: .85rem 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .chart-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sup-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-counter-wrap {
    flex-direction: column;
    gap: .75rem;
  }

  .counter-sep {
    display: none;
  }

  .settle-chart-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blocks-grid, .analytics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .chart-grid {
    grid-template-columns: 1fr;
  }
}

