html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: #1A1A1A;
}

/* ===== Selection ===== */
::selection {
  background: #d9beff;
  color: #1A1A1A;
}

/* ===== Fonts ===== */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Figtree";
  src: url("fonts/Figtree-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--lg {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
}

.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1.5px solid var(--border-dark);
}
.btn--primary:hover {
  background: var(--btn-primary-bg-hover);
  box-shadow: 0 4px 16px rgba(15, 17, 21, 0.18);
  transform: translateY(-1px);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 960px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar--hidden {
  transform: translateX(-50%) translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

/* Article navbar — simplified with breadcrumbs */
.navbar--article {
  position: static;
  transform: none;
  width: 100%;
  max-width: none;
  top: 0;
  left: 0;
  padding: 0;
}
.navbar--article .navbar__menu,
.navbar--article .navbar__divider,
.navbar--article .navbar__actions,
.navbar--article .navbar__burger,
.navbar--article .navbar__mobile-menu {
  display: none;
}
.navbar--article .navbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  justify-content: space-between;
  border: none;
  border-radius: 0;
  background: transparent;
}
.navbar__breadcrumbs {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.navbar__breadcrumbs::-webkit-scrollbar { 
  display: none; 
}
.navbar__breadcrumbs a {
  color: #999;
  text-decoration: none;
}
.navbar__breadcrumbs a:hover {
  color: #1A1A1A;
}
.navbar__breadcrumbs span:last-child {
  color: #1A1A1A;
  white-space: nowrap;
}
.navbar__breadcrumb-sep {
  margin: 0 8px;
  color: #ccc;
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 8px 0 28px;
  background: #ffffeb;
  border: 2.5px solid #e5e5d0;
  border-radius: 10px;
  box-shadow: none;
  gap: 8px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: #1A1A1A;
  letter-spacing: -1px;
  flex-shrink: 0;
  margin-right: 16px;
}

.navbar__logo-icon { color: var(--text-primary); }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
}

.navbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0px;
  letter-spacing: 0px;
  color: #222222;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.navbar__link:hover { opacity: 0.6; }

.navbar__chevron { opacity: 0.4; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.navbar__divider {
  width: 1px;
  height: 28px;
  background: var(--border-default);
  flex-shrink: 0;
  margin: 0 8px;
}

.navbar__btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 183px;
  height: 41px;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: #D8BFFF;
  border: 2px solid #1A1A1A;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.navbar__btn-accent:hover {
  transform: scale(0.95);
}


/* ===== Burger & Mobile Menu ===== */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffeb;
  border: 2.5px solid #e5e5d0;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 4px 20px 4px;
  margin-top: -2px;
}

.navbar__mobile-menu.open {
  display: flex;
}

.navbar__mobile-link {
  display: block;
  padding: 14px 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  border-bottom: 1px solid #e5e5d0;
}

.navbar__mobile-link:last-of-type {
  border-bottom: none;
}

.navbar__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.navbar__overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 130px 24px 140px;
  overflow: hidden;
}

.hero__center {
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 120px;
  line-height: 102px;
  letter-spacing: -3.6px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 18px;
}

.hero__title-light {
  font-weight: 400;
  color: #1A1A1A4D;
  font-style: normal;
}

.hero__title-bold {
  font-weight: 800;
  font-style: italic;
  color: #1A1A1A;
}

.hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1b1a1b;
  max-width: 460px;
  margin: 0 auto 32px;
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  background: #D8BFFF;
  border: 2px solid #1A1A1A;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.hero__cta-btn:hover {
  transform: scale(0.95);
}

.hero__note {
  font-size: 14px;
  color: #bbbaad;
  margin-top: 14px;
}


/* ===== Diagonal Ribbon ===== */
.hero__ribbon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__ribbon-band {
  position: absolute;
  left: 50%;
  right: -30%;
  bottom: 10%;
  transform: rotate(-3deg);
  transform-origin: left center;
  background: #0F1115;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.hero__ribbon-track {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 0 24px;
}

.hero__ribbon-before {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #FFFFFF;
  opacity: 0.85;
  flex-shrink: 0;
  letter-spacing: 0.2px;
}

.hero__ribbon-after {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #5DCAA5;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.2px;
}

.hero__ribbon-dot {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.hero__ribbon-dot--green {
  color: rgba(93, 202, 165, 0.45);
}

/* Capsule wrapper */
.hero__capsule-wrap {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, 50%);
  z-index: 5;
}

.hero__capsule {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 200px;
  height: 80px;
  background: #ffffeb;
  border: 2px solid #363A4A;
  border-radius: 50px;
  overflow: hidden;
}

.hero__capsule-word {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #363A4A;
  transition: opacity 0.3s ease;
}

.hero__capsule-strike {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 4px;
  z-index: 1;
  pointer-events: none;
}

