:root {
  --bg: #eef5f8;
  --paper: #ffffff;
  --paper-2: #f7fbfd;
  --ink: #111827;
  --muted: #5e6b7e;
  --line: #d8e4ec;
  --brand: #d71920;
  --brand-dark: #1a1742;
  --green: #d95b73;
  --green-dark: #b63a50;
  --blue: #3267d6;
  --amber: #e5a93a;
  --shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 228, 236, 0.8);
  background: rgba(238, 245, 248, 0.92);
  backdrop-filter: blur(12px);
}

.brand,
.site-nav,
.hero__actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__logo {
  width: 34px;
  height: 34px;
}

.brand__text {
  font-size: 18px;
}

.site-nav {
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.header-link {
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}

.site-nav a:hover {
  color: var(--brand);
}

.header-link {
  padding: 10px 14px;
  color: #ffffff;
  background: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
}

.section-band {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-band--plain {
  background: var(--paper);
}

.section-band--contact {
  padding-bottom: clamp(72px, 8vw, 112px);
}

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

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
}

.hero__copy,
.dashboard-preview {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero__lead {
  max-width: 680px;
  color: #334155;
  font-size: clamp(18px, 2vw, 22px);
}

.hero__actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.btn--primary {
  background: var(--green);
  color: #ffffff;
}

.btn--ghost {
  border-color: #c5d3df;
  background: rgba(255, 255, 255, 0.62);
}

.dashboard-preview,
.drr-panel,
.workbench,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dashboard-preview {
  padding: clamp(18px, 3vw, 26px);
}

.dashboard-preview__top,
.chart-panel__head,
.workbench__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-preview__label,
.chart-panel__meta,
.metric-card__label,
.metric-card__hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.dashboard-preview h2 {
  margin-bottom: 0;
  font-size: 26px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #f0b5b8;
  border-radius: 999px;
  background: #fff1f2;
  color: #a91f27;
  font-size: 12px;
  font-weight: 900;
}

.status-pill--green {
  border-color: #efadba;
  background: #fff0f3;
  color: var(--green-dark);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.metric-card,
.service-card,
.numbers-grid article,
.mini-card,
.process-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.metric-card {
  min-height: 128px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 6px;
}

.metric-card strong {
  color: var(--brand-dark);
  font-size: clamp(27px, 3.6vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.metric-card--accent {
  background: #fff4f6;
  border-color: #efadba;
}

.chart-panel {
  padding-top: 6px;
}

.chart-panel__head {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-weight: 900;
}

.series-chart {
  display: block;
  width: 100%;
  height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
  overflow: hidden;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.legend-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 6px;
  background: var(--dot);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.split-intro p,
.section-head p,
.drr-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head--compact {
  max-width: 700px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 230px;
  padding: 22px;
}

.service-card__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--green) 0 48%, transparent 49%),
    linear-gradient(135deg, transparent 0 54%, var(--brand) 55% 100%),
    #eff6ff;
}

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

.drr-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
}

.drr-panel {
  padding: clamp(18px, 3vw, 28px);
}

.drr-target {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  padding: 20px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #ffffff;
}

.drr-target span {
  color: #ffd7df;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.drr-target strong {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.flow-list,
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.flow-list li {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
  font-weight: 900;
  text-align: center;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.numbers-grid article {
  min-height: 140px;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.numbers-grid strong {
  color: var(--brand-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.numbers-grid span {
  color: var(--muted);
  font-weight: 700;
}

.workbench {
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
}

.workbench__sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background: var(--brand-dark);
  color: #ffffff;
}

.workbench__brand {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.workbench__nav {
  padding: 10px 12px;
  border-radius: 8px;
  color: #d6e7f2;
  font-size: 14px;
  font-weight: 800;
}

.workbench__nav.is-active {
  background: rgba(217, 91, 115, 0.16);
  color: #ffffff;
}

.workbench__main {
  padding: clamp(18px, 3vw, 28px);
}

.workbench__head h3 {
  margin: 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.mini-card {
  padding: 16px;
  display: grid;
  gap: 6px;
}

.mini-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.mini-card strong {
  color: var(--brand-dark);
  font-size: 34px;
  line-height: 1;
}

.drr-stack {
  display: grid;
  gap: 12px;
}

.drr-stack__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.drr-stack__row i {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: #e5edf4;
  overflow: hidden;
}

.drr-stack__row i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-list li {
  min-height: 230px;
  padding: 18px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: #334155;
  font-weight: 700;
}

.contact-panel {
  max-width: 880px;
  padding: clamp(26px, 5vw, 48px);
}

.contact-panel h2 {
  max-width: 700px;
}

@media (max-width: 1040px) {
  .hero__grid,
  .split-intro,
  .drr-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 42px;
  }

  .metric-grid,
  .service-grid,
  .numbers-grid,
  .mini-grid,
  .process-list,
  .flow-list {
    grid-template-columns: 1fr;
  }

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

  .workbench__sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: auto;
  }

  .workbench__brand {
    grid-column: 1 / -1;
  }

  .drr-stack__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding: 12px;
  }

  .header-link {
    padding: 9px 10px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}


/* 2026-07-01: landing revision, direct prod edit */
.site-header {
  grid-template-columns: auto 1fr;
}

.site-nav {
  justify-content: flex-end;
}

.brand__logo {
  width: clamp(112px, 13vw, 148px);
  height: 34px;
  object-fit: contain;
}

.hero {
  min-height: auto;
}

.hero.section-band {
  padding: clamp(50px, 6vw, 82px) 0;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.9fr);
}

.dashboard-preview {
  align-self: stretch;
  display: grid;
  align-content: center;
}

.metric-grid {
  margin: 22px 0 0;
}

.metric-card {
  container-type: inline-size;
  min-height: 118px;
  overflow: hidden;
}

.metric-card strong,
.numbers-grid strong,
.drr-target strong,
.mini-card strong {
  font-variant-numeric: tabular-nums;
}

.metric-card strong {
  max-width: 100%;
  font-size: clamp(28px, 16cqw, 40px);
  white-space: nowrap;
}

.metric-card__hint {
  line-height: 1.28;
}

.section-band--chart {
  background: #ffffff;
  padding-top: clamp(42px, 5vw, 72px);
}

.growth-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1.28fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.growth-copy {
  position: sticky;
  top: 94px;
}

.growth-copy p {
  color: var(--muted);
  font-size: 18px;
}

.growth-card {
  min-width: 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.growth-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.growth-card__top h3 {
  margin: 0;
  color: var(--brand-dark);
}

.growth-target {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #efadba;
  border-radius: 999px;
  background: #fff0f3;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.chart-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.chart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #cbd8e3;
  border-radius: 999px;
  background: #f8fbfd;
  color: #243044;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  user-select: none;
}

.chart-toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.chart-stage {
  position: relative;
  min-width: 0;
}

.series-chart {
  height: 360px;
  touch-action: none;
  cursor: crosshair;
}

.chart-tooltip {
  position: absolute;
  z-index: 3;
  min-width: 210px;
  max-width: min(320px, calc(100% - 24px));
  padding: 12px 14px;
  border: 1px solid #cad8e3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.16);
  color: var(--ink);
  pointer-events: none;
}

.chart-tooltip__stage {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.chart-tooltip__row {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.chart-tooltip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot);
}

@media (max-width: 1040px) {
  .hero__grid,
  .growth-shell {
    grid-template-columns: 1fr;
  }

  .growth-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand__logo {
    width: 118px;
  }

  .growth-card__top {
    display: grid;
  }

  .chart-toggles {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .chart-toggle {
    flex: 0 0 auto;
  }

  .series-chart {
    height: clamp(300px, 34vw, 430px);
  }
}

@media (max-width: 460px) {
  .metric-card strong {
    font-size: clamp(26px, 14cqw, 36px);
  }

  .growth-card {
    padding: 14px;
  }
}


/* 2026-07-01: Tilda icon pack */
.icon-mask {
  display: block;
  background: var(--icon-color, var(--brand));
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.service-card__icon.icon-mask {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 0;
  --icon-color: var(--brand);
}

.service-card:nth-child(2n) .service-card__icon.icon-mask {
  --icon-color: var(--green-dark);
}

.service-card:nth-child(3n) .service-card__icon.icon-mask {
  --icon-color: var(--blue);
}

.process-list li {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr;
}

.process-list span {
  margin-bottom: 12px;
}

.process-list__icon.icon-mask {
  width: 34px;
  height: 34px;
  margin: 0 0 16px;
  --icon-color: var(--brand-dark);
}

.process-list li:nth-child(even) .process-list__icon.icon-mask {
  --icon-color: var(--green-dark);
}

.process-list li:nth-child(3n) .process-list__icon.icon-mask {
  --icon-color: var(--blue);
}

@media (max-width: 760px) {
  .service-card__icon.icon-mask {
    width: 42px;
    height: 42px;
  }

  .process-list__icon.icon-mask {
    width: 32px;
    height: 32px;
  }
}


/* 2026-07-01: growth block full-width chart */
.growth-shell {
  display: block;
}

.growth-copy {
  position: static;
  max-width: 900px;
}

.growth-card {
  margin-top: clamp(22px, 3vw, 34px);
}

.growth-card__top {
  margin-bottom: 16px;
}

.series-chart text {
  user-select: none;
}

@media (max-width: 760px) {
  .growth-card__top h3 {
    font-size: 18px;
  }
}


/* 2026-07-01: readable month axis below chart */
.chart-months {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 4px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.chart-months span {
  min-width: 0;
  text-align: center;
  white-space: nowrap;
}

.chart-months span:first-child {
  text-align: left;
}

.chart-months span:last-child {
  text-align: right;
}

@media (max-width: 460px) {
  .chart-months {
    font-size: 10px;
    gap: 2px;
  }
}


/* 2026-07-01: stronger process cards */
.process-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.process-list li {
  position: relative;
  flex: 1 1 calc((100% - 36px) / 3);
  max-width: calc((100% - 36px) / 3);
  min-width: 280px;
  min-height: 280px;
  padding: 32px 24px 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.process-list span {
  position: absolute;
  top: 22px;
  left: 24px;
  margin: 0;
  font-size: 14px;
}

.process-list__icon.icon-mask {
  width: 66px;
  height: 66px;
  margin: 18px auto 22px;
}

.process-list p {
  max-width: 280px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.42;
}

@media (max-width: 1040px) {
  .process-list li {
    flex-basis: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .process-list li {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 240px;
  }

  .process-list__icon.icon-mask {
    width: 58px;
    height: 58px;
  }
}


/* 2026-07-01: chart uses full card width */
.chart-stage {
  width: 100%;
}

.series-chart {
  width: 100%;
}


/* 2026-07-01: align intro copy with heading, not eyebrow */
@media (min-width: 1041px) {
  .split-intro > p {
    padding-top: 40px;
  }
}


/* 2026-07-01: own marketplace storefronts */
.marketplace-proof {
  background: linear-gradient(180deg, #ffffff 0%, #eef5f8 100%);
  overflow: hidden;
}

.marketplace-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.marketplace-proof__copy {
  min-width: 0;
}

.marketplace-proof__copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.marketplace-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.marketplace-link {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.marketplace-link:hover {
  transform: translateY(-2px);
  border-color: #b9c9d6;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.12);
}

.marketplace-link__media {
  display: block;
  height: 104px;
  overflow: hidden;
  background: #f8fbfd;
}

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

.marketplace-link__text {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 900;
}

.marketplace-phone {
  min-width: 0;
  justify-self: center;
  width: min(430px, 100%);
  margin: -28px 0 -48px;
}

.marketplace-phone img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 42px rgba(17, 24, 39, 0.18));
}

@media (max-width: 1040px) {
  .marketplace-proof__grid {
    grid-template-columns: 1fr;
  }

  .marketplace-phone {
    width: min(360px, 88vw);
    margin: 0 auto -40px;
  }
}

@media (max-width: 680px) {
  .marketplace-links {
    grid-template-columns: 1fr;
  }

  .marketplace-link {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
  }

  .marketplace-link__media {
    height: 82px;
  }

  .marketplace-phone {
    width: min(310px, 92vw);
  }
}


/* 2026-07-01: softer card corners */
.dashboard-preview,
.drr-panel,
.workbench,
.contact-panel,
.growth-card,
.marketplace-link,
.metric-card,
.service-card,
.numbers-grid article,
.mini-card,
.process-list li,
.series-chart,
.flow-list li,
.drr-target {
  border-radius: 14px;
}

.marketplace-link__media {
  border-radius: 14px 14px 0 0;
}

@media (max-width: 680px) {
  .marketplace-link__media {
    border-radius: 14px 0 0 14px;
  }
}


/* 2026-07-01: founder and VK reel carousel */
.founder-section {
  background: #ffffff;
  overflow: hidden;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.founder-profile {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 28px);
  align-items: end;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbfd 0%, #eef5f8 100%);
  box-shadow: var(--shadow);
}

.founder-photo {
  align-self: stretch;
  min-height: 390px;
  border-radius: 16px;
  background: #17172a;
  overflow: hidden;
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-card-copy {
  min-width: 0;
  padding: 8px 0;
}

.founder-card-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 2.25vw, 32px);
  overflow-wrap: normal;
  word-break: normal;
}

.founder-card-copy p:not(.eyebrow),
.founder-video__head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.founder-role {
  margin-bottom: 18px;
  color: var(--brand-dark) !important;
  font-size: 16px !important;
  font-weight: 900;
}

.founder-link {
  margin-top: 12px;
}

.founder-story blockquote {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--brand);
  color: #334155;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.58;
}

.founder-story blockquote p {
  margin-bottom: 18px;
}

.founder-story blockquote p:last-child {
  margin-bottom: 0;
}

.founder-video {
  margin-top: clamp(24px, 3vw, 42px);
}

.founder-video__head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.reel-carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 70px;
}

.reel-carousel__stage {
  position: relative;
  height: clamp(500px, 58vw, 690px);
}

.reel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(350px, 44vw);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(216, 228, 236, 0.72);
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
  opacity: 0;
  overflow: hidden;
  filter: brightness(0.58) saturate(0.82);
  transform: translate(-50%, -50%) scale(0.72);
  transition: transform 0.36s ease, opacity 0.36s ease, filter 0.36s ease, box-shadow 0.36s ease;
  cursor: pointer;
}

.reel-card.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 28px 64px rgba(17, 24, 39, 0.22);
  cursor: default;
}

.reel-card.is-prev {
  z-index: 2;
  opacity: 0.62;
  transform: translate(-50%, -50%) translateX(-315px) scale(0.78) rotate(-2deg);
}

.reel-card.is-next {
  z-index: 2;
  opacity: 0.62;
  transform: translate(-50%, -50%) translateX(315px) scale(0.78) rotate(2deg);
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.46);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.36s ease;
}

.reel-card.is-active::after {
  opacity: 0;
}

.reel-card__screen,
.reel-card__screen iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.reel-card__screen iframe {
  border: 0;
  background: #0f172a;
}

.reel-card:not(.is-active) iframe {
  pointer-events: none;
}

.reel-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.14);
  color: var(--brand-dark);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.reel-carousel__button:hover {
  border-color: #b9c9d6;
  color: var(--brand);
}

.reel-carousel__button--prev {
  left: 0;
  transform: translateY(-50%);
}

.reel-carousel__button--next {
  right: 0;
  transform: translateY(-50%);
}

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

  .founder-story {
    max-width: 820px;
  }

  .reel-card.is-prev {
    transform: translate(-50%, -50%) translateX(-250px) scale(0.76) rotate(-2deg);
  }

  .reel-card.is-next {
    transform: translate(-50%, -50%) translateX(250px) scale(0.76) rotate(2deg);
  }
}

@media (max-width: 760px) {
  .founder-profile {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .founder-photo {
    width: min(320px, 100%);
    min-height: 0;
    aspect-ratio: 2 / 3;
  }

  .founder-story blockquote {
    padding-left: 18px;
  }

  .founder-video__head {
    text-align: left;
  }

  .reel-carousel {
    padding: 0 48px;
  }

  .reel-carousel__stage {
    height: clamp(430px, 136vw, 570px);
  }

  .reel-card {
    width: min(315px, calc(100vw - 114px));
    border-radius: 20px;
  }

  .reel-card.is-prev,
  .reel-card.is-next {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.86);
  }
}

@media (max-width: 460px) {
  .reel-carousel {
    padding: 0 42px;
  }

  .reel-carousel__stage {
    height: clamp(400px, 136vw, 530px);
  }

  .reel-card {
    width: min(295px, calc(100vw - 96px));
  }

  .reel-carousel__button {
    width: 38px;
    height: 38px;
    font-size: 27px;
  }
}


/* 2026-07-01: experience system instead of duplicated number cards */
.experience-system {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbfd 100%);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.experience-system__lead {
  display: grid;
  align-content: center;
  min-width: 0;
}

.experience-system__lead span {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-system__lead h3 {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
}

.experience-system__lead p,
.experience-system__result p,
.experience-row__copy p {
  color: var(--muted);
}

.experience-system__lead p {
  max-width: 620px;
  font-size: 18px;
}

.experience-system__track {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.experience-system__track::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 27px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--green));
  opacity: 0.28;
}

.experience-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 16px 18px;
  border: 1px solid #dce7ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.experience-row__icon.icon-mask {
  width: 54px;
  height: 54px;
  --icon-color: var(--brand);
}

.experience-row:nth-child(2) .experience-row__icon.icon-mask {
  --icon-color: var(--green-dark);
}

.experience-row:nth-child(3) .experience-row__icon.icon-mask {
  --icon-color: var(--blue);
}

.experience-row__copy {
  min-width: 0;
}

.experience-row__copy span {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.experience-row__copy strong {
  display: block;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.18;
}

.experience-row__copy p {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.38;
}

.experience-row__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: 190px;
}

.experience-row__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #efc2cb;
  border-radius: 999px;
  background: #fff4f6;
  color: #924153;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.experience-system__result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--brand-dark);
  color: #ffffff;
}

