:root {
  --bg: #f3efef;
  --bg-soft: #fbf7f6;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-dark: #26161a;
  --text: #23181c;
  --muted: #6d5a5f;
  --line: rgba(41, 22, 27, 0.1);
  --accent: #9f1d2e;
  --accent-strong: #6f0f1e;
  --accent-soft: rgba(159, 29, 46, 0.14);
  --shadow-lg: 0 22px 70px rgba(60, 20, 29, 0.14);
  --shadow-md: 0 16px 40px rgba(60, 20, 29, 0.1);
  --shadow-sm: 0 10px 24px rgba(60, 20, 29, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 220ms ease;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(159, 29, 46, 0.1), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(54, 24, 30, 0.08), transparent 22%),
    linear-gradient(180deg, #faf7f6 0%, #efe7e5 100%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(243, 239, 239, 0.78);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(251, 247, 246, 0.9);
  border-color: rgba(41, 22, 27, 0.08);
  box-shadow: 0 8px 28px rgba(60, 20, 29, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 48px;
}

.brand-logo {
  display: block;
  width: clamp(148px, 15vw, 192px);
  height: auto;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #3b151e 0%, #9f1d2e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.brand-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.site-nav a,
.header-action,
.button {
  transition: transform var(--transition), color var(--transition), background var(--transition),
    border-color var(--transition), box-shadow var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.header-action {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: var(--shadow-sm);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: var(--shadow-sm);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(41, 22, 27, 0.12);
  color: var(--text);
}

.header-action:hover,
.button:hover,
.header-action:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(97, 23, 36, 0.18);
}

.hero {
  padding-top: 76px;
}

.hero-grid,
.about-grid,
.footer-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.eyebrow,
.section-tag,
.floating-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow,
.section-tag {
  color: var(--accent-strong);
  margin-bottom: 18px;
}

.hero h1,
.section-heading h2,
.cta-card h2 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
}

.hero-subtitle,
.about-card p,
.section-lead,
.cta-card p,
.cta-note,
.footer-description,
.footer-copy p,
.category-content p,
.marketplace-card p,
.benefit-card p,
.promo-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.03rem;
}

.hero-brand-panel {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 20px;
  margin-bottom: 22px;
  border-radius: 26px;
  border: 1px solid rgba(125, 32, 46, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 234, 233, 0.88) 100%);
  box-shadow: 0 18px 40px rgba(76, 24, 34, 0.12);
  overflow: hidden;
}

.hero-brand-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -44px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 29, 46, 0.14) 0%, transparent 68%);
}

.hero-brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 308px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(74, 20, 29, 0.08));
}

.hero-subtitle {
  max-width: 62ch;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-highlights {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-highlights li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #cf6675 100%);
  box-shadow: 0 0 0 5px rgba(159, 29, 46, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-card,
.about-card,
.stats-card,
.benefit-card,
.promo-card,
.marketplace-card,
.cta-card,
.footer-grid > div {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.main-panel {
  position: absolute;
  inset: 36px 34px 72px 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 30% 25%, rgba(159, 29, 46, 0.18), transparent 24%),
    radial-gradient(circle at 70% 65%, rgba(44, 20, 24, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 229, 227, 0.78) 100%);
  overflow: hidden;
}

.panel-line {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(159, 29, 46, 0.06), rgba(159, 29, 46, 0.28), rgba(159, 29, 46, 0.06));
}

.panel-line-1 {
  inset: 18% 16% auto 10%;
  height: 14px;
}

.panel-line-2 {
  inset: 34% 14% auto 24%;
  height: 14px;
}

.panel-line-3 {
  inset: 50% 18% auto 12%;
  height: 14px;
}

.pulse-orb {
  position: absolute;
  right: 16%;
  top: 18%;
  width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 29, 46, 0.22) 0%, rgba(159, 29, 46, 0.08) 48%, transparent 68%);
  animation: pulse 7s ease-in-out infinite;
}

.detail-cluster {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(41, 22, 27, 0.09);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.floating-card {
  position: absolute;
  width: min(280px, 72%);
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(38, 22, 26, 0.92);
  color: #f7edef;
  box-shadow: var(--shadow-lg);
}

.card-top {
  right: 0;
  top: 0;
}

.card-bottom {
  left: 0;
  bottom: 8px;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-lead {
  margin: 22px 0 0;
  max-width: 62ch;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.about-card,
.stats-card,
.cta-card,
.footer-grid > div {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.stats-card {
  display: grid;
  gap: 20px;
  align-content: start;
}

.stat-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-categories {
  position: relative;
}

.section-categories::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 300px;
  background: radial-gradient(circle at center, rgba(159, 29, 46, 0.1), transparent 60%);
  pointer-events: none;
}

.categories-overview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.categories-heading {
  margin-bottom: 0;
}

.categories-summary {
  border-radius: var(--radius-xl);
  padding: 30px;
  color: #f7edef;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(178, 68, 83, 0.24), transparent 34%),
    linear-gradient(145deg, #41171f 0%, #6b1a2a 55%, #8f2435 100%);
  box-shadow: var(--shadow-lg);
}

.summary-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.categories-summary p {
  margin: 16px 0 0;
  color: rgba(250, 239, 241, 0.84);
  line-height: 1.72;
}

.benefits-grid,
.categories-grid,
.promo-grid,
.marketplaces-grid {
  display: grid;
  gap: 22px;
}

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

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

.category-card,
.benefit-card,
.marketplace-card {
  border-radius: var(--radius-lg);
}

.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 236, 235, 0.92) 100%);
  box-shadow: var(--shadow-md);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.category-card:hover,
.category-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(159, 29, 46, 0.2);
  box-shadow: 0 22px 54px rgba(60, 20, 29, 0.16);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 29, 46, 0.18), transparent);
}

.category-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(176, 70, 84, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(246, 239, 238, 0.92) 0%, rgba(233, 223, 222, 0.88) 100%);
  border-bottom: 1px solid rgba(41, 22, 27, 0.08);
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1);
  transition: transform 420ms ease, filter 420ms ease;
}

.category-card:hover .category-media img,
.category-card:focus-within .category-media img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.category-content {
  padding: 24px 24px 26px;
}

.category-content h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  line-height: 1.36;
}

.category-content p {
  margin: 0;
}

.benefit-card,
.marketplace-card {
  padding: 28px;
}

.benefit-icon,
.marketplace-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-weight: 800;
  color: var(--accent-strong);
  background: linear-gradient(145deg, rgba(159, 29, 46, 0.1) 0%, rgba(57, 24, 30, 0.08) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.benefit-card h3,
.promo-card h3,
.marketplace-card h3,
.footer-grid h3 {
  margin: 18px 0 12px;
  font-size: 1.25rem;
}

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

.promo-card {
  min-height: 290px;
  padding: 30px;
  border-radius: calc(var(--radius-xl) + 2px);
  overflow: hidden;
  isolation: isolate;
}

.promo-card::before,
.promo-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  z-index: -1;
}

.promo-card::before {
  width: 220px;
  height: 220px;
  right: -60px;
  top: -50px;
  background: rgba(222, 179, 186, 0.2);
}

.promo-card::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: -50px;
  background: rgba(126, 31, 44, 0.18);
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 240, 242, 0.16);
  border: 1px solid rgba(255, 220, 225, 0.24);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.promo-card h3,
.promo-card p {
  color: #fff;
}

.marketplaces-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.marketplace-card {
  display: flex;
  flex-direction: column;
}


.marketplace-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 52px;
  margin-bottom: 18px;
}

.marketplace-logo-image {
  display: block;
  width: 148px;
  max-width: 100%;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.marketplace-card p {
  margin-bottom: 24px;
}

.marketplace-card .button {
  margin-top: auto;
  align-self: start;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at left top, rgba(159, 29, 46, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 227, 225, 0.88) 100%);
}

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