.hero__capsule-strike path {
  transition: stroke-dashoffset 0.6s ease-in-out;
}

.hero__capsule.striking .hero__capsule-strike path {
  stroke-dashoffset: 0;
}

/* Result badge (Russian translation) */
.hero__capsule-result {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transform-origin: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1B5E4B;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  white-space: nowrap;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  box-shadow: none;
}

.hero__capsule-result.visible {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.hero__capsule-result-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

.hero__capsule-check {
  opacity: 0;
  transition: opacity 0s;
}

.hero__capsule-result.checked .hero__capsule-check {
  opacity: 1;
}

.hero__capsule-check path {
  transition: stroke-dashoffset 0.3s ease;
}

.hero__capsule-result.checked .hero__capsule-check path {
  stroke-dashoffset: 0;
}

/* Left ribbon (English) */
.hero__ribbon-en {
  position: absolute;
  left: 0;
  right: calc(50% - 75px);
  bottom: 10%;
  transform: translateY(50%);
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

.hero__ribbon-en-track {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 0 24px;
  animation: scrollEn 25s linear infinite;
}

.hero__ribbon-en-track span {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 22px;
  color: #1A1A1A;
  opacity: 0.7;
  flex-shrink: 0;
}

.hero__ribbon-en-dot {
  opacity: 0.3 !important;
}

@keyframes scrollEn {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Right dark ribbon (Russian) */
.hero__ribbon-ru {
  position: absolute;
  left: calc(50% + 40px);
  right: 0;
  bottom: 10%;
  transform: translateY(50%);
  z-index: 1;
  background: #0F1115;
  border-radius: 0;
  padding: 1px 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

.hero__ribbon-ru-track {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 0 24px;
  animation: scrollRu 25s linear infinite;
}

.hero__ribbon-ru-track span {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 22px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.hero__ribbon-ru-dot {
  opacity: 0.4;
}

@keyframes scrollRu {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}


.hero__capsule-inner {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #0F1115;
  letter-spacing: -0.5px;
}

/* ===== Bottom Ribbon ===== */
.hero__ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__ribbon-tape {
  width: 100%;
  overflow: hidden;
  background: var(--brand-primary);
  padding: 14px 0;
  transform: rotate(-2deg) scale(1.05);
  margin-bottom: -10px;
}

.hero__ribbon-tape-inner {
  display: flex;
  width: max-content;
  animation: scrollTape 25s linear infinite;
}

.hero__ribbon-tape-inner span {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-inverse);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

@keyframes scrollTape {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Features ===== */
.features {
  background: #0F1115;
  padding: 60px 24px;
  overflow: hidden;
  border-radius: 60px;
  position: relative;
  z-index: 2;
}

.features-illustration-wrap {
  position: relative;
  height: 0;
  z-index: 1;
  pointer-events: none;
}


.features__illustration {
  position: absolute;
  bottom: -60px;
  left: 80px;
  width: 280px;
  height: auto;
}

.features__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.features__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}

.features__desc-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.features__desc-heading {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 52.8px;
  letter-spacing: 0px;
  color: #FFFFEB;
}

.features__desc-text {
  font-family: "Figtree", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 31.2px;
  letter-spacing: 0px;
  color: #FFFFEB;
}

.features__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #0F1115;
  background: #FFFFEB;
  border: 2px solid #FFFFEB;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.features__cta-btn:hover {
  transform: scale(0.95);
}

.features__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 120px;
  line-height: 102px;
  letter-spacing: -3.6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features__title-light {
  font-weight: 400;
  color: #FFFFEB;
  font-style: normal;
}

.features__title-bold {
  font-weight: 700;
  font-style: italic;
  color: #FFFFEB;
}

/* Mini product card grid */
.features__card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.features__mini-card {
  aspect-ratio: 3 / 4;
  background: #1b1a1b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  position: relative;
}

.features__mini-card--flagged::after {
  content: attr(data-word);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 600;
  color: #A32D2D;
  white-space: nowrap;
}

.features__mini-card--flagged::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  background: #A32D2D;
  border-radius: 50%;
}

/* Feature cards */
.features__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.features__card {
  background: #1b1a1b;
  border: 1px solid #303131;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features__card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.features__card-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #e5e5d0;
  line-height: 1.3;
}

.features__card-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(229, 229, 208, 0.5);
  line-height: 1.5;
}

/* ===== Marketplace ===== */
.marketplace {
  padding: 100px 24px;
}

.marketplace__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.marketplace__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.marketplace__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 64px;
  line-height: 60.8px;
  letter-spacing: -1.9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.marketplace__title-light {
  font-weight: 400;
  color: #1A1A1A;
}

.marketplace__title-bold {
  font-weight: 700;
  font-style: italic;
  color: #1A1A1A;
}

.marketplace__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1b1a1b;
}

.marketplace__section-title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 32px;
}