.experience-system__result strong {
  font-size: 19px;
  line-height: 1.24;
}

.experience-system__result p {
  margin: 0;
  color: #d8e4ec;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .experience-system {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .experience-system {
    padding: 16px;
  }

  .experience-row {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
  }

  .experience-row__icon.icon-mask {
    width: 42px;
    height: 42px;
  }

  .experience-row__tags {
    grid-column: 2;
    justify-content: flex-start;
    max-width: none;
  }

  .experience-system__track::before {
    left: 21px;
  }

  .experience-system__result {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .experience-row {
    padding: 14px;
  }

  .experience-row__copy strong {
    font-size: 18px;
  }
}


/* 2026-07-01: accent founder VK button */
.founder-link {
  border-color: transparent;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(217, 91, 115, 0.22);
}

.founder-link:hover {
  background: var(--green-dark);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(182, 58, 80, 0.24);
}


/* 2026-07-01: centered video carousel arrows */
.reel-carousel__button {
  font-size: 0;
  line-height: 0;
}

.reel-carousel__button::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.reel-carousel__button--prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.reel-carousel__button--next::before {
  transform: translateX(-2px) rotate(45deg);
}

@media (max-width: 460px) {
  .reel-carousel__button::before {
    width: 10px;
    height: 10px;
    border-width: 2.5px;
  }
}