.cta-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(41, 22, 27, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta-contact {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(43, 22, 27, 0.9);
  color: #f8eff1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.cta-contact:hover,
.cta-contact:focus-visible {
  transform: translateY(-2px);
  background: rgba(73, 23, 33, 0.96);
  box-shadow: 0 16px 28px rgba(60, 20, 29, 0.16);
}

.site-footer {
  padding-top: 24px;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 0.95fr;
}

.footer-contacts a {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.footer-contacts a:hover,
.footer-contacts a:focus-visible {
  color: var(--accent-strong);
}

/* human-touch overrides */
:root {
  --transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-lg: 0 26px 78px rgba(60, 20, 29, 0.15);
  --shadow-md: 0 18px 42px rgba(60, 20, 29, 0.1);
  --shadow-sm: 0 12px 26px rgba(60, 20, 29, 0.08);
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: min(760px, 72vh);
  background:
    radial-gradient(circle at 22% 24%, rgba(159, 29, 46, 0.12), transparent 34%),
    radial-gradient(circle at 68% 22%, rgba(176, 70, 84, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.page-shell > * {
  position: relative;
  z-index: 1;
}

.header-inner {
  gap: 26px;
}

.site-nav {
  gap: 26px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(159, 29, 46, 0.62), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-action,
.button,
.cta-contact,
.footer-contacts a {
  transition: transform var(--transition), color var(--transition), background var(--transition),
    border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.header-action:hover,
.button:hover,
.header-action:focus-visible,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(97, 23, 36, 0.18);
}

.header-action:active,
.button:active,
.cta-contact:active {
  transform: translateY(-1px) scale(0.985);
}

.hero {
  padding-top: 92px;
}

.hero-grid {
  align-items: start;
  gap: 42px;
}

.hero-copy {
  padding-top: 10px;
}

.eyebrow,
.section-tag {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(159, 29, 46, 0.06);
  border: 1px solid rgba(159, 29, 46, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.hero h1 {
  max-width: 11.3ch;
  line-height: 0.93;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 56ch;
  margin: 26px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.hero-highlights {
  gap: 14px;
  margin-top: 30px;
  max-width: 34rem;
}

.hero-highlights li {
  padding: 14px 16px 14px 42px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(247, 240, 239, 0.62) 100%);
  border: 1px solid rgba(159, 29, 46, 0.08);
  box-shadow: 0 14px 30px rgba(60, 20, 29, 0.05);
}

.hero-highlights li::before {
  top: 50%;
  transform: translateY(-50%);
}

.hero-visual {
  min-height: 584px;
  transform: translateY(8px);
}

.main-panel {
  inset: 44px 36px 78px 36px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 56px rgba(62, 22, 31, 0.12);
  transform: rotate(-1.2deg);
  transition: transform 700ms var(--transition), box-shadow 700ms var(--transition);
}

.hero-visual:hover .main-panel {
  transform: rotate(-0.25deg) translateY(-4px);
  box-shadow: 0 28px 64px rgba(62, 22, 31, 0.14);
}

.detail-chip {
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.detail-chip:nth-child(2) {
  transform: translateY(-4px);
}

.detail-chip:nth-child(3) {
  transform: translateY(4px);
}

.floating-card {
  transition: transform 520ms var(--transition), box-shadow var(--transition);
}

.card-top {
  right: 6px;
  top: 10px;
  transform: rotate(2.6deg);
}

.card-bottom {
  left: 6px;
  bottom: 2px;
  transform: rotate(-2.2deg);
}

.hero-visual:hover .card-top {
  transform: rotate(1.2deg) translateY(-8px);
}

.hero-visual:hover .card-bottom {
  transform: rotate(-1.1deg) translateY(-6px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.cta-card h2 {
  line-height: 1.02;
  text-wrap: balance;
}

.about-grid {
  gap: 30px;
}

.about-card,
.stats-card,
.cta-card,
.footer-grid > div {
  padding: 38px;
}

.about-card,
.stats-card,
.cta-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 239, 238, 0.88) 100%);
}

.about-card p {
  max-width: 64ch;
  line-height: 1.84;
}

.about-card:hover,
.stats-card:hover,
.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(60, 20, 29, 0.12);
}

.stats-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 235, 234, 0.88) 100%);
}

.stat-item {
  padding: 18px 0 20px;
}

.stat-item:nth-child(2) {
  padding-left: 10px;
}

.stat-item:nth-child(3) {
  padding-left: 18px;
}

.stat-value {
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.benefits-grid,
.marketplaces-grid {
  gap: 24px;
}

.benefit-card,
.marketplace-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 237, 236, 0.86) 100%);
  transition: transform 380ms var(--transition), box-shadow 380ms var(--transition),
    border-color 380ms var(--transition), background 380ms var(--transition);
}

.benefit-card::before,
.marketplace-card::before {
  content: "";
  position: absolute;
  inset: auto -46px -52px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 29, 46, 0.18) 0%, rgba(159, 29, 46, 0.04) 45%, transparent 70%);
  opacity: 0.8;
  transition: transform 480ms var(--transition), opacity 480ms var(--transition);
  pointer-events: none;
}

.benefit-card::after,
.marketplace-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.26), transparent 42%);
  pointer-events: none;
}

.benefit-card:nth-child(3n+2),
.marketplace-card:nth-child(2n) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 234, 233, 0.9) 100%);
}

.benefit-card:nth-child(3n+2)::before,
.marketplace-card:nth-child(2n)::before {
  inset: -30px auto auto -34px;
  background: radial-gradient(circle, rgba(111, 15, 30, 0.14) 0%, transparent 72%);
}

.benefit-card:nth-child(3n+3)::before {
  background: radial-gradient(circle, rgba(176, 70, 84, 0.16) 0%, transparent 72%);
}

.benefit-card:hover,
.benefit-card:focus-within,
.marketplace-card:hover,
.marketplace-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(159, 29, 46, 0.16);
  box-shadow: 0 24px 56px rgba(60, 20, 29, 0.14);
}

.benefit-card:hover::before,
.marketplace-card:hover::before,
.benefit-card:focus-within::before,
.marketplace-card:focus-within::before {
  transform: scale(1.08);
  opacity: 1;
}