.marketplace__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.marketplace__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.marketplace__col-heading {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.marketplace__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  width: 100%;
  height: 100px;
  background: #ffffeb;
  border: 4px solid #e5e5d0;
  border-radius: 22px;
}

.marketplace__card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}


.marketplace__card-text {
  font-family: "Figtree", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0px;
  color: #1A1A1A;
}

.marketplace__cta-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  background: #ffffeb;
  border: 2px solid #1A1A1A;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  text-align: center;
}

.marketplace__cta-btn:hover {
  transform: scale(0.95);
}

/* ===== Audience ===== */
.audience {
  background: #034e46;
  padding: 80px 24px;
  border-radius: 40px;
  overflow: visible;
  position: relative;
}

.audience__illustration {
  position: absolute;
  bottom: -60px;
  right: 40px;
  transform: rotate(8deg);
  width: 330px;
  pointer-events: none;
  z-index: 1;
}

.audience__inner {
  max-width: 1120px;
  margin: 0 auto;
}

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

.audience__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 120px;
  line-height: 96px;
  letter-spacing: -3.6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.audience__title-light {
  font-weight: 400;
  color: #ffffeb;
}

.audience__title-bold {
  font-weight: 700;
  font-style: italic;
  color: #FFFFEB;
}

.audience__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 3px;
  row-gap: 8px;
  margin-top: 48px;
  max-width: 420px;
}

.audience__tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: 0px;
  color: #ffffeb;
  background: #034e46;
  border: 1.5px solid #ffffeb;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.15s;
}

.audience__tag--active {
  background: #f1d6ff;
  color: #1b1a1b;
  border-color: #ffffeb;
  transform: rotate(-3deg);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
}

.audience__tag:hover {
  border-color: #ffffeb;
}

.audience__right {
  transition: opacity 0.3s ease;
}

.audience__cards {
  margin-bottom: 32px;
}

.audience__card {
  display: none;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audience__card--active {
  display: flex;
  opacity: 1;
}

.audience__card-title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 0px;
  color: #FFFFEB;
}

.audience__card-desc {
  font-family: "Figtree", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0px;
  color: #ffffeb;
}

.audience__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #1b1a1b;
  background: #f1d6ff;
  border: 2px solid #1b1a1b;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.audience__cta-btn:hover {
  transform: scale(0.95);
}

/* ===== How it works ===== */
.howitworks {
  padding: 100px 24px;
}

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

.howitworks__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.howitworks__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 64px;
  line-height: 60.8px;
  letter-spacing: -1.9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.howitworks__title-light {
  font-weight: 400;
  color: #1A1A1A;
}

.howitworks__title-bold {
  font-weight: 700;
  font-style: italic;
  color: #1A1A1A;
}

.howitworks__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1b1a1b;
}

.howitworks__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.howitworks__step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-top: 2px solid #e5e5d0;
}

.howitworks__step:first-child {
  border-top: none;
}

.howitworks__step:last-child {
  border-bottom: 2px solid #e5e5d0;
}

.howitworks__step-number {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: #1A1A1A4D;
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}

.howitworks__step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.howitworks__step-title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
}

.howitworks__step-desc {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #1b1a1b;
  max-width: 640px;
}

/* ===== Result value ===== */
.result-value {
  padding: 60px 24px 100px;
}

.result-value__inner {
  max-width: 760px;
  margin: 0 auto;
}

.result-value__illustration {
  float: right;
  width: 280px;
  margin: 0 0 24px 40px;
  overflow: hidden;
}

.result-value__illustration img {
  margin-left: -4px;
}

.result-value__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 64px;
  line-height: 60.8px;
  letter-spacing: -1.9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.result-value__title-light {
  font-weight: 400;
  color: #1A1A1A;
}

.result-value__title-bold {
  font-weight: 700;
  font-style: italic;
  color: #1A1A1A;
}

.result-value__lead {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1b1a1b;
  margin-bottom: 24px;
}

.result-value__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  list-style: none;
}

.result-value__item {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #1A1A1A;
  padding-left: 24px;
  position: relative;
}

.result-value__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #ff6c4a;
  border-radius: 50%;
}

.result-value__footnote {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #bbbaad;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.result-value__footnote-icon {
  flex-shrink: 0;
}

/* ===== Report preview ===== */
.report {
  padding: 100px 0 100px 24px;
  overflow: hidden;
}

.report__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.report__text {
  padding-right: 24px;
}

.report__preview {
  margin-right: -120px;
}

.report__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 64px;
  line-height: 60.8px;
  letter-spacing: -1.9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.report__title-light {
  font-weight: 400;
  color: #1A1A1A;
}