/* 2026-07-01: fixed back-to-top button */
.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(217, 91, 115, 0.28);
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.18), 0 10px 22px rgba(217, 91, 115, 0.24);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.back-to-top::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(45deg);
}

.back-to-top:hover {
  background: var(--green-dark);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.2), 0 12px 24px rgba(182, 58, 80, 0.26);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(217, 91, 115, 0.28);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .back-to-top {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 42px;
    height: 42px;
  }

  .back-to-top::before {
    width: 10px;
    height: 10px;
    border-width: 2.5px;
  }
}


/* 2026-07-01: red accent panels */
.drr-target,
.experience-system__result {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 58%, var(--brand) 100%);
  box-shadow: 0 16px 32px rgba(217, 91, 115, 0.22);
}

.drr-target span,
.experience-system__result p {
  color: #ffe8ed;
}

/* 2026-07-01: tariff carousel */
.tariff-section {
  overflow: hidden;
}

.tariff-section__head {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.tariff-carousel {
  position: relative;
  max-width: 1120px;
  margin: 10px auto 0;
  padding: 0 70px;
}

.tariff-carousel__stage {
  position: relative;
  min-height: 570px;
}

.tariff-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: grid;
  width: min(490px, 50vw);
  min-height: 520px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper-2) 100%);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
  opacity: 0;
  filter: brightness(0.76) saturate(0.82);
  transform: translate(-50%, -50%) scale(0.76);
  transition: transform 0.36s ease, opacity 0.36s ease, filter 0.36s ease, box-shadow 0.36s ease, border-color 0.36s ease;
  cursor: pointer;
}