.benefit-icon {
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.benefit-card:nth-child(3n+1) .benefit-icon {
  background: linear-gradient(145deg, rgba(159, 29, 46, 0.12) 0%, rgba(77, 27, 35, 0.08) 100%);
}

.benefit-card:nth-child(3n+2) .benefit-icon {
  background: linear-gradient(145deg, rgba(176, 70, 84, 0.13) 0%, rgba(95, 20, 33, 0.08) 100%);
}

.benefit-card:nth-child(3n+3) .benefit-icon {
  background: linear-gradient(145deg, rgba(111, 15, 30, 0.14) 0%, rgba(41, 22, 27, 0.08) 100%);
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px rgba(159, 29, 46, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.benefit-card h3,
.footer-grid h3 {
  margin: 18px 0 10px;
}

.benefit-card p,
.marketplace-card p {
  margin: 0;
  line-height: 1.76;
}

.marketplace-logo {
  min-height: 56px;
  margin-bottom: 20px;
}

.marketplace-logo-image {
  filter: drop-shadow(0 8px 18px rgba(60, 20, 29, 0.06));
}

.marketplace-card .button {
  margin-top: 22px;
}

.cta-card {
  gap: 32px;
  background:
    radial-gradient(circle at left top, rgba(159, 29, 46, 0.16), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(176, 70, 84, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 231, 229, 0.9) 100%);
}

.cta-note {
  margin-top: 20px;
  line-height: 1.72;
}

.cta-contact {
  min-height: 48px;
  padding: 0 20px;
}

.footer-description,
.footer-copy p {
  line-height: 1.78;
}

.footer-contacts a:hover,
.footer-contacts a:focus-visible {
  color: var(--accent-strong);
  transform: translateX(3px);
}

.reveal {
  animation: subtleRise 780ms var(--transition) both;
}

.benefits-grid .benefit-card:nth-child(2),
.marketplaces-grid .marketplace-card:nth-child(2) {
  animation-delay: 80ms;
}

.benefits-grid .benefit-card:nth-child(3),
.marketplaces-grid .marketplace-card:nth-child(3) {
  animation-delay: 140ms;
}

.benefits-grid .benefit-card:nth-child(4),
.marketplaces-grid .marketplace-card:nth-child(4) {
  animation-delay: 200ms;
}

.benefits-grid .benefit-card:nth-child(5) {
  animation-delay: 260ms;
}

.benefits-grid .benefit-card:nth-child(6) {
  animation-delay: 320ms;
}

.benefits-grid .benefit-card:nth-child(7) {
  animation-delay: 380ms;
}

@keyframes subtleRise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .main-panel,
  .floating-card,
  .benefit-card,
  .marketplace-card,
  .about-card,
  .stats-card,
  .cta-card,
  .header-action,
  .button,
  .cta-contact {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 78px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    transform: none;
  }

  .main-panel,
  .card-top,
  .card-bottom {
    transform: none;
  }

  .stat-item:nth-child(2),
  .stat-item:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 780px) {
  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-highlights li {
    padding: 12px 14px 12px 38px;
  }

  .about-card,
  .stats-card,
  .cta-card,
  .footer-grid > div {
    padding: 28px;
  }

  .detail-chip:nth-child(2),
  .detail-chip:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 540px) {
  .eyebrow,
  .section-tag {
    padding: 9px 13px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-highlights {
    max-width: none;
  }
}
/* end human-touch overrides */

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .categories-overview,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid,
  .benefits-grid,
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-visual {
    min-height: 460px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: auto;
  }

  .section {
    padding: 82px 0;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .brand-logo {
    width: 164px;
  }

  .hero-brand-panel {
    padding: 12px 16px;
    margin-bottom: 18px;
  }

  .hero-brand-logo {
    width: min(100%, 250px);
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 380px;
  }

  .main-panel {
    inset: 22px 14px 54px 14px;
  }

  .floating-card {
    width: min(240px, 78%);
    padding: 16px 18px;
  }

  .benefits-grid,
  .categories-grid,
  .promo-grid,
  .marketplaces-grid {
    grid-template-columns: 1fr;
  }

  .about-card,
  .stats-card,
  .categories-summary,
  .benefit-card,
  .marketplace-card,
  .promo-card,
  .cta-card,
  .footer-grid > div {
    padding: 24px;
  }

  .category-content {
    padding: 22px 22px 24px;
  }

  .cta-card {
    align-items: stretch;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .brand-logo {
    width: 146px;
  }

  .hero-brand-panel {
    width: 100%;
    padding: 12px 14px;
  }

  .hero-brand-logo {
    width: min(100%, 220px);
  }

  .hero-actions,
  .cta-actions,
  .cta-contacts {
    flex-direction: column;
  }

  .button,
  .header-action,
  .cta-contact {
    width: 100%;
  }
}

/* premium-polish 20260323 start */
:root {
  --accent-deep: #5c0d1c;
  --accent-warm: #c24a5a;
  --surface-premium: rgba(255, 255, 255, 0.92);
  --text-soft: #5c4a4f;
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(159, 29, 46, 0.14), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(79, 24, 34, 0.08), transparent 20%),
    linear-gradient(180deg, #fcf8f7 0%, #efe6e4 46%, #f6efee 100%);
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 26%),
    radial-gradient(circle at 15% 0%, rgba(159, 29, 46, 0.05), transparent 32%);
  pointer-events: none;
  z-index: 0;
}

.site-header {
  background: rgba(248, 243, 242, 0.74);
  border-bottom-color: transparent;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 29, 46, 0.16), transparent);
  opacity: 0.8;
}

.site-header.is-scrolled {
  background: rgba(248, 243, 242, 0.92);
  border-bottom-color: rgba(92, 13, 28, 0.08);
  box-shadow: 0 16px 34px rgba(52, 17, 24, 0.08);
}

.header-inner {
  min-height: 88px;
  gap: 28px;
}

.brand {
  gap: 16px;
  min-height: 56px;
  flex-shrink: 0;
}

.brand-frame,
.footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 235, 233, 0.82));
  border: 1px solid rgba(159, 29, 46, 0.08);
  box-shadow: 0 16px 34px rgba(60, 20, 29, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.brand-logo {
  width: clamp(150px, 14vw, 194px);
}

.brand-note {
  display: grid;
  gap: 4px;
}

.brand-note-label,
.hero-brand-caption,
.footer-brand-note {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.brand-note-text {
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--text);
}

.site-nav {
  gap: 24px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(92, 13, 28, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
}

.header-action,
.button-primary {
  background: linear-gradient(140deg, #b2293c 0%, #6a0d1d 100%);
}

.header-action {
  padding: 0 24px;
  min-height: 50px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(92, 13, 28, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 10px 22px rgba(60, 20, 29, 0.06);
}

.header-action:hover,
.button:hover,
.header-action:focus-visible,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(97, 23, 36, 0.18);
}

.hero {
  padding-top: 108px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-brand-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 540px;
  padding: 18px 20px;
  margin-bottom: 26px;
  border-radius: 28px;
}

.hero-brand-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.hero-brand-detail {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  max-width: 32ch;
}

.eyebrow,
.section-tag {
  background: rgba(159, 29, 46, 0.07);
  border-color: rgba(159, 29, 46, 0.1);
}

.hero h1 {
  max-width: 10.9ch;
  font-size: clamp(3.2rem, 5.25vw, 5.95rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero-subtitle {
  max-width: 57ch;
  margin-top: 28px;
  font-size: 1.08rem;
  line-height: 1.84;
  color: var(--text-soft);
}

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

.hero-marketplaces {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-marketplaces span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(92, 13, 28, 0.08);
  box-shadow: 0 10px 22px rgba(60, 20, 29, 0.05);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-highlights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 100%;
}

.hero-highlights li {
  padding: 16px 18px 16px 46px;
  border-radius: 24px;
  line-height: 1.62;
}

.hero-highlights li:last-child {
  grid-column: 1 / -1;
  max-width: 28rem;
}

.hero-visual {
  min-height: 618px;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-tilt: 0deg;
  --hero-glow-x: 50%;
  --hero-glow-y: 38%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 4% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 74, 90, 0.18) 0%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.main-panel {
  inset: 34px 28px 92px 42px;
  border-radius: 42px;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(194, 74, 90, 0.18), transparent 22%),
    radial-gradient(circle at 78% 28%, rgba(92, 13, 28, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 229, 227, 0.86) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 58px rgba(52, 17, 24, 0.12);
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) rotate(calc(-1deg + var(--hero-tilt)));
}

.hero-core {
  position: absolute;
  inset: 24% 18% auto 18%;
  padding: 28px 28px 26px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(63, 19, 28, 0.97) 0%, rgba(145, 30, 46, 0.92) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 50px rgba(52, 17, 24, 0.22);
}

.hero-core::before {
  content: "";
  position: absolute;
  left: -26px;
  top: -26px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 68%);
}

.hero-core-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-core strong {
  display: block;
  margin-top: 14px;
  font-size: 1.56rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.hero-core p {
  margin: 12px 0 0;
  color: rgba(251, 239, 242, 0.82);
  line-height: 1.62;
}

.panel-line-1 {
  inset: 14% 14% auto 12%;
  height: 12px;
}

.panel-line-2 {
  inset: 48% 20% auto 10%;
  height: 12px;
}

.panel-line-3 {
  inset: 60% 18% auto 18%;
  height: 12px;
}

.pulse-orb {
  right: 11%;
  top: 12%;
  width: 190px;
  background: radial-gradient(circle, rgba(178, 49, 68, 0.28) 0%, rgba(159, 29, 46, 0.1) 52%, transparent 70%);
}

.detail-cluster {
  left: 10%;
  right: 10%;
  bottom: 11%;
  gap: 14px;
}

.detail-chip {
  min-height: 42px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.8);
}

.floating-card {
  width: min(294px, 74%);
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(155deg, rgba(34, 18, 22, 0.97) 0%, rgba(92, 19, 31, 0.94) 100%);
}

.card-top {
  right: 10px;
  top: 18px;
}

.card-bottom {
  left: 8px;
  bottom: 12px;
}

.section {
  padding: 116px 0;
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2.2rem, 3.55vw, 3.85rem);
  line-height: 1.03;
}

.about-card p,
.marketplace-card p,
.benefit-card p,
.footer-description,
.footer-copy p,
.cta-card p,
.cta-note {
  font-size: 1.04rem;
  line-height: 1.82;
}

.about-card,
.stats-card,
.cta-card,
.footer-grid > div {
  border-radius: 32px;
}

.marketplaces-grid {
  gap: 26px;
}

.marketplace-card {
  --market-accent: #9f1d2e;
  padding: 30px;
  border: 1px solid rgba(92, 13, 28, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 236, 235, 0.9) 100%);
}

.marketplace-card::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--market-accent), transparent);
  box-shadow: 0 12px 30px rgba(159, 29, 46, 0.18);
  opacity: 0.92;
}

.marketplace-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.76), transparent 22%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), transparent 38%);
  pointer-events: none;
}

.marketplace-card[data-marketplace="wildberries"] {
  --market-accent: #d31db6;
}

.marketplace-card[data-marketplace="ozon"] {
  --market-accent: #0466ff;
}

.marketplace-card[data-marketplace="yandex-market"] {
  --market-accent: #ffb000;
}

.marketplace-card[data-marketplace="avito"] {
  --market-accent: #11a76a;
}

.marketplace-card:hover,
.marketplace-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(60, 20, 29, 0.14);
}