.report__title-bold {
  font-weight: 700;
  font-style: italic;
  color: #1A1A1A;
}

.report__desc {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1b1a1b;
  margin-bottom: 32px;
}

.report__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  background: #D8BFFF;
  border: 2px solid #1A1A1A;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.report__cta-btn:hover {
  transform: scale(0.95);
}

.report__image {
  width: 100%;
  height: auto;
  border-radius: 24px 0 0 24px;
  display: block;
  border: 4px solid #e5e5d0;
  box-shadow: 3px 3px #e5e5d0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #bbbaad;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 60px 24px 100px;
}

.cta-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.cta-banner__card {
  background: #ffffeb;
  border: 4px solid #1A1A1A;
  border-radius: 2rem;
  padding: 28px 80px;
  text-align: center;
  position: relative;
  box-shadow: 3px 3px #000;
  overflow: visible;
}

.cta-banner__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 59px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.9px;
  color: #1A1A1A;
  margin-bottom: 20px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__desc {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0px;
  font-weight: 400;
  color: #1b1a1b;
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-banner__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.cta-banner__btn--primary {
  background: #D8BFFF;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
}

.cta-banner__btn--secondary {
  background: #ffffeb;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
}

.cta-banner__btn:hover {
  transform: scale(0.95);
}

.cta-banner__illustration {
  position: absolute;
  bottom: -100px;
  right: 10px;
  width: 320px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

/* ===== Related Articles ===== */
.related {
  padding: 64px 0 80px;
  background: #ffffeb;
  overflow: hidden;
}
.related__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.related__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.related__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -1px;
  color: #1A1A1A;
}
.related__link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #1A1A1A;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.related__link:hover {
  opacity: 0.6;
}
.related__arrow {
  font-size: 20px;
}
.related__grid {
  display: flex;
  gap: 24px;
  overflow: visible;
  margin-right: -9999px;
  padding-right: 9999px;
}
.related__card {
  min-width: 280px;
  flex: 0 0 calc(25% - 18px);
  text-decoration: none;
  color: #1A1A1A;
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s;
}
.related__card:hover {
  opacity: 0.8;
}
.related__card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #e5e5d0;
  border: 4px solid #1A1A1A;
  box-shadow: 3px 3px #000;
}
.related__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related__card-title {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.related__card-meta {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.related__card-tag {
  font-weight: 500;
  color: #666;
}

@media (max-width: 700px) {
  .related {
    padding: 48px 16px 64px;
  }
  .related__title {
    font-size: 28px;
  }
  .related__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .related__header {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== Footer ===== */
.footer {
  background: #1A1A1A;
  color: #fff;
  padding: 64px 24px 32px;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
}

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

.footer__nav-col {
  min-width: 0;
}

.footer__nav-col:nth-child(2) {
  display: grid;
  justify-content: center;
}

.footer__nav-col:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__nav-title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-list a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: color 0.15s;
}

.footer__nav-list a:hover {
  color: #fff;
}

.footer__link-disabled {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #888;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__tag-soon {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: #333;
  color: #888;
  padding: 2px 6px;
  border-radius: 4px;
}


.footer__bottom {
  border-top: 1px solid #333;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__middle {
  padding: 48px 0;
  text-align: center;
  overflow: hidden;
}

.footer__big-logo {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 9vw;
  font-weight: 700;
  font-style: italic;
  color: #d9beff;
  line-height: 0.85;
  white-space: nowrap;
  display: block;
  letter-spacing: -0.03em;
}

.footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__copy {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.footer__legal {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer__legal a {
  color: #fff;
  text-decoration: none;
  transition: color 0.15s;
}

.footer__legal a:hover {
  color: #fff;
}

.footer__legal-dot {
  color: #fff;
}

/* ===== Pricing Page ===== */
.pricing-hero {
  padding: 160px 24px 48px;
  text-align: center;
}

.pricing-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}

.pricing-hero__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
  color: #1A1A1A;
  margin-bottom: 16px;
  white-space: nowrap;
}

.pricing-hero__desc {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
}

.pricing {
  padding: 32px 24px 100px;
}

.pricing__inner {
  max-width: 1180px;
  margin: 0 auto;
}

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

.pricing__card {
  background: #ffffeb;
  border: 4px solid #e5e5d0;
  border-radius: 32px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing__card:nth-child(2),
.pricing__card:nth-child(3) {
  background: #fffcf8;
  border-color: #1b1a1b;
}

.pricing__card--featured {
  box-shadow: none;
}

.pricing__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1A1A1A;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing__card-header {
  margin-bottom: 24px;
}

.pricing__card-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 14px;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.pricing__card-name {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 28.6px;
  letter-spacing: 0px;
  color: #1A1A1A;
  margin-bottom: 8px;
  white-space: nowrap;
}

.pricing__card-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #666;
}

.pricing__card-price {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
}

.pricing__card-oldprice {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #aaa;
  letter-spacing: -0.5px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-left: 12px;
  order: 1;
}

.pricing__card-amount {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 45.6px;
  letter-spacing: -1.4px;
  color: #1A1A1A;
}

.pricing__card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing__card-features li {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
  list-style: none;
}

.pricing__card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 6px;
  height: 10px;
  border-right: 1.5px solid #1A1A1A;
  border-bottom: 1.5px solid #1A1A1A;
  transform: rotate(45deg);
}

.pricing__card-hint {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #999;
  font-style: italic;
  margin-bottom: 24px;
}

.pricing__card-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid #1A1A1A;
  transition: transform 0.15s;
  cursor: pointer;
}

.pricing__card-btn:hover {
  transform: scale(0.97);
}

.pricing__card-btn--primary {
  background: #D8BFFF;
  color: #1A1A1A;
}

.pricing__card-btn--outline {
  background: #ffffeb;
  color: #1A1A1A;
}

.pricing__card-btn--secondary {
  background: #D8BFFF;
  color: #1A1A1A;
}

@media (max-width: 768px) {
  .pricing-hero__title {
    font-size: 36px;
    white-space: normal;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== 404 Page ===== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.error-page__center {
  text-align: center;
  max-width: 480px;
}

.error-page__icon {
  margin-bottom: 16px;
}

.error-page__mascot {
  width: 280px;
  height: auto;
}

.error-page__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.error-page__desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.error-page__btn {
  display: block;
  width: 100%;
  padding: 20px 36px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: #E8DAFE;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s;
}

.error-page__btn:hover {
  transform: scale(0.97);
}

.error-page__link {
  display: block;
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.15s;
}

.error-page__link:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .error-page__mascot {
    display: none;
  }
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #D8BFFF;
  border: 2px solid #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1A1A1A;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.15s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: scale(0.92);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__title {
    font-size: clamp(48px, 10vw, 80px);
    line-height: 0.9;
    letter-spacing: -3px;
  }
  .features__showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features__title {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .features__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  /* Navbar */
  .navbar {
    top: 12px;
  }
  .navbar__inner {
    height: 56px;
    padding: 0 6px 0 16px;
    border-radius: 10px;
  }
  .navbar__menu { display: none; }
  .navbar__divider { display: none; }
  .navbar__logo {
    font-size: 20px;
    margin-right: auto;
  }
  .navbar__btn-accent {
    width: auto;
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 10px;
    border: 2px solid #1A1A1A;
  }
  .navbar__burger {
    display: flex;
    margin-left: 4px;
  }
  .navbar.menu-open .navbar__inner {
    border-radius: 10px 10px 0 0;
  }

  /* Hero */
  .hero {
    padding: 120px 24px 40px;
    min-height: 100svh;
  }
  .hero__title {
    font-size: 56px;
    line-height: 0.92;
    letter-spacing: -2px;
    margin-bottom: 32px;
    flex-direction: column;
    gap: 4px;
  }
  .hero__subtitle {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 36px;
  }
  .hero__subtitle br { display: none; }
  .hero__cta-btn {
    padding: 18px 32px;
    font-size: 16px;
    width: 100%;
    border-radius: 12px;
  }
  .hero__note {
    font-size: 14px;
    margin-top: 16px;
  }

  /* Capsule */
  .hero__capsule-wrap {
    bottom: 10%;
  }
  .hero__capsule {
    width: 150px;
    height: 60px;
  }
  .hero__capsule-word {
    font-size: 18px;
  }
  .hero__capsule-result {
    top: -48px;
    padding: 6px 14px;
    gap: 5px;
  }
  .hero__capsule-result-text {
    font-size: 13px;
  }
  .hero__capsule-check {
    width: 14px;
    height: 14px;
  }

  /* Ribbons */
  .hero__ribbon-en {
    right: calc(50% - 55px);
    bottom: 10%;
  }
  .hero__ribbon-ru {
    left: calc(50% + 20px);
    bottom: 10%;
  }
  .hero__ribbon-en-track span,
  .hero__ribbon-ru-track span {
    font-size: 18px;
  }

  /* Features */
  .features-illustration-wrap {
    display: none;
  }
  .features {
    padding: 48px 16px 16px;
    border-radius: 32px;
  }
  .features__showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
  }
  .features__desc-heading {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }
  .features__desc-text {
    font-size: 18px;
  }
  .features__cta-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
  }
  .features__title {
    font-size: 56px;
    line-height: 52px;
    letter-spacing: -1.7px;
    align-items: flex-start;
  }
  .features__cta-btn {
    align-self: flex-start;
  }
  .features__card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .features__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Marketplace */
  .marketplace {
    padding: 64px 16px;
  }
  .marketplace__title {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -2px;
  }
  /* Audience */
  .audience__illustration {
    display: none;
  }
  .audience {
    padding: 48px 16px;
    border-radius: 32px;
  }
  .audience__showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .audience__title {
    font-size: 56px;
    line-height: 47.6px;
    letter-spacing: -1.7px;
  }
  .audience__card-title {
    font-size: 28px;
    line-height: 30px;
    letter-spacing: 0px;
  }
  .audience__card-desc {
    font-size: 18px;
    line-height: 23.4px;
    letter-spacing: 0px;
  }
  .audience__cta-btn {
    width: 100%;
  }

  /* How it works */
  .howitworks {
    padding: 64px 16px;
  }
  .howitworks__title {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -2px;
  }
  .howitworks__step {
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
  }
  .howitworks__step-number {
    font-size: 36px;
  }
  .howitworks__step-title {
    font-size: 24px;
  }
  .howitworks__step-desc {
    font-size: 16px;
  }

  /* Result value */
  .result-value {
    padding: 64px 16px;
  }
  .result-value__illustration {
    display: none;
  }
  .result-value__title {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -2px;
  }

  /* Report */
  .report {
    padding: 64px 16px;
  }
  .report__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .report__text {
    padding-right: 0;
  }
  .report__preview {
    margin-right: -16px;
  }
  .report__image {
    border-radius: 16px 0 0 16px;
  }
  .report__title {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -2px;
  }
  .report__cta-btn {
    width: 100%;
  }
  .result-value__footnote {
    white-space: normal;
    font-size: 14px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 48px 16px 64px;
  }
  .cta-banner__card {
    padding: 40px 24px;
    border-radius: 20px;
  }
  .cta-banner__illustration {
    display: none;
  }
  .cta-banner__title {
    font-size: 32px;
    line-height: 30px;
    letter-spacing: -1px;
  }
  .cta-banner__buttons {
    flex-direction: column;
  }
  .cta-banner__btn {
    width: 100%;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__nav-col:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__nav-col:last-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__middle {
    text-align: left;
    padding-left: 4px;
  }
  .footer__big-logo {
    font-size: 15vw;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer__bottom-left {
    align-items: flex-start;
  }

  .marketplace__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .marketplace__col {
    gap: 10px;
  }
  .marketplace__col + .marketplace__col {
    margin-top: 10px;
  }
  .marketplace__card {
    height: auto;
    padding: 20px 24px;
    border-width: 3px;
    border-radius: 20px;
  }
  .marketplace__cta-btn {
    width: 100%;
  }
}

/* ===== Order Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: flex-start;
  padding: 48px 24px 24px;
  overflow-y: auto;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: #FFFCF5;
  border-radius: 28px;
  max-width: 640px;
  width: 100%;
  padding: 36px 48px 48px;
  position: relative;
  overflow: visible;
  margin: auto;
  flex-shrink: 0;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #1A1A1A;
  line-height: 1;
}
.modal__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  line-height: 52.8px;
  letter-spacing: -1.4px;
  color: #1A1A1A;
  margin-bottom: 24px;
  text-align: center;
}
.modal__desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 28px;
  text-align: center;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal__label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
}
.modal__req {
  color: #1A1A1A;
}
.modal__input {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  padding: 18px 20px;
  border: 3px solid #1A1A1A;
  width: 100%;
  border-radius: 16px;
  outline: none;
  color: #1A1A1A;
  background: #FFFCF5;
  transition: border-color 0.2s;
}
.modal__input:focus {
  border-color: #1A1A1A;
}
.modal__input::placeholder {
  color: #bbb;
}
.modal__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.modal__textarea {
  min-height: 100px;
  resize: vertical;
}
.modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  line-height: 1.4;
  cursor: pointer;
}
.modal__checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  border: 2px solid #1A1A1A;
  border-radius: 4px;
  background: #FFFCF5;
  cursor: pointer;
  position: relative;
}
.modal__checkbox input[type="checkbox"]:checked {
  background: #d9beff;
}
.modal__checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #1A1A1A;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.modal__error {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #e04040;
  margin-top: -2px;
  display: none;
}
.modal__field--error .modal__input {
  border-color: #e04040;
}
.modal__field--error .modal__error {
  display: block;
}
.modal__result {
  text-align: center;
  padding: 24px 16px;
}
.modal__result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d9beff;
  font-size: 24px;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.modal__result--error .modal__result-icon {
  background: #ffebee;
  color: #e04040;
}
.modal__result-title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #1A1A1A;
}
.modal__result-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 16px;
}
.modal__result-note {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #999;
  border-top: 1px solid #e5e5d0;
  padding-top: 16px;
  margin-top: 4px;
}
.modal__result--error .modal__result-desc {
  color: #e04040;
}
.modal__result--error .modal__result-desc a {
  color: #1A1A1A;
  text-decoration: underline;
}
.modal__privacy-link {
  color: #1A1A1A;
  text-decoration: underline;
}
.modal__privacy-link:hover {
  text-decoration: underline;
}
.modal__submit {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  background: #d9beff;
  border: 2px solid #1A1A1A;
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.modal__submit:hover {
  background: #c9a8f0;
}

/* Work status bubble (sits on top edge of modal) */
.modal__work-status {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%) rotate(-3deg);
  border-radius: 100px;
  padding: 7px 18px 7px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 2;
  border: 2px solid #1A1A1A;
  border-top-width: 0;
  box-shadow: 0 1px 0 0 #1A1A1A;
}
.modal__work-status--online {
  background: #024e47;
}
.modal__work-status--offline {
  background: #ff6c4a;
}
.modal__work-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1A1A1A;
  flex-shrink: 0;
  position: relative;
  margin-left: 0;
}
.modal__work-status__dot::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 0; }
}
.modal__work-status__text {
  font-size: 12px;
  font-weight: 600;
  color: #1A1A1A;
}
.modal__work-status--online .modal__work-status__text {
  color: #fff;
}
.modal__work-status--online .modal__work-status__dot {
  background: #fff;
}
.modal__work-status--online .modal__work-status__dot::after {
  background: rgba(255, 255, 255, 0.3);
}
.modal__work-status__icon {
  font-size: 14px;
  line-height: 1;
  line-height: 1;
}
.modal__schedule {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 8px;
}
.modal__telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #2AABEE;
  border: 2px solid #1A1A1A;
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  text-decoration: none;
}
.modal__telegram:hover {
  background: #229ED9;
}
.modal__telegram svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .modal {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .modal__title {
    font-size: 36px;
    line-height: 40px;
  }
  .modal__input {
    padding: 12px 16px;
  }
  .modal__submit {
    padding: 14px;
  }
}