.tariff-card.is-active {
  z-index: 3;
  border-color: #efadba;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 28px 66px rgba(217, 91, 115, 0.18);
  cursor: default;
}

.tariff-card.is-prev {
  z-index: 2;
  opacity: 0.58;
  transform: translate(-50%, -50%) translateX(-340px) scale(0.78) rotate(-1.5deg);
}

.tariff-card.is-next {
  z-index: 2;
  opacity: 0.58;
  transform: translate(-50%, -50%) translateX(340px) scale(0.78) rotate(1.5deg);
}

.tariff-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.42);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.36s ease;
}

.tariff-card.is-active::after {
  opacity: 0;
}

.tariff-card__tag {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tariff-card h3 {
  margin: 12px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 0.98;
}

.tariff-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.tariff-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.tariff-card li {
  position: relative;
  padding-left: 26px;
  color: var(--brand-dark);
  font-weight: 800;
}

.tariff-card li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--brand));
}

.tariff-card__result {
  align-self: end;
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 16px;
  border-radius: 14px;
  background: #fff1f4;
  border: 1px solid #efadba;
}

.tariff-card__result span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tariff-card__result strong {
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.2;
}

.tariff-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.14);
  color: var(--brand-dark);
  cursor: pointer;
  transform: translateY(-50%);
}