.marketplace-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.marketplace-badge {
  min-width: 54px;
  width: auto;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--market-accent) 0%, rgba(60, 20, 29, 0.96) 100%);
  box-shadow: 0 14px 26px rgba(60, 20, 29, 0.14);
  transition: transform var(--transition), box-shadow var(--transition);
}

.marketplace-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(159, 29, 46, 0.06);
  border: 1px solid rgba(92, 13, 28, 0.08);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marketplace-logo {
  min-height: 64px;
  margin-bottom: 18px;
  align-items: flex-end;
}

.marketplace-logo-image {
  width: 158px;
  height: 46px;
  transition: transform var(--transition), filter var(--transition);
}

.marketplace-card h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
  line-height: 1.18;
}

.marketplace-card p {
  color: var(--text-soft);
}

.marketplace-card .button {
  min-height: 46px;
  margin-top: 26px;
  padding: 0 20px;
}

.marketplace-card:hover .marketplace-badge,
.marketplace-card:focus-within .marketplace-badge {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(60, 20, 29, 0.18);
}

.marketplace-card:hover .marketplace-logo-image,
.marketplace-card:focus-within .marketplace-logo-image {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 24px rgba(60, 20, 29, 0.08));
}

.cta-card {
  gap: 36px;
  background:
    radial-gradient(circle at left top, rgba(159, 29, 46, 0.16), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(194, 74, 90, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 231, 229, 0.92) 100%);
}

.cta-card > div:first-child {
  max-width: 62ch;
}

.cta-note {
  margin-top: 22px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 240, 239, 0.74));
}

.cta-actions {
  min-width: 240px;
  justify-content: flex-end;
}

.cta-contact,
.footer-contacts a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 16px 18px;
  min-height: 78px;
  border-radius: 24px;
  line-height: 1.35;
}

.cta-contact::before,
.footer-contacts a::before {
  content: attr(data-label);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-contact {
  background: linear-gradient(160deg, rgba(40, 20, 24, 0.96) 0%, rgba(92, 19, 31, 0.94) 100%);
  color: #f8eff1;
}

.cta-contact::before {
  color: rgba(251, 239, 242, 0.64);
}

.footer-grid {
  gap: 24px;
}

.footer-brand,
.footer-contacts,
.footer-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 237, 236, 0.88));
}

.footer-brand-link {
  margin-bottom: 18px;
}

.footer-logo {
  width: min(100%, 210px);
  height: auto;
}

.footer-brand-note {
  display: inline-flex;
  margin: 0 0 14px;
}

.footer-description {
  margin: 0;
  max-width: 34ch;
}

.footer-contacts a {
  margin-top: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(92, 13, 28, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 22px rgba(60, 20, 29, 0.05);
}

.footer-contacts a::before {
  color: var(--accent-strong);
}

.footer-contacts a:hover,
.footer-contacts a:focus-visible {
  color: var(--text);
  transform: translateY(-3px);
}

.footer-copy p:first-of-type {
  color: var(--text-soft);
}

#footer-copy {
  margin-top: 18px;
  font-weight: 600;
  color: var(--text);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .brand-note {
    display: none;
  }

  .hero {
    padding-top: 82px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-highlights li:last-child {
    grid-column: auto;
    max-width: none;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 88px 0;
  }

  .header-inner {
    gap: 14px;
  }

  .brand-frame,
  .footer-logo-frame {
    padding: 12px 14px;
    border-radius: 20px;
  }

  .site-nav {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }

  .site-nav a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(92, 13, 28, 0.06);
  }

  .hero {
    padding-top: 60px;
  }

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

  .hero-brand-logo {
    width: min(100%, 220px);
  }

  .hero-visual {
    min-height: 458px;
  }

  .main-panel {
    inset: 20px 12px 68px 12px;
  }

  .hero-core {
    inset: 22% 12% auto 12%;
    padding: 24px;
  }

  .floating-card {
    width: min(236px, 82%);
    padding: 18px 20px;
  }

  .marketplace-card,
  .benefit-card,
  .about-card,
  .stats-card,
  .cta-card,
  .footer-grid > div {
    padding: 24px;
  }

  .cta-contact,
  .footer-contacts a {
    min-height: 74px;
  }
}