/* ===== Blog ===== */
.blog-hero {
  background: #1A1A1A;
  padding: 160px 24px 80px;
  text-align: center;
}
.blog-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.blog-hero__label {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: #999;
  margin-bottom: 12px;
}
.blog-hero__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -4px;
  color: #FFFCF5;
  margin-bottom: 24px;
}
.blog-hero__desc {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #999;
  max-width: 560px;
  margin: 0 auto;
}

.blog {
  padding: 80px 24px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}
.blog__card {
  text-decoration: none;
  color: #1A1A1A;
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s;
}
.blog__card:hover {
  opacity: 0.8;
}
.blog__card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #1A1A1A;
  box-shadow: 3px 3px #000;
  margin-bottom: 16px;
  background: #e5e5d0;
}
.blog__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__card-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}
.blog__card-tag--razbor {
  background: #d9beff;
  color: #1A1A1A;
}
.blog__card-tag--zakon {
  background: #1A1A1A;
  color: #fff;
}
.blog__card-tag--marketplace {
  background: #e5e5d0;
  color: #1A1A1A;
}
.blog__card-tag--praktika {
  background: #FFFCF5;
  border: 1.5px solid #1A1A1A;
  color: #1A1A1A;
}
.blog__card-title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.blog__card-lead {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 12px;
}
.blog__card-meta {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #999;
}