.tariff-carousel__button::before {
  display: block;
  color: currentColor;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

.tariff-carousel__button:hover {
  border-color: #efadba;
  color: var(--brand);
}

.tariff-carousel__button--prev {
  left: 0;
}

.tariff-carousel__button--prev::before {
  content: "‹";
}

.tariff-carousel__button--next {
  right: 0;
}

.tariff-carousel__button--next::before {
  content: "›";
}

@media (max-width: 1040px) {
  .tariff-card.is-prev {
    transform: translate(-50%, -50%) translateX(-260px) scale(0.76) rotate(-1.5deg);
  }

  .tariff-card.is-next {
    transform: translate(-50%, -50%) translateX(260px) scale(0.76) rotate(1.5deg);
  }
}

@media (max-width: 720px) {
  .tariff-carousel {
    padding: 0 38px;
  }

  .tariff-carousel__stage {
    min-height: 790px;
  }

  .tariff-card {
    width: min(100%, 310px);
    min-height: 610px;
  }

  .tariff-card.is-prev {
    opacity: 0.24;
    transform: translate(-50%, -50%) translateX(-140px) scale(0.72);
  }

  .tariff-card.is-next {
    opacity: 0.24;
    transform: translate(-50%, -50%) translateX(140px) scale(0.72);
  }

  .tariff-carousel__button {
    width: 42px;
    height: 42px;
  }

  .tariff-carousel__button::before {
    font-size: 30px;
  }
}

/* 2026-07-01: tariff mobile width correction */
@media (max-width: 720px) {
  .tariff-carousel {
    padding: 0 4px;
  }

  .tariff-card {
    width: min(calc(100vw - 56px), 318px);
  }

  .tariff-carousel__button--prev {
    left: -4px;
  }

  .tariff-carousel__button--next {
    right: -4px;
  }
}

/* 2026-07-01: typography, buttons and centered arrows polish */
h1 {
  font-weight: 760;
}

h2 {
  font-weight: 720;
}

h3,
h4 {
  font-weight: 700;
}

.site-nav {
  font-weight: 600;
}

.eyebrow,
.status-pill,
.growth-target,
.dashboard-preview__label,
.metric-card__label,
.metric-card__hint,
.chart-panel__head,
.marketplace-link__text,
.founder-role,
.workbench__brand,
.workbench__nav,
.mini-card span,
.drr-stack__row,
.experience-system__lead span,
.experience-row__copy span,
.experience-row__tags span,
.tariff-card__tag,
.tariff-card__result span {
  font-weight: 700;
}

.btn,
.chart-toggle,
.flow-list li,
.tariff-card li,
.process-list p,
.experience-system__result p {
  font-weight: 650;
}

.metric-card strong,
.numbers-grid strong,
.mini-card strong,
.drr-target strong,
.experience-row__copy strong,
.tariff-card__result strong {
  font-weight: 720;
}

.btn {
  position: relative;
  overflow: hidden;
  transition: background-size 0.24s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn--primary {
  background: linear-gradient(90deg, var(--green-dark), var(--brand)) 0 0 / 0 100% no-repeat, var(--green);
}

.btn--primary:hover {
  background-size: 100% 100%;
  box-shadow: 0 16px 30px rgba(217, 91, 115, 0.24);
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--brand-dark);
  background: linear-gradient(90deg, var(--green), var(--green-dark)) 0 0 / 0 100% no-repeat, rgba(255, 255, 255, 0.72);
}

.btn--ghost:hover {
  background-size: 100% 100%;
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(217, 91, 115, 0.2);
  transform: translateY(-1px);
}

.chart-toggle {
  background: linear-gradient(90deg, #fff0f3, #fff0f3) 0 0 / 0 100% no-repeat, #f8fbfd;
  transition: background-size 0.22s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.chart-toggle:hover {
  background-size: 100% 100%;
  border-color: #efadba;
  transform: translateY(-1px);
}

.chart-toggle:has(input:checked) {
  border-color: #efadba;
  background: #fff0f3;
}

.reel-carousel__button,
.tariff-carousel__button {
  font-size: 0;
  line-height: 0;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.reel-carousel__button::before,
.tariff-carousel__button::before {
  content: "" !important;
  display: block;
  width: 20px;
  height: 20px;
  border: 0;
  background: currentColor;
  transform: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 18l6-6-6-6' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 18l6-6-6-6' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.reel-carousel__button--prev::before,
.tariff-carousel__button--prev::before {
  transform: rotate(180deg);
}

.reel-carousel__button:hover,
.tariff-carousel__button:hover {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(217, 91, 115, 0.22);
  transform: translateY(-50%) scale(1.04);
}

@media (max-width: 460px) {
  .reel-carousel__button::before,
  .tariff-carousel__button::before {
    width: 18px;
    height: 18px;
    border: 0;
  }
}

/* 2026-07-01: arrow icon font cleanup */
.reel-carousel__button,
.tariff-carousel__button,
.reel-carousel__button::before,
.tariff-carousel__button::before {
  font-size: 0;
  font-weight: 400;
}

/* 2026-07-01: pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  min-height: 560px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper-2) 100%);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.pricing-card--accent {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 56%, var(--brand) 100%);
  color: #ffffff;
  box-shadow: 0 26px 58px rgba(217, 91, 115, 0.22);
}

.pricing-card__head {
  display: grid;
  gap: 12px;
}

.pricing-card h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.08;
}

.pricing-card--accent h3 {
  color: #ffffff;
}

.pricing-card__head span {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff0f3;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 650;
}

.pricing-card--accent .pricing-card__head span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}


.pricing-card__summary {
  margin: -2px 0 0;
  color: #43536b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.42;
}

.pricing-card--accent .pricing-card__summary {
  color: rgba(255, 255, 255, 0.88);
}

.pricing-card ul {
  display: grid;
  align-content: start;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 28px;
  color: #314157;
  font-size: 15px;
  line-height: 1.38;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.34em;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pricing-card--accent li {
  color: rgba(255, 255, 255, 0.92);
}

.pricing-card--accent li::before {
  background: #ffffff;
}

.pricing-card__price {
  align-self: end;
  padding-top: 4px;
  color: var(--brand-dark);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 760;
  line-height: 1.12;
}

.pricing-card--accent .pricing-card__price {
  color: #ffffff;
}

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

  .pricing-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .pricing-card {
    padding: 22px;
  }

  .pricing-card li {
    font-size: 14px;
  }
}

/* 2026-07-01: hero title and tariff heading cleanup */
.no-break {
  white-space: nowrap;
}

.hero h1 {
  font-size: clamp(38px, 4.35vw, 58px);
  line-height: 1.04;
}

.tariff-section__head {
  margin-bottom: 30px;
}

.tariff-section__head h2 {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .no-break {
    white-space: normal;
  }
}

/* 2026-07-01: pricing carousel */
.pricing-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 70px;
}

.pricing-carousel__stage {
  position: relative;
  display: block;
  min-height: 660px;
}

.pricing-carousel .pricing-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(430px, 43vw);
  opacity: 0;
  filter: brightness(0.74) saturate(0.84);
  transform: translate(-50%, -50%) scale(0.76);
  transition: transform 0.36s ease, opacity 0.36s ease, filter 0.36s ease, box-shadow 0.36s ease, border-color 0.36s ease;
  cursor: pointer;
}

.pricing-carousel .pricing-card.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
  cursor: default;
}

.pricing-carousel .pricing-card.is-prev {
  z-index: 2;
  opacity: 0.58;
  transform: translate(-50%, -50%) translateX(-340px) scale(0.78) rotate(-1.5deg);
}

.pricing-carousel .pricing-card.is-next {
  z-index: 2;
  opacity: 0.58;
  transform: translate(-50%, -50%) translateX(340px) scale(0.78) rotate(1.5deg);
}

.pricing-carousel .pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.46);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.36s ease;
}