@media (max-width: 540px) {
  .brand-frame,
  .footer-logo-frame {
    padding: 10px 12px;
  }

  .header-action {
    width: auto;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .hero-marketplaces {
    gap: 8px;
  }

  .hero-marketplaces span {
    font-size: 0.8rem;
    padding: 0 12px;
  }

  .hero-core strong {
    font-size: 1.34rem;
  }

  .hero-core p {
    font-size: 0.94rem;
  }

  .marketplace-head {
    margin-bottom: 18px;
  }

  .marketplace-logo-image {
    width: 148px;
  }
}
/* premium-polish 20260323 end */

.footer-brand-note {
  display: block;
  max-width: 28ch;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: none;
}

/* cleanup-polish 20260323 start */
.hero-brand-panel,
.hero-marketplaces,
.marketplace-head,
.marketplace-badge,
.marketplace-kicker {
  display: none !important;
}

.hero-subtitle {
  margin-top: 22px;
}

.hero-highlights {
  margin-top: 28px;
}

.hero-visual {
  min-height: 540px;
}

.main-panel {
  inset: 24px 8px 84px 8px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-visual:hover .main-panel {
  box-shadow: none !important;
}

.hero-core {
  inset: 16% 16% auto 16%;
}

.detail-cluster {
  left: 12%;
  right: 12%;
  bottom: 10%;
}

.marketplace-card {
  padding-top: 28px;
}

.marketplace-logo {
  min-height: 58px;
  margin-bottom: 18px;
}

.marketplace-card p {
  margin-top: 0;
}

@media (max-width: 780px) {
  .hero-visual {
    min-height: 420px;
  }

  .main-panel {
    inset: 12px 0 62px 0;
  }

  .hero-core {
    inset: 18% 10% auto 10%;
  }
}

@media (max-width: 540px) {
  .hero-visual {
    min-height: 388px;
  }
}
/* cleanup-polish 20260323 end */

/* hero-refine 20260323 start */
.hero {
  padding-top: 98px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(36px, 4vw, 60px);
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  padding: 8px 0 12px;
}

.eyebrow {
  margin-bottom: 16px;
  padding: 9px 15px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 10.35ch;
  font-size: clamp(3.3rem, 5.15vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 51ch;
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.76;
}

.hero-actions {
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
}

.hero-actions .button-primary {
  box-shadow: 0 18px 36px rgba(97, 23, 36, 0.2);
}

.hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(92, 13, 28, 0.12);
}

.hero-highlights {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 35rem;
  margin-top: 26px;
}

.hero-highlights li {
  padding: 14px 18px 14px 42px;
  border-radius: 22px;
  line-height: 1.6;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(247, 239, 238, 0.66) 100%);
  box-shadow: 0 14px 30px rgba(60, 20, 29, 0.05);
}

.hero-highlights li:nth-child(2) {
  margin-left: 14px;
}

.hero-highlights li:nth-child(3) {
  margin-left: 28px;
  max-width: 31rem;
}

.hero-highlights li:last-child {
  grid-column: auto;
}

.hero-visual {
  min-height: 566px;
  padding: 20px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 22% 18%, rgba(194, 74, 90, 0.2), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(160deg, rgba(47, 18, 24, 0.97) 0%, rgba(95, 23, 35, 0.94) 54%, rgba(31, 15, 18, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 70px rgba(52, 17, 24, 0.18);
  overflow: hidden;
}

.hero-visual::before {
  inset: auto auto -52px -44px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(194, 74, 90, 0.22) 0%, transparent 72%);
  filter: blur(8px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.main-panel {
  inset: 0;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
}

.panel-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), rgba(194, 74, 90, 0.4), transparent);
}

.panel-line-1 {
  inset: 16% 18% auto 12%;
}

.panel-line-2 {
  inset: 54% 18% auto 30%;
}

.panel-line-3 {
  inset: 69% 22% auto 14%;
}

.pulse-orb {
  right: 12%;
  top: 18%;
  width: 152px;
  background: radial-gradient(circle, rgba(194, 74, 90, 0.28) 0%, rgba(159, 29, 46, 0.08) 48%, transparent 68%);
}

.hero-core {
  inset: 16% 18% auto 12%;
  max-width: 360px;
  padding: 30px 30px 28px;
  border-radius: 30px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 34%),
    linear-gradient(155deg, rgba(142, 31, 47, 0.88) 0%, rgba(56, 19, 27, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 56px rgba(15, 5, 7, 0.26);
  backdrop-filter: blur(10px);
}

.hero-core::before {
  left: auto;
  right: -28px;
  top: -24px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 72%);
}

.hero-core strong {
  margin-top: 12px;
  font-size: 1.62rem;
  line-height: 1.14;
  max-width: 13ch;
}

.hero-core p {
  margin-top: 12px;
  font-size: 0.98rem;
  color: rgba(251, 239, 242, 0.84);
}

.detail-cluster {
  left: 12%;
  right: 12%;
  bottom: 8%;
  gap: 10px;
}

.detail-chip {
  min-height: 40px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.floating-card {
  width: min(256px, 64%);
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 239, 238, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(18, 7, 10, 0.16);
}

.floating-label {
  color: var(--accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.floating-card strong {
  margin-top: 7px;
  font-size: 1rem;
  line-height: 1.42;
}

.card-top {
  right: 18px;
  top: 24px;
  transform: rotate(4deg);
}

.card-bottom {
  left: 18px;
  bottom: 22px;
  transform: rotate(-3deg);
}

.hero-visual:hover .card-top {
  transform: rotate(2deg) translateY(-6px);
}

.hero-visual:hover .card-bottom {
  transform: rotate(-1.5deg) translateY(-5px);
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 78px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-highlights li:nth-child(2),
  .hero-highlights li:nth-child(3) {
    margin-left: 0;
    max-width: none;
  }

  .hero-visual {
    min-height: 510px;
  }
}

@media (max-width: 780px) {
  .hero {
    padding-top: 58px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.8rem, 9.8vw, 4.2rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding: 0 20px;
  }

  .hero-highlights {
    gap: 10px;
  }

  .hero-highlights li {
    margin-left: 0 !important;
    max-width: none !important;
    padding: 13px 16px 13px 38px;
  }

  .hero-visual {
    min-height: 440px;
    padding: 18px;
  }

  .hero-visual::after {
    inset: 14px;
    border-radius: 26px;
  }

  .hero-core {
    inset: 18% 10% auto 10%;
    max-width: none;
    padding: 24px 22px;
  }

  .detail-cluster {
    left: 8%;
    right: 8%;
    bottom: 9%;
  }

  .floating-card {
    width: min(228px, 78%);
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 46px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-visual {
    min-height: 392px;
    padding: 14px;
    border-radius: 28px;
  }

  .hero-visual::after {
    inset: 12px;
    border-radius: 20px;
  }

  .hero-core {
    inset: 16% 8% auto 8%;
    padding: 22px 20px;
  }

  .hero-core strong {
    font-size: 1.36rem;
  }

  .hero-core p {
    font-size: 0.94rem;
  }

  .floating-card {
    width: min(210px, 76%);
    padding: 16px 18px;
  }

  .card-top {
    right: 10px;
    top: 14px;
  }

  .card-bottom {
    left: 10px;
    bottom: 14px;
  }
}
/* hero-refine 20260323 end */

/* live-polish 20260323 start */
.hero {
  position: relative;
  padding-top: 104px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(640px, 64vh);
  background:
    radial-gradient(circle at 14% 14%, rgba(159, 29, 46, 0.12), transparent 26%),
    radial-gradient(circle at 72% 18%, rgba(176, 70, 84, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.62fr);
  column-gap: clamp(28px, 4vw, 54px);
  row-gap: 0;
  align-items: start;
  max-width: none;
  padding: 22px 0 10px;
}

.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > .hero-subtitle,
.hero-copy > .hero-actions {
  grid-column: 1;
}

.hero-copy > .hero-highlights {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(92, 13, 28, 0.1);
  max-width: none;
}

.eyebrow {
  margin-bottom: 14px;
  padding: 9px 15px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.45rem, 5.35vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 54ch;
  margin-top: 22px;
  font-size: 1.05rem;
  line-height: 1.76;
}

.hero-actions {
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .button {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
}

.hero-actions .button-primary {
  box-shadow: 0 20px 40px rgba(97, 23, 36, 0.2);
}

.hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(92, 13, 28, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 14px 28px rgba(60, 20, 29, 0.08);
}

.hero-highlights {
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-highlights li {
  padding: 16px 18px 16px 42px;
  border-radius: 22px;
  line-height: 1.58;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(247, 239, 238, 0.68) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(60, 20, 29, 0.06);
}

.hero-highlights li:nth-child(2) {
  transform: translateX(8px);
}

.hero-highlights li:nth-child(3) {
  transform: translateX(16px);
}

.site-header {
  background: rgba(249, 244, 243, 0.78);
}

.site-header.is-scrolled {
  background: rgba(249, 244, 243, 0.94);
  box-shadow: 0 18px 36px rgba(52, 17, 24, 0.08);
}

.header-inner {
  min-height: 90px;
  gap: 30px;
}

.site-nav {
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.62);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(159, 29, 46, 0.05);
}

.header-action {
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(97, 23, 36, 0.16);
}

.about-card p,
.marketplace-card p,
.benefit-card p,
.footer-description,
.footer-copy p,
.cta-card p,
.cta-note {
  line-height: 1.78;
}

.marketplace-card,
.benefit-card,
.about-card,
.stats-card,
.cta-card,
.footer-grid > div {
  box-shadow: 0 20px 46px rgba(60, 20, 29, 0.08);
}

.marketplace-card {
  padding: 30px;
  border-radius: 30px;
}

.marketplace-card:hover,
.marketplace-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(60, 20, 29, 0.12);
}

.marketplace-card .button {
  min-height: 48px;
  border-radius: 14px;
}

.marketplace-logo-image {
  filter: drop-shadow(0 10px 20px rgba(60, 20, 29, 0.06));
}

.benefit-card:hover,
.benefit-card:focus-within,
.about-card:hover,
.stats-card:hover,
.cta-card:hover {
  transform: translateY(-4px);
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 82px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .hero-copy > .hero-highlights {
    grid-column: 1;
    grid-row: auto;
    margin-top: 26px;
    padding-left: 0;
    border-left: none;
    max-width: 34rem;
  }

  .hero-highlights li:nth-child(2),
  .hero-highlights li:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 780px) {
  .hero {
    padding-top: 62px;
  }

  .hero-copy {
    padding: 14px 0 4px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.85rem, 9.8vw, 4.35rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 0 22px;
  }

  .hero-highlights li {
    transform: none !important;
    padding: 14px 16px 14px 38px;
  }

  .header-inner {
    gap: 16px;
  }

  .site-nav {
    padding: 0;
    background: none;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 48px;
  }

  .hero-copy > .hero-highlights {
    margin-top: 22px;
  }

  .hero-highlights li {
    padding: 13px 14px 13px 36px;
    border-radius: 20px;
  }
}
/* live-polish 20260323 end */

/* hero-premium 20260323 start */
.hero {
  position: relative;
  padding-top: 110px;
  padding-bottom: 20px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(680px, 68vh);
  background:
    radial-gradient(circle at 12% 14%, rgba(159, 29, 46, 0.14), transparent 24%),
    radial-gradient(circle at 74% 16%, rgba(176, 70, 84, 0.09), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, transparent 74%);
  pointer-events: none;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 82px;
  width: min(28vw, 360px);
  height: min(28vw, 360px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 29, 46, 0.09) 0%, rgba(159, 29, 46, 0.04) 38%, transparent 72%);
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.62fr);
  column-gap: clamp(32px, 4.2vw, 58px);
  align-items: start;
  max-width: none;
  padding: 18px 0 10px;
}

.hero-brand-strip,
.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > .hero-subtitle,
.hero-copy > .hero-actions {
  grid-column: 1;
}

.hero-proof {
  grid-column: 2;
  grid-row: 1 / span 5;
  position: relative;
  align-self: center;
  padding: 22px 0 22px 28px;
}

.hero-proof::before {
  content: "";
  position: absolute;
  inset: 0 0 0 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(248, 241, 240, 0.48) 100%);
  border: 1px solid rgba(92, 13, 28, 0.06);
  box-shadow: 0 18px 34px rgba(60, 20, 29, 0.05);
  z-index: -1;
}

.hero-proof::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(159, 29, 46, 0.12), rgba(159, 29, 46, 0.54), rgba(159, 29, 46, 0.08));
}

.hero-brand-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 540px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 238, 237, 0.84) 100%);
  border: 1px solid rgba(92, 13, 28, 0.08);
  box-shadow: 0 18px 36px rgba(60, 20, 29, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-brand-logo-wrap {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 236, 235, 0.82) 100%);
  border: 1px solid rgba(92, 13, 28, 0.08);
  box-shadow: 0 12px 24px rgba(60, 20, 29, 0.06);
}