@media (max-width: 700px) {
  .blog-hero {
    padding: 120px 16px 48px;
  }
  .blog-hero__title {
    font-size: 72px;
    letter-spacing: -2px;
  }
  .blog-hero__desc {
    font-size: 16px;
  }
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blog {
    padding: 48px 16px 80px;
  }
  .blog__card-title {
    font-size: 24px;
  }
}

/* ===== Article ===== */
.article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}


/* Header */
.article__header {
  max-width: none;
  margin-bottom: 40px;
}
.article__header .blog__card-tag {
  margin-bottom: 16px;
}
.article__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.article__lead {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 16px;
}
.article__meta {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #999;
}
.article__meta-dot {
  margin: 0 6px;
}

/* Cover */
.article__cover {
  max-width: none;
  margin-bottom: 48px;
}



/* Article body typography */
.article__body {
  max-width: 720px;
  margin: 0 auto;
}
.article__body a {
  color: #1A1A1A;
  text-decoration: underline;
  text-decoration-color: #1A1A1A;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s;
}
.article__body a:hover {
  opacity: 0.6;
}
.article__body h2 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #1A1A1A;
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid #e5e5d0;
}
.article__body h2:first-child,
.article__body section:first-child h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.article__body h3 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  color: #1A1A1A;
  margin: 32px 0 12px;
}
.article__body h4 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 28px 0 10px;
}
.article__body h5 {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 24px 0 8px;
}
.article__body h6 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin: 24px 0 8px;
}
.article__body p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
.article__body ul:not(.article__toc-inline-list),
.article__body ol {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 16px 24px;
  list-style: disc;
}
.article__body ol {
  list-style: decimal;
}
.article__body li {
  margin-bottom: 6px;
}
.article__body strong {
  font-weight: 600;
  color: #1A1A1A;
}