.pricing-carousel .pricing-card--accent::after {
  background: rgba(26, 23, 66, 0.22);
}

.pricing-carousel .pricing-card.is-active::after {
  opacity: 0;
}

@media (max-width: 1040px) {
  .pricing-carousel .pricing-card.is-prev {
    transform: translate(-50%, -50%) translateX(-270px) scale(0.76) rotate(-1.5deg);
  }

  .pricing-carousel .pricing-card.is-next {
    transform: translate(-50%, -50%) translateX(270px) scale(0.76) rotate(1.5deg);
  }
}

@media (max-width: 720px) {
  .pricing-carousel {
    padding: 0 4px;
  }

  .pricing-carousel__stage {
    min-height: 680px;
  }

  .pricing-carousel .pricing-card {
    width: min(calc(100vw - 58px), 330px);
  }

  .pricing-carousel .pricing-card.is-prev {
    opacity: 0.24;
    transform: translate(-50%, -50%) translateX(-150px) scale(0.72);
  }

  .pricing-carousel .pricing-card.is-next {
    opacity: 0.24;
    transform: translate(-50%, -50%) translateX(150px) scale(0.72);
  }
}


/* 2026-07-01: tariff builder */
.tariff-builder {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 16px;
  max-width: 1120px;
  margin: 10px auto 0;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.09);
}

.tariff-builder__intro {
  align-self: center;
  max-width: 660px;
}

.tariff-builder__intro h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.04;
}

.tariff-builder__intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.45;
}

.tariff-builder__summary {
  grid-column: 1 / -1;
  justify-self: end;
  width: min(100%, 340px);
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 104px;
  padding: clamp(14px, 1.8vw, 18px);
  border: 1px solid #efadba;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff0f3 0%, #ffffff 100%);
}

.tariff-builder__summary span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.tariff-builder__summary strong {
  color: var(--brand-dark);
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1;
}

.tariff-builder__summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.tariff-builder__services {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tariff-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 120px;
  gap: 12px;
  align-items: start;
  min-width: 0;
  min-height: 90px;
  padding: 15px;
  border: 1px solid #d8e4ec;
  border-radius: 16px;
  background: #f8fbfd;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.tariff-option:hover {
  border-color: #efadba;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06);
  transform: translateY(-1px);
}

.tariff-option:has(input:checked) {
  border-color: #efadba;
  background: #fff9fa;
}

.tariff-option--locked {
  cursor: default;
}

.tariff-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tariff-option__check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border: 1px solid #b9c9d7;
  border-radius: 8px;
  background: #ffffff;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.tariff-option__check::before {
  content: "";
  width: 13px;
  height: 13px;
  background: #ffffff;
  opacity: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.tariff-option input:checked + .tariff-option__check {
  border-color: var(--green);
  background: var(--green);
}

.tariff-option input:checked + .tariff-option__check::before {
  opacity: 1;
}

.tariff-option__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.tariff-option__title {
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.24;
}

.tariff-option__text {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.tariff-option__price {
  align-self: start;
  justify-self: end;
  min-width: 120px;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.tariff-builder__sku {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid #d8e4ec;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.sku-control {
  display: grid;
  gap: 14px;
}

.sku-control__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sku-control__top span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.sku-control__top strong {
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1;
}

.sku-control__range {
  width: 100%;
  height: 12px;
  margin: 4px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 var(--sku-progress, 100%), #d8e4ec var(--sku-progress, 100%) 100%);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.sku-control__range::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(217, 91, 115, 0.32);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.sku-control__range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(217, 91, 115, 0.32);
  cursor: pointer;
}

.sku-control__ticks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.sku-control__ticks span:nth-child(1) {
  text-align: left;
}

.sku-control__ticks span:not(:first-child):not(:last-child) {
  text-align: center;
}

.sku-control__ticks span:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  .tariff-builder {
    grid-template-columns: 1fr;
  }

  .tariff-builder__summary {
    justify-self: stretch;
    width: 100%;
    min-height: 0;
  }

  .tariff-builder__services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .tariff-builder {
    padding: 16px;
    border-radius: 18px;
  }

  .tariff-option {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
    padding: 14px;
  }

  .tariff-option__price {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
    text-align: left;
  }

  .sku-control__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* 2026-07-01: mobile burger menu */
.menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--brand-dark);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .menu-toggle:hover,
  .site-header.is-menu-open .menu-toggle {
    border-color: var(--green);
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(217, 91, 115, 0.2);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--brand-dark);
  }

  .site-nav a:hover {
    background: #fff0f3;
    color: var(--brand);
  }
}