.hero-brand-logo {
  display: block;
  width: min(100%, 156px);
  height: auto;
}

.hero-brand-copy {
  display: grid;
  gap: 4px;
}

.hero-brand-name {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-brand-detail {
  max-width: 33ch;
  font-size: 0.98rem;
  line-height: 1.56;
  color: var(--text);
}

.eyebrow {
  margin-bottom: 16px;
  padding: 9px 15px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 10.6ch;
  font-size: clamp(3.25rem, 5.05vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 52ch;
  margin-top: 24px;
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.hero-actions {
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .button {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
}

.hero-actions .button-primary {
  box-shadow: 0 20px 40px rgba(97, 23, 36, 0.2);
}

.hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(92, 13, 28, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 14px 28px rgba(60, 20, 29, 0.08);
}

.hero-proof-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(159, 29, 46, 0.06);
  border: 1px solid rgba(92, 13, 28, 0.08);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-highlights {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.hero-highlights li {
  padding: 16px 18px 16px 42px;
  border-radius: 22px;
  line-height: 1.58;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 239, 238, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 32px rgba(60, 20, 29, 0.06);
}

.hero-highlights li:nth-child(2) {
  transform: translateX(8px);
}

.hero-highlights li:nth-child(3) {
  transform: translateX(16px);
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 84px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .hero-proof {
    grid-column: 1;
    grid-row: auto;
    margin-top: 26px;
    padding: 22px 0 0 0;
    max-width: 36rem;
  }

  .hero-proof::before {
    inset: 10px 0 0 0;
  }

  .hero-proof::after {
    display: none;
  }

  .hero-highlights li:nth-child(2),
  .hero-highlights li:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 780px) {
  .hero {
    padding-top: 62px;
    padding-bottom: 10px;
  }

  .hero-brand-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .hero-brand-logo {
    width: min(100%, 144px);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.85rem, 9.6vw, 4.25rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 0 22px;
  }

  .hero-proof {
    margin-top: 24px;
  }

  .hero-highlights li {
    transform: none !important;
    padding: 14px 16px 14px 38px;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 48px;
  }

  .hero-copy {
    padding: 10px 0 4px;
  }

  .hero-brand-strip {
    border-radius: 24px;
  }

  .hero-highlights li {
    padding: 13px 14px 13px 36px;
    border-radius: 20px;
  }
}
/* hero-premium 20260323 end */


/* hero-cleanup 20260323 start */
.hero {
  padding-top: 104px;
  padding-bottom: 28px;
}

.hero::before {
  height: min(620px, 62vh);
  background:
    radial-gradient(circle at 14% 18%, rgba(159, 29, 46, 0.13), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(176, 70, 84, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, transparent 74%);
}

.hero::after {
  right: 6%;
  top: 108px;
  width: min(26vw, 300px);
  height: min(26vw, 300px);
  background: radial-gradient(circle, rgba(159, 29, 46, 0.08) 0%, rgba(159, 29, 46, 0.04) 44%, transparent 76%);
  filter: blur(18px);
}

.hero-brand-strip,
.hero-proof,
.hero-copy > .eyebrow {
  display: none !important;
}

.hero-grid {
  display: block;
}

.hero-copy {
  display: block;
  max-width: 760px;
  padding: 38px 0 20px;
}

.hero h1 {
  max-width: 8.6ch;
  font-size: clamp(3.3rem, 5.7vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 45ch;
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .button {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
}

.hero-actions .button-primary {
  box-shadow: 0 18px 34px rgba(97, 23, 36, 0.18);
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(97, 23, 36, 0.22);
}

.hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(92, 13, 28, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 12px 24px rgba(60, 20, 29, 0.08);
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(92, 13, 28, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 16px 28px rgba(60, 20, 29, 0.1);
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 84px;
  }

  .hero-copy {
    max-width: 700px;
    padding-top: 28px;
  }

  .hero h1 {
    max-width: 9.1ch;
    font-size: clamp(3rem, 7vw, 4.9rem);
  }
}

@media (max-width: 780px) {
  .hero {
    padding-top: 64px;
    padding-bottom: 14px;
  }

  .hero::after {
    right: -10%;
    top: 136px;
    width: 220px;
    height: 220px;
  }

  .hero-copy {
    max-width: none;
    padding: 22px 0 10px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.75rem, 10vw, 4.2rem);
  }

  .hero-subtitle {
    max-width: none;
    font-size: 1rem;
    line-height: 1.72;
  }

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

  .hero-actions .button {
    min-height: 52px;
    padding: 0 22px;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 48px;
  }

  .hero-copy {
    padding-top: 16px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.65rem);
  }
}
/* hero-cleanup 20260323 end */


/* footer-contact-refresh 20260323 start */
.footer-grid {
  align-items: stretch;
  gap: 26px;
}

.footer-brand,
.footer-contacts,
.footer-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-contacts h3 {
  margin-bottom: 18px;
}

.footer-contact-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 238, 237, 0.9) 100%);
  border: 1px solid rgba(92, 13, 28, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 34px rgba(60, 20, 29, 0.06);
}

.footer-contact-intro {
  margin: 0;
  max-width: 24ch;
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.footer-contacts a.footer-contact-mail {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(92, 13, 28, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 12px 24px rgba(60, 20, 29, 0.06);
}

.footer-contacts a.footer-contact-mail::before {
  content: none;
}

.footer-contacts a.footer-contact-mail:hover,
.footer-contacts a.footer-contact-mail:focus-visible {
  color: var(--accent-strong);
  border-color: rgba(92, 13, 28, 0.18);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 16px 28px rgba(60, 20, 29, 0.08);
}

@media (max-width: 780px) {
  .footer-contact-card {
    padding: 20px;
    border-radius: 24px;
  }

  .footer-contact-intro {
    max-width: none;
  }
}
/* footer-contact-refresh 20260323 end */


/* global-polish 20260323 start */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(159, 29, 46, 0.12), transparent 22%),
    radial-gradient(circle at 88% 6%, rgba(92, 13, 28, 0.07), transparent 18%),
    linear-gradient(180deg, #fbf8f7 0%, #f5eeec 38%, #efe6e4 100%);
}

.container {
  width: min(calc(100% - 40px), 1160px);
}

.section {
  position: relative;
  padding: clamp(90px, 8vw, 112px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-tag {
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(159, 29, 46, 0.06);
  border: 1px solid rgba(92, 13, 28, 0.08);
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}

.section-heading h2,
.cta-card h2 {
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.site-header {
  background: rgba(249, 245, 244, 0.82);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  background: rgba(251, 248, 247, 0.94);
  box-shadow: 0 18px 34px rgba(52, 17, 24, 0.08);
}

.header-inner {
  min-height: 86px;
  gap: 24px;
}

.brand-frame,
.footer-logo-frame {
  padding: 12px 16px;
  border-radius: 22px;
}

.brand-note {
  gap: 3px;
}

.brand-note-text {
  max-width: 24ch;
  font-size: 0.9rem;
  line-height: 1.42;
}

.site-nav {
  flex: 1;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  padding: 10px 16px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  line-height: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(159, 29, 46, 0.06);
}

.header-action,
.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 700;
}

.button-primary,
.header-action {
  box-shadow: 0 18px 36px rgba(97, 23, 36, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(92, 13, 28, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 24px rgba(60, 20, 29, 0.06);
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-2px);
}

.hero {
  padding-top: clamp(92px, 9vw, 112px);
  padding-bottom: 40px;
}

.hero::before {
  height: min(560px, 58vh);
  background:
    radial-gradient(circle at 16% 14%, rgba(159, 29, 46, 0.14), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(176, 70, 84, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 76%);
}

.hero::after {
  right: 2%;
  top: 112px;
  width: clamp(220px, 26vw, 320px);
  height: clamp(220px, 26vw, 320px);
  background: radial-gradient(circle, rgba(159, 29, 46, 0.08) 0%, rgba(159, 29, 46, 0.03) 48%, transparent 74%);
  filter: blur(22px);
}

.hero-grid {
  display: block;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  padding: 40px 0 16px;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(159, 29, 46, 0.94), rgba(159, 29, 46, 0.12));
  box-shadow: 0 10px 20px rgba(159, 29, 46, 0.14);
}

.hero h1 {
  max-width: 8.8ch;
  font-size: clamp(3.2rem, 5.45vw, 5.65rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.hero-subtitle {
  max-width: 46ch;
  margin-top: 26px;
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--muted);
}

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

.about-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 26px;
  align-items: stretch;
}

.about-card,
.stats-card,
.benefit-card,
.marketplace-card,
.cta-card,
.footer-grid > div {
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(92, 13, 28, 0.08);
  box-shadow: 0 20px 44px rgba(60, 20, 29, 0.08);
}

.about-card,
.stats-card,
.cta-card,
.footer-grid > div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 237, 236, 0.9) 100%);
}

.about-card p,
.marketplace-card p,
.benefit-card p,
.footer-description,
.footer-copy p,
.cta-card p,
.cta-note {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
}

.about-card:hover,
.stats-card:hover,
.cta-card:hover,
.benefit-card:hover,
.benefit-card:focus-within,
.marketplace-card:hover,
.marketplace-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(60, 20, 29, 0.12);
}

.stats-card {
  gap: 0;
}

.stat-item,
.stat-item:nth-child(2),
.stat-item:nth-child(3) {
  padding: 18px 0;
}

.stat-value {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.stat-label {
  line-height: 1.6;
  color: var(--muted);
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 28px 30px;
}

.benefit-card::before,
.marketplace-card::before {
  width: 124px;
  height: 124px;
  inset: auto -28px -34px auto;
  opacity: 0.62;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 0.96rem;
}

.benefit-card h3,
.marketplace-card h3,
.footer-grid h3 {
  margin: 18px 0 12px;
  line-height: 1.24;
}

.marketplaces-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.marketplace-card {
  min-height: 100%;
  padding: 28px;
}

.marketplace-logo {
  min-height: 58px;
  margin-bottom: 18px;
}

.marketplace-logo-image {
  max-width: 156px;
  height: 42px;
}

.marketplace-card p {
  margin-bottom: 22px;
}

.marketplace-card .button {
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 16px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 36px;
}

.cta-card > div:first-child {
  max-width: 62ch;
}

.cta-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
}

.cta-contacts {
  gap: 10px;
  margin-top: 20px;
}

.cta-contact {
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 20px;
  box-shadow: 0 16px 28px rgba(60, 20, 29, 0.12);
}

.cta-actions {
  min-width: 0;
  align-self: center;
  justify-content: flex-end;
}

.site-footer {
  padding-top: 10px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.9fr) minmax(0, 0.96fr);
  align-items: stretch;
  gap: 22px;
}

.footer-brand,
.footer-contacts,
.footer-copy {
  gap: 0;
}

.footer-brand-link {
  margin-bottom: 16px;
}

.footer-description {
  max-width: 31ch;
}

.footer-copy p {
  margin: 0;
}

.footer-copy p:first-of-type {
  margin-bottom: 12px;
}

#footer-copy {
  margin-top: auto;
  padding-top: 18px;
}

.footer-contact-card {
  gap: 14px;
  padding: 24px;
}

.footer-contact-intro {
  max-width: 25ch;
}

.footer-contacts a.footer-contact-mail {
  min-height: 52px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .button,
  .header-action,
  .benefit-card,
  .marketplace-card,
  .about-card,
  .stats-card,
  .cta-card,
  .footer-contacts a.footer-contact-mail,
  .cta-contact {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  .section {
    padding: 92px 0;
  }

  .about-grid,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: 9.2ch;
    font-size: clamp(2.95rem, 7vw, 4.95rem);
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 28px), 1160px);
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 12px 0 14px;
    gap: 12px;
  }

  .brand-frame,
  .footer-logo-frame {
    padding: 10px 13px;
    border-radius: 20px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    max-width: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
  }

  .site-nav a {
    padding: 9px 12px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 18px;
  }

  .hero-copy {
    max-width: none;
    padding: 24px 0 10px;
  }

  .hero-copy::before {
    width: 58px;
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.65rem, 10vw, 4.1rem);
  }

  .hero-subtitle {
    max-width: none;
    font-size: 1rem;
    line-height: 1.72;
  }

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

  .about-card,
  .stats-card,
  .benefit-card,
  .marketplace-card,
  .cta-card,
  .footer-grid > div {
    padding: 28px 24px;
    border-radius: 26px;
  }

  .benefits-grid,
  .marketplaces-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    gap: 22px;
  }

  .footer-grid {
    gap: 18px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 20px), 1160px);
  }

  .section {
    padding: 66px 0;
  }

  .header-action {
    width: auto;
    min-height: 46px;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 11vw, 3.35rem);
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .cta-actions {
    gap: 10px;
  }

  .footer-contact-card {
    padding: 20px;
  }
}
/* global-polish 20260323 end */