/* Inline TOC */
.article__toc-inline {
  margin-bottom: 48px;
}
.article__toc-inline-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.article__toc-inline-list {
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}
.article__toc-inline-list li {
  padding: 8px 0;
}
a.article__toc-inline-link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #1A1A1A;
  text-decoration: none;
  border-bottom: 1px dashed #ccc;
  transition: color 0.2s;
  padding-bottom: 2px;
}
a.article__toc-inline-link:hover {
  color: #666;
}

/* Images */
.article__image {
  border-radius: 20px;
  overflow: hidden;
  background: #e5e5d0;
  border: 4px solid #1A1A1A;
  box-shadow: 3px 3px #000;
}
.article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article__image--full {
  width: 100%;
  aspect-ratio: 21 / 9;
}
.article__image--wide {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.article__image--small {
  width: 280px;
  aspect-ratio: 4 / 3;
  float: right;
  margin: 0 0 16px 24px;
}
.article__image--half {
  width: 100%;
  aspect-ratio: 16 / 10;
}
.article__image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.article__figure {
  margin: 24px 0;
}
.article__figure--small {
  margin: 0;
}
.article__figcaption {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #999;
  margin-top: 8px;
  text-align: center;
}

/* Blockquote */
.article__quote {
  border: none;
  padding: 40px 48px;
  margin: 32px 0;
  background: #e5e5d0;
  border-radius: 16px;
  position: relative;
}
.article__quote p {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #1A1A1A;
  margin-bottom: 0;
}
.article__quote cite {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  color: #999;
  display: block;
  margin-top: 16px;
}

/* Blockquote — line variant */
.article__quote--line {
  border: none;
  background: none;
  border-radius: 0;
  padding: 0 0 0 32px;
  margin: 32px 0;
  border-left: 4px solid #1A1A1A;
  position: relative;
}
.article__quote--line p {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  color: #1A1A1A;
  margin-bottom: 0;
}

/* Sidenote — floats to the right margin outside article body */
.article__sidenote {
  float: right;
  clear: right;
  width: 200px;
  margin: 0 -240px 16px 24px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #c00;
}
.article__sidenote a {
  color: #c00;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.article__sidenote a:hover {
  opacity: 0.7;
}

/* Table */
.article__table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 2px solid #1A1A1A;
  border-radius: 12px;
}
.article__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  font-size: 15px;
}
.article__table th {
  background: #1A1A1A;
  color: #FFFCF5;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article__table td {
  padding: 14px 16px;
  border-top: 1px solid #e5e5d0;
  color: #333;
}
.article__table tr:hover td {
  background: rgba(217, 190, 255, 0.06);
}