/* 2026-07-01: final icon alignment and mobile controls */
.reel-carousel__button,
.tariff-carousel__button {
  display: block;
  overflow: visible;
}

.reel-carousel__button::before,
.tariff-carousel__button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: 0;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.reel-carousel__button--prev::before,
.tariff-carousel__button--prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.reel-carousel__button:hover,
.tariff-carousel__button:hover {
  transform: translateY(-50%) scale(1.04);
}

.back-to-top {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: #ffffff;
}

.back-to-top::before {
  width: 14px;
  height: 14px;
}

@media (max-width: 760px) {
  .menu-toggle {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    border-color: rgba(217, 91, 115, 0.28);
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.18), 0 10px 22px rgba(217, 91, 115, 0.24);
  }

  .menu-toggle:hover,
  .site-header.is-menu-open .menu-toggle {
    border-color: rgba(217, 91, 115, 0.28);
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.18), 0 10px 22px rgba(217, 91, 115, 0.24);
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    margin: 0;
    transform: translate(-50%, -50%);
    transform-origin: center;
  }

  .menu-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 5px));
  }

  .menu-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .menu-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 5px));
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .back-to-top {
    width: 50px;
    height: 50px;
  }

  .back-to-top::before {
    width: 12px;
    height: 12px;
  }

  .reel-carousel__button::before,
  .tariff-carousel__button::before {
    width: 18px;
    height: 18px;
  }
}


/* 2026-07-01: sales pulse block */
.sales-pulse {
  padding-top: clamp(42px, 5vw, 72px);
  background: linear-gradient(180deg, #eef5f8 0%, #ffffff 100%);
}

.sales-pulse__head {
  max-width: 760px;
  margin-bottom: clamp(18px, 3vw, 28px);
  text-align: left;
}

.sales-pulse__head p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.sales-pulse__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.pulse-panel {
  min-width: 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.pulse-panel--chart {
  padding: 0;
  overflow: hidden;
}

.pulse-panel--chart .pulse-panel__top {
  padding: clamp(14px, 2vw, 20px) clamp(18px, 3vw, 28px) 0;
}

.pulse-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.pulse-panel__label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.pulse-panel h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.16;
}

/* 2026-07-01: orders online blinking dot */
.pulse-panel--chart h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(20px, 1.8vw, 25px);
}

.pulse-panel--chart h3::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #16b978;
  box-shadow: 0 0 0 0 rgba(22, 185, 120, 0.42);
  animation: ordersOnlineDot 1.25s ease-in-out infinite;
}

@keyframes ordersOnlineDot {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(22, 185, 120, 0.42);
  }
  50% {
    opacity: 0.45;
    box-shadow: 0 0 0 10px rgba(22, 185, 120, 0);
  }
}

.pulse-stats {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-width: 96px;
  min-height: 56px;
  padding: 8px 14px;
  border: 1px solid #efadba;
  border-radius: 14px;
  background: #fff0f3;
  color: var(--green-dark);
  text-align: center;
}

.pulse-stats strong {
  color: var(--brand-dark);
  font-size: 28px;
  line-height: 1;
}

.pulse-chart-stage {
  position: relative;
  min-width: 0;
  border: 1px solid #d8e4ec;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  overflow: hidden;
}

.pulse-chart {
  display: block;
  width: 100%;
  height: 320px;
}

.pulse-chart__grid {
  stroke: #d8e4ec;
  stroke-width: 1;
}

.pulse-chart__bar {
  fill: #fff0f3;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.pulse-chart__bar.is-new {
  animation: pulseBarIn 0.7s ease both;
}

.pulse-chart__line {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 9px 10px rgba(217, 91, 115, 0.2));
}

.pulse-chart__dot {
  fill: #ffffff;
  stroke: var(--green);
  stroke-width: 3;
}

.pulse-chart__dot.is-new {
  fill: var(--green);
  stroke: #ffffff;
  stroke-width: 3.5;
  animation: pulseDot 1.1s ease-in-out infinite;
}

.pulse-chart__label {
  fill: #5e6b7e;
  font-size: 13px;
  font-weight: 800;
}

.pulse-chart__value {
  fill: var(--brand-dark);
  font-size: 15px;
  font-weight: 900;
}

.pulse-live-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #efadba;
  border-radius: 999px;
  background: #fff0f3;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.pulse-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pulse-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid #d8e4ec;
  border-radius: 14px;
  background: #f8fbfd;
}

.pulse-product.is-new {
  animation: pulseProductIn 0.54s ease both;
}

.pulse-product__title {
  min-width: 0;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.28;
}