/* footer-grid-refine 20260323 start */
.site-footer {
  padding-top: 18px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(290px, 0.88fr) minmax(0, 0.97fr);
  gap: 20px;
  align-items: stretch;
}

.footer-grid > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 34px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 237, 236, 0.92) 100%);
  border: 1px solid rgba(92, 13, 28, 0.08);
  box-shadow: 0 20px 40px rgba(60, 20, 29, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer-grid > div::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 22px;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(159, 29, 46, 0.82), rgba(159, 29, 46, 0.08));
}

.footer-brand,
.footer-contacts,
.footer-copy {
  justify-content: flex-start;
  gap: 0;
}

.footer-brand-link,
.footer-grid h3 {
  margin-top: 14px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  font-size: 1.18rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.footer-brand-link {
  margin-bottom: 20px;
}

.footer-logo-frame {
  padding: 12px 15px;
  border-radius: 20px;
}

.footer-brand-note {
  margin: 0 0 12px;
  max-width: 24ch;
  line-height: 1.44;
}

.footer-description {
  margin: 0;
  max-width: 31ch;
  line-height: 1.76;
}

.footer-contacts {
  justify-content: flex-start;
}

.footer-contact-card {
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px 22px;
  margin-top: 2px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 241, 240, 0.9) 100%);
  border: 1px solid rgba(92, 13, 28, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 14px 26px rgba(60, 20, 29, 0.06);
}

.footer-contact-intro {
  margin: 0;
  max-width: none;
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.58;
}

.footer-contacts a.footer-contact-mail {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(92, 13, 28, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 12px 22px rgba(60, 20, 29, 0.06);
}

.footer-copy {
  justify-content: flex-start;
}

.footer-copy p {
  line-height: 1.76;
}

.footer-copy p:first-of-type {
  max-width: 29ch;
  margin-bottom: 14px;
}

#footer-copy {
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(92, 13, 28, 0.08);
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .site-footer {
    padding-top: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-copy {
    grid-column: auto;
  }

  .footer-grid > div {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .footer-grid > div::before {
    left: 24px;
    top: 18px;
    width: 48px;
  }

  .footer-brand-link,
  .footer-grid h3 {
    margin-top: 10px;
  }

  .footer-contact-card {
    padding: 20px;
    border-radius: 20px;
  }
}
/* footer-grid-refine 20260323 end */


/* layout-tighten 20260323 start */
body {
  text-rendering: optimizeLegibility;
}

.container {
  width: min(calc(100% - 56px), 1080px);
}

.section {
  padding: clamp(82px, 7vw, 102px) 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 36px;
}

.section-heading h2,
.cta-card h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.site-header {
  background: rgba(250, 246, 245, 0.84);
}

.site-header.is-scrolled {
  background: rgba(251, 248, 247, 0.96);
}

.header-inner {
  min-height: 84px;
  gap: 18px;
}

.brand {
  flex: 0 0 auto;
}

.brand-frame {
  padding: 11px 15px;
}

.brand-note-text {
  max-width: 21ch;
  font-size: 0.88rem;
  line-height: 1.38;
}

.site-nav {
  flex: 0 1 auto;
  justify-content: center;
  gap: 6px;
  max-width: none;
  margin: 0;
  padding: 8px 10px;
}

.site-nav a {
  padding: 9px 11px;
  font-size: 0.93rem;
}

.header-action {
  min-height: 48px;
  padding: 0 20px;
}

.hero {
  padding-top: clamp(86px, 8vw, 102px);
  padding-bottom: 30px;
}

.hero::before {
  height: min(520px, 54vh);
}

.hero::after {
  right: 8%;
  top: 108px;
  width: clamp(180px, 21vw, 250px);
  height: clamp(180px, 21vw, 250px);
  filter: blur(20px);
}

.hero-copy {
  max-width: 680px;
  padding: 30px 0 8px;
}

.hero-copy::before {
  width: 64px;
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 9.3ch;
  font-size: clamp(3rem, 4.75vw, 4.95rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-subtitle {
  max-width: 42ch;
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.76;
}

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

.about-card p,
.marketplace-card p,
.benefit-card p,
.footer-description,
.footer-copy p,
.cta-card p,
.cta-note {
  line-height: 1.74;
}

.cta-card > div:first-child {
  max-width: 58ch;
}

@media (max-width: 1080px) {
  .container {
    width: min(calc(100% - 44px), 1080px);
  }

  .header-inner {
    gap: 14px;
  }

  .site-nav {
    gap: 4px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.85rem, 6vw, 4.55rem);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 30px), 1080px);
  }

  .section {
    padding: 76px 0;
  }

  .header-inner {
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 0 0;
    background: none;
    border: none;
    box-shadow: none;
  }

  .site-nav a {
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(92, 13, 28, 0.06);
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 18px;
  }

  .hero-copy {
    max-width: none;
    padding: 22px 0 8px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 9vw, 4rem);
  }

  .hero-subtitle {
    max-width: none;
    line-height: 1.72;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 22px), 1080px);
  }

  .section {
    padding: 64px 0;
  }

  .hero h1,
  .section-heading h2,
  .cta-card h2 {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.24rem, 10.5vw, 3.2rem);
    letter-spacing: -0.04em;
  }
}
/* layout-tighten 20260323 end */