/* Inline CTA */
.article__cta {
  background: #1A1A1A;
  border-radius: 20px;
  padding: 40px;
  margin: 48px 0;
  text-align: center;
}
.article__cta-title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #FFFCF5;
  margin-bottom: 8px;
}
.article__cta-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #999;
  margin-bottom: 24px;
}
.article__cta-btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  background: #d9beff;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.article__cta-btn:hover {
  background: #c9a8f0;
}

/* FAQ */
.article__faq {
  margin-top: 48px;
}
.article__faq-item {
  padding: 40px 0;
  border-top: 1px solid #e5e5d0;
}
.article__faq-item:last-child {
  border-bottom: 1px solid #e5e5d0;
}
.article__faq-q {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A1A;
  margin: 0 0 16px;
}
.article__faq-a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Article responsive */
@media (max-width: 700px) {
  .article {
    padding: 0 16px 64px;
  }
  .article__title {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .article__body h2 {
    font-size: 28px;
  }
  .article__body h3 {
    font-size: 22px;
  }
  .article__image--small {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }
  .article__image-pair {
    grid-template-columns: 1fr;
  }
  .article__cta {
    padding: 28px 20px;
  }
  .article__cta-form {
    flex-direction: column;
  }
  .article__quote {
    padding: 28px 24px;
  }
  .article__quote p {
    font-size: 18px;
  }
  .article__sidenote {
    float: none;
    width: auto;
    margin: 16px 0;
  }
  .article__quote--line p {
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .hero__title {
    font-size: clamp(32px, 10vw, 42px);
    letter-spacing: -1.5px;
  }
  .hero__capsule {
    width: 130px;
    height: 52px;
  }
  .hero__capsule-word {
    font-size: 16px;
  }
  .features__title {
    font-size: 48px;
    line-height: 42px;
    letter-spacing: -1.5px;
  }
  .features__card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