.pulse-product__meta,
.pulse-product__qty {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.pulse-product__meta {
  background: #ffffff;
  color: var(--muted);
}

.pulse-product__qty {
  background: var(--brand-dark);
  color: #ffffff;
}

@keyframes pulseProductIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseBarIn {
  from {
    opacity: 0.2;
    transform: scaleY(0.2);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.28;
  }
}

@media (max-width: 760px) {
  .pulse-product-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .sales-pulse__head {
    text-align: left;
  }

  .pulse-panel__top {
    display: grid;
  }

  .pulse-stats {
    justify-self: start;
    text-align: center;
  }

  .pulse-chart {
    height: 250px;
  }

  .pulse-product-list {
    grid-template-columns: 1fr;
  }

  .pulse-product {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    min-height: 0;
    padding: 10px 12px;
  }

  .pulse-product__title {
    grid-column: 1 / -1;
  }

  .pulse-product__meta {
    justify-self: start;
  }

  .pulse-product__qty {
    justify-self: end;
  }
}


/* 2026-07-01: header phone and contacts section */
.site-header {
  grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

.brand {
  justify-self: start;
}

.site-nav {
  justify-self: center;
  justify-content: center;
  gap: clamp(12px, 1.35vw, 22px);
}

.header-phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(217, 91, 115, 0.34);
  border-radius: 999px;
  background: #fff0f3;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.header-phone:hover {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
  transform: translateY(-1px);
}

.contacts-section {
  padding-top: clamp(48px, 6vw, 84px);
  padding-bottom: clamp(84px, 9vw, 128px);
  background: linear-gradient(180deg, #ffffff 0%, #eef5f8 100%);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
}

.contacts-photo {
  align-self: stretch;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-2);
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.1);
  overflow: hidden;
}

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

.contacts-info {
  display: grid;
  align-content: center;
  gap: 18px;
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.08);
}

.contacts-info h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.contacts-phone {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 780;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contacts-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(217, 91, 115, 0.24);
}

.contacts-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.contacts-item {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid #d8e4ec;
  border-radius: 16px;
  background: #f8fbfd;
}

.contacts-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.contacts-item strong {
  color: var(--brand-dark);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 760;
  line-height: 1.28;
}

.contacts-item em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  font-weight: 720;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 12px;
    font-size: 13px;
  }
}

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

  .contacts-photo {
    min-height: 0;
    aspect-ratio: 1 / 1;
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .header-phone {
    justify-self: end;
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .menu-toggle {
    justify-self: end;
  }

  .site-nav {
    justify-self: stretch;
  }

  .contacts-info {
    padding: 22px;
  }

  .contacts-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .header-phone {
    font-size: 11px;
    padding: 0 8px;
  }
}

/* 2026-07-01: compact contacts block */
.contacts-section {
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(62px, 7vw, 92px);
}

.contacts-layout {
  width: min(980px, calc(100% - 36px));
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
}

.contacts-photo {
  min-height: 300px;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.08);
}

.contacts-info {
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.07);
}

.contacts-info h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.02;
}

.contacts-phone {
  min-height: 44px;
  padding: 0 16px;
  font-size: clamp(18px, 2vw, 23px);
}

.contacts-list {
  gap: 10px;
  margin-top: 4px;
}

.contacts-item {
  min-height: 92px;
  padding: 14px 16px;
  border-radius: 14px;
}

.contacts-item strong {
  font-size: clamp(16px, 1.5vw, 18px);
}

@media (max-width: 920px) {
  .contacts-layout {
    width: min(100% - 36px, 640px);
  }

  .contacts-photo {
    max-width: 320px;
  }
}

@media (max-width: 760px) {
  .contacts-layout {
    width: min(100% - 24px, 640px);
  }

  .contacts-photo {
    max-width: 280px;
  }

  .contacts-info {
    padding: 20px;
  }
}


/* 2026-07-01: pulse chart hover values */
.pulse-chart__value,
.pulse-chart__hover-value {
  fill: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 4px;
  stroke-linejoin: round;
  pointer-events: none;
}

.pulse-chart__hover {
  outline: none;
}

.pulse-chart__hit {
  fill: transparent;
  pointer-events: all;
}

.pulse-chart__hover-value {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.pulse-chart__hover:hover .pulse-chart__hover-value,
.pulse-chart__hover:focus .pulse-chart__hover-value,
.pulse-chart__hover:focus-visible .pulse-chart__hover-value {
  opacity: 1;
  transform: translateY(0);
}


/* 2026-07-01: real pulse loading states */
.pulse-product--empty {
  justify-content: center;
  color: var(--muted);
  font-weight: 650;
}

.pulse-chart__empty {
  fill: var(--muted);
  font-size: 14px;
  font-weight: 650;
}


/* 2026-07-01: responsive overflow pass */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

@media (max-width: 920px) {
  .contacts-layout {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .contacts-photo {
    justify-self: center;
    width: min(100%, 320px);
  }
}

@media (max-width: 760px) {
  .hero.section-band {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
  }

  .hero__lead {
    font-size: 17px;
    line-height: 1.48;
  }

  .growth-card__top {
    grid-template-columns: minmax(0, 1fr);
  }

  .growth-target {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 7px 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .chart-toggles {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .chart-toggle {
    max-width: calc(100vw - 48px);
  }
}

@media (max-width: 460px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-inline: 10px;
  }

  .brand__logo {
    width: clamp(102px, 29vw, 118px);
  }

  .header-phone {
    min-width: 0;
    padding-inline: 8px;
    font-size: clamp(10px, 2.6vw, 12px);
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .dashboard-preview h2,
  .pulse-panel h3,
  .growth-card__top h3 {
    overflow-wrap: anywhere;
  }
}


/* 2026-07-01: tablet header uses compact menu before nav overflows */
@media (max-width: 1040px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    grid-template-columns: auto minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 10px;
    padding-inline: clamp(10px, 3vw, 18px);
  }

  .header-phone {
    justify-self: end;
  }

  .menu-toggle {
    position: relative;
    display: block;
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(217, 91, 115, 0.28);
    border-radius: 12px;
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.18), 0 10px 22px rgba(217, 91, 115, 0.24);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 5px));
  }

  .menu-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .menu-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 5px));
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--brand-dark);
  }

  .site-nav a:hover {
    background: #fff0f3;
    color: var(--brand);
  }
}