/* hero-title-balance 20260324 start */
.hero-copy {
  max-width: 780px;
  padding: 34px 0 10px;
}

.hero h1 {
  max-width: 13.4ch;
  font-size: clamp(3.05rem, 4.9vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-subtitle {
  max-width: 45ch;
  margin-top: 24px;
}

.hero-actions {
  margin-top: 30px;
}

@media (max-width: 1080px) {
  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 12.5ch;
    font-size: clamp(2.95rem, 6vw, 4.72rem);
  }
}

@media (max-width: 780px) {
  .hero-copy {
    max-width: none;
    padding: 22px 0 8px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 9vw, 4rem);
    line-height: 0.96;
  }

  .hero-subtitle {
    max-width: none;
  }
}
/* hero-title-balance 20260324 end */


/* hero-title-lines 20260324 start */
.hero-copy {
  max-width: 860px;
  padding: 34px 0 10px;
}

#hero-title {
  max-width: 820px;
}

.hero h1 {
  max-width: none;
  font-size: clamp(3.08rem, 4.95vw, 5.02rem);
  line-height: 0.95;
  letter-spacing: -0.038em;
  text-wrap: initial;
}

.hero-title-line {
  display: block;
}

.hero-title-line + .hero-title-line {
  margin-top: 0.01em;
}

.hero-subtitle {
  max-width: 46ch;
}

@media (max-width: 1080px) {
  .hero-copy {
    max-width: 760px;
  }

  #hero-title {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(2.98rem, 6vw, 4.74rem);
  }
}

@media (max-width: 780px) {
  .hero-title-line {
    display: inline;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 9vw, 4rem);
    line-height: 0.96;
  }
}
/* hero-title-lines 20260324 end */


/* marketplace-circle-cleanup 20260324 start */
.marketplace-card::before,
.marketplace-card:nth-child(2n)::before,
.marketplace-card:hover::before,
.marketplace-card:focus-within::before {
  content: none;
  background: none;
  box-shadow: none;
  opacity: 0;
}
/* marketplace-circle-cleanup 20260324 end */


/* decorative-line-cleanup 20260324 start */
.hero-copy::before,
.footer-grid > div::before {
  content: none;
  display: none;
}
/* decorative-line-cleanup 20260324 end */


/* footer-contact-polish 20260324 start */
.footer-contacts {
  width: 100%;
}

.footer-contacts h3 {
  width: 100%;
  margin-bottom: 18px;
}

.footer-contact-card {
  flex: 0 0 auto;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 0;
  padding: 28px 24px 24px;
  border-radius: 22px;
}

.footer-contact-intro {
  max-width: 19ch;
  font-size: 0.98rem;
  line-height: 1.56;
}

.footer-contacts a.footer-contact-mail {
  width: auto;
  min-width: 208px;
  max-width: 100%;
  padding: 0 20px;
  align-self: flex-start;
  justify-content: center;
  font-size: 0.98rem;
}

@media (max-width: 780px) {
  .footer-contact-card {
    padding: 22px 20px 20px;
    gap: 16px;
  }

  .footer-contact-intro {
    max-width: none;
  }

  .footer-contacts a.footer-contact-mail {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}
/* footer-contact-polish 20260324 end */



/* header-group 20260324 start */
.header-actions-group {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-actions-group .site-nav {
  flex: 0 0 auto;
  gap: 4px;
  margin: 0;
  padding: 6px 8px;
}

.header-actions-group .site-nav a {
  padding: 9px 12px;
}

.header-actions-group .header-action {
  flex: 0 0 auto;
  margin: 0;
}

@media (max-width: 900px) {
  .header-actions-group {
    gap: 8px;
  }

  .header-actions-group .site-nav {
    padding: 5px 6px;
  }

  .header-actions-group .site-nav a {
    padding: 8px 10px;
  }
}

@media (max-width: 720px) {
  .header-actions-group {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
/* header-group 20260324 end */


/* cookie-consent 20260324 start */
.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(460px, calc(100vw - 32px));
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(120, 26, 40, 0.12);
  border-radius: 22px;
  background: rgba(252, 248, 247, 0.96);
  box-shadow: 0 24px 54px rgba(60, 20, 29, 0.18);
  backdrop-filter: blur(14px);
}

.cookie-consent-text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(54, 31, 36, 0.86);
}

.cookie-consent-button {
  min-width: 126px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(97, 23, 36, 0.2);
}

.cookie-consent.is-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

@media (max-width: 720px) {
  .cookie-consent {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .cookie-consent-button {
    width: 100%;
  }
}
/* cookie-consent 20260324 end */


/* footer-balance 20260324 start */
.site-footer.section {
  padding-top: clamp(18px, 2vw, 32px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.9fr) minmax(0, 0.97fr);
  gap: 18px;
  align-items: stretch;
}

.footer-grid > div {
  min-height: 388px;
  padding: 32px 30px;
  border-radius: 30px;
}

.footer-brand,
.footer-contacts,
.footer-copy {
  min-height: 100%;
  justify-content: flex-start;
}

.footer-brand-link,
.footer-grid h3 {
  margin-top: 10px;
}

.footer-grid h3 {
  margin-bottom: 18px;
}

.footer-brand-note {
  margin-bottom: 14px;
  max-width: 22ch;
  line-height: 1.5;
}

.footer-description {
  max-width: 30ch;
  line-height: 1.72;
}

.footer-contacts h3 {
  width: 100%;
  margin-bottom: 20px;
}

.footer-contact-card {
  flex: 1 1 auto;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 0;
  padding: 26px 24px;
  border-radius: 24px;
}

.footer-contact-intro {
  max-width: 16ch;
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-contacts a.footer-contact-mail {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  align-self: stretch;
  justify-content: center;
}

.footer-copy p {
  line-height: 1.72;
}

.footer-copy p:first-of-type {
  max-width: 28ch;
  margin-bottom: 14px;
}

#footer-copy {
  margin-top: auto;
  padding-top: 18px;
}

@media (max-width: 1080px) {
  .site-footer.section {
    padding-top: 24px;
  }

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

  .footer-grid > div {
    min-height: 0;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .site-footer.section {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid > div {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .footer-contact-card {
    padding: 22px 20px;
    gap: 16px;
  }

  .footer-contact-intro,
  .footer-copy p:first-of-type,
  .footer-description {
    max-width: none;
  }
}
/* footer-balance 20260324 end */


/* footer-two-col 20260324 start */
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.footer-grid > div {
  min-height: 372px;
}

.footer-copy {
  grid-column: auto;
}

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

  .footer-copy {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* footer-two-col 20260324 end */


/* header-blend 20260324 start */
.site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header::after {
  opacity: 0;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 247, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 34px rgba(52, 17, 24, 0.08);
}

.site-header.is-scrolled::after {
  opacity: 0.35;
}
/* header-blend 20260324 end */


/* equal-cards 20260324 start */
@media (min-width: 1081px) {
  .about-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .about-card,
  .stats-card,
  .footer-grid > div {
    min-height: 392px;
  }

  .about-card,
  .stats-card {
    display: flex;
    flex-direction: column;
  }
}
/* equal-cards 20260324 end */

