:root {
  --red: #d6121c;
  --ink: #121317;
  --muted: #5f6670;
  --line: #e4e6eb;
  --soft: #f6f7f9;
  --white: #fff;
  --dark: #17181c;
  --shadow: 0 16px 44px rgba(16, 24, 40, .10);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 174px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 760;
}

.nav a {
  color: #272a30;
  padding: 8px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 18px;
  min-height: 44px;
  font-weight: 850;
  cursor: pointer;
  line-height: 1.1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(214,18,28,.22);
}

.nav a.btn-primary,
.nav a.btn-primary.active,
.nav a.btn-primary:hover,
a.btn-primary,
a.btn-primary:hover {
  color: #fff;
}

.nav a.btn-primary {
  min-width: 156px;
  padding: 11px 16px;
  gap: 2px;
  flex-direction: column;
  text-align: center;
  line-height: 1.05;
}

.nav a.btn-primary span {
  display: block;
}

.btn-primary:hover { background: #bf1019; }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover { border-color: #c9cdd4; }

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

.brand-execution-hero {
  background: linear-gradient(90deg, #fff 0%, #f7f8fa 50%, #181a20 50%, #181a20 100%);
  border-bottom: 1px solid var(--line);
}

.brand-execution-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: stretch;
}

.brand-execution-copy {
  padding: 70px 24px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-execution-copy h1 {
  color: #08090c;
}

.brand-execution-copy h1 span {
  color: var(--red);
}

.brand-execution-copy p {
  color: #252a32;
  font-size: 19px;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 0 28px;
}

.execution-visual {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  background: #15171c;
}

.execution-visual:after {
  content: "";
  position: absolute;
  right: -92px;
  top: 0;
  width: 270px;
  height: 270px;
  border: 54px solid var(--red);
  border-radius: 999px;
}

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

.center-copy {
  text-align: center;
}

.center-copy .section-intro {
  margin-left: auto;
  margin-right: auto;
  color: var(--red);
  font-size: 22px;
  font-weight: 850;
}

.execution-problems {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.problem-item {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
}

.problem-item:last-child {
  border-right: 0;
}

.problem-item span,
.execution-icon,
.partner-proof span {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: #fff7f7;
  border: 1px solid #ffd0d3;
  color: var(--red);
  font-weight: 920;
  margin-bottom: 14px;
}

.problem-item h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.problem-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 13px;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.execution-card {
  text-align: center;
}

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

.execution-card strong {
  color: var(--red);
  font-size: 14px;
}

.execution-resource {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 28px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(280px, .9fr);
  gap: 34px;
  align-items: center;
}

.scorecard-preview img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 20px 36px rgba(18,19,23,.18);
  transform: rotate(-3deg);
}

.execution-resource h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.execution-resource p {
  color: var(--muted);
  line-height: 1.58;
}

.execution-resource p strong {
  color: var(--red);
}

.improvement-panel {
  border-left: 1px solid #d9dde4;
  padding-left: 34px;
}

.improvement-panel h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.15;
}

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

.priority-grid button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  padding: 10px;
}

.priority-grid button:hover,
.priority-grid button.active {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 10px 22px rgba(214,18,28,.12);
}

.priority-result {
  margin-top: 14px;
  width: 100%;
}

.partner-row {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: 30px;
  align-items: center;
}

.partner-row h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.partner-proof {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.partner-proof div {
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.partner-proof span {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  font-size: 12px;
}

.partner-proof strong {
  display: block;
  font-size: 12px;
  line-height: 1.25;
}

.execution-final {
  background: #14161b;
  color: #fff;
}

.execution-final-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.execution-final h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
}

.dark-button {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.42);
}

.dark-button:hover {
  border-color: #fff;
}

.hero {
  background: linear-gradient(135deg, #111216 0%, #23252b 100%);
  color: #fff;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 68px 24px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--red);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

h1,
.page-title {
  font-size: clamp(40px, 6vw, 70px);
  line-height: .96;
  margin: 0 0 22px;
  letter-spacing: 0;
  max-width: 820px;
}

.hero p {
  color: #e9eaee;
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 680px;
}

.hero-panel {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.panel-copy {
  padding: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px;
}

.section.compact { padding-top: 36px; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
  margin: 0;
  letter-spacing: 0;
}

.section-intro {
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 10px 0 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.hub-spoke-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hub-spoke-image img {
  width: 100%;
  display: block;
}

.capability-card {
  padding: 0;
  overflow: hidden;
}

.capability-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.capability-card:nth-child(1) img { object-position: top center; }
.capability-card:nth-child(2) img { object-position: center 18%; }
.capability-card:nth-child(3) img { object-position: center 34%; }
.capability-card:nth-child(4) img { object-position: center 50%; }
.capability-card:nth-child(5) img { object-position: center 66%; }
.capability-card:nth-child(6) img { object-position: center 82%; }

.capability-copy {
  padding: 16px 18px 18px;
}

.capability-copy h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.capability-copy p {
  margin: 0;
  font-size: 14px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(16,24,40,.05);
}

.card.dark {
  background: var(--dark);
  color: #fff;
  border-color: #2a2d34;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.58;
}

.card.dark p,
.card.dark li { color: #d8dbe2; }

.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.metric {
  font-size: 40px;
  line-height: 1;
  font-weight: 920;
  color: var(--red);
  margin-bottom: 10px;
}

.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.image-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  display: block;
}

.resource-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.feature-list div {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: #e9eaee;
  line-height: 1.5;
}

.feature-list span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

.store-flow {
  counter-reset: flow;
}

.flow-step {
  position: relative;
  padding-left: 58px;
  min-height: 72px;
}

.flow-step:before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.lead-magnet-card {
  border: 1px solid #30343d;
  background: linear-gradient(145deg, #181a20, #2c2f38);
  color: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.lead-magnet-card p,
.lead-magnet-card li {
  color: #dfe2e8;
}

.lead-magnet-card ul {
  margin: 16px 0 22px;
  padding-left: 20px;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.lead-form input {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.lead-form input::placeholder {
  color: rgba(255,255,255,.72);
}

.transformation-slider {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.transformation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
}

.compare-frame {
  position: relative;
  aspect-ratio: 836 / 941;
  min-height: 0;
  background: #f4f5f7;
  overflow: hidden;
}

.compare-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.compare-after-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 0 0 1px rgba(18,19,23,.16);
  pointer-events: none;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--red);
  border: 1px solid rgba(18,19,23,.1);
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
  z-index: 5;
  font-size: 18px;
  font-weight: 900;
  pointer-events: none;
}

.compare-label {
  position: absolute;
  top: 18px;
  z-index: 6;
  background: rgba(18,19,23,.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.compare-label.before { left: 18px; }
.compare-label.after { right: 18px; }

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 8;
}

.transformation-copy {
  padding: 28px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transformation-copy h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0;
}

.transformation-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.transformation-points {
  display: grid;
  gap: 12px;
}

.transformation-point {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fcfcfd;
}

.transformation-point strong {
  display: block;
  margin-bottom: 4px;
}

.transformation-point span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.tag {
  display: inline-flex;
  width: fit-content;
  border: 1px solid #ffd0d3;
  color: #9a1017;
  background: #fff6f6;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  font-weight: 760;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8dce3;
  border-radius: 8px;
  padding: 13px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(214,18,28,.12);
  border-color: #e36b72;
}

.scheduler-box {
  border: 1px dashed #cfd4dc;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.scheduler-window {
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.scheduler-window iframe {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
}

.booking-options {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.integration-note {
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  background: #fbfcfd;
  padding: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  background: #111216;
  color: #d9dce2;
  margin-top: 20px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-inner a { color: #fff; }

@media (max-width: 920px) {
  .nav-wrap { align-items: flex-start; padding-top: 16px; padding-bottom: 16px; }
  .nav { flex-wrap: wrap; justify-content: flex-end; gap: 10px 16px; }
  .hero-inner,
  .brand-execution-hero-inner,
  .split,
  .transformation-layout,
  .execution-resource,
  .partner-row,
  .grid.two,
  .grid.three,
  .grid.four,
  .form-row {
    grid-template-columns: 1fr;
  }
  .brand-execution-hero { background: #fff; }
  .brand-execution-copy { padding-top: 48px; }
  .execution-visual { min-height: 360px; }
  .execution-problems { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .problem-item:nth-child(2n) { border-right: 0; }
  .improvement-panel { border-left: 0; border-top: 1px solid #d9dde4; padding-left: 0; padding-top: 24px; }
  .partner-proof { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .execution-final-inner { display: grid; }
  .hero-inner { padding-top: 46px; }
  .section-head { display: block; }
  .transformation-copy { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .nav-wrap { display: block; }
  .nav { margin-top: 14px; justify-content: flex-start; }
  .nav a { width: calc(50% - 8px); }
  .nav .btn { width: 100%; margin-top: 4px; }
  .section { padding: 42px 18px; }
  .hero-inner { padding: 42px 18px; }
  .brand-execution-copy { padding: 42px 18px; }
  .execution-problems,
  .partner-proof,
  .priority-grid { grid-template-columns: 1fr; }
  .problem-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .execution-resource { padding: 20px; }
  .hero-actions .btn { width: 100%; white-space: normal; }
  h1, .page-title { font-size: 40px; }
  .compare-handle { width: 56px; height: 56px; }
}

/* Landing system additions */
.landing-hero {
  background: linear-gradient(90deg, #101114 0%, #17191f 56%, #f7f8fa 56%, #f7f8fa 100%);
  color: #fff;
  border-bottom: 1px solid var(--line);
}

.landing-hero.light {
  background: linear-gradient(90deg, #fff 0%, #f7f8fa 52%, #17191f 52%, #17191f 100%);
  color: var(--ink);
}

.landing-hero-inner {
  max-width: 1180px;
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  align-items: stretch;
}

.landing-hero.light .landing-hero-inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
}

.landing-hero-copy {
  padding: 72px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

.landing-hero-copy h1 span,
.red-text {
  color: var(--red);
}

.landing-hero-copy p {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}

.landing-hero.light .landing-hero-copy p {
  color: #303640;
}

.landing-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #121317;
}

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

.landing-visual.contain {
  background: #f7f8fa;
  padding: 28px;
}

.landing-visual.contain img {
  object-fit: contain;
}

.merch-showcase-hero {
  padding: 34px 24px 42px;
  background: #f6f7f9;
  border-bottom: 1px solid var(--line);
}

.merch-showcase-inner {
  max-width: 980px;
  margin: 0 auto;
}

.merch-showcase-frame {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  background: #090a0d;
  border: 1px solid #1d2028;
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(16, 24, 40, .2);
}

.merch-showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.merch-showcase-actions {
  max-width: 860px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.merch-showcase-actions h1 {
  margin: 6px 0 8px;
  max-width: 620px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.merch-showcase-actions p {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.logo-strip {
  padding: 26px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.logo-strip strong {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.logo-row {
  max-width: 980px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  color: #5a606b;
  font-weight: 900;
  font-size: 22px;
}

.journey-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.journey-step {
  text-align: center;
}

.journey-number {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 22px;
  font-weight: 950;
  background: #fff;
}

.journey-step h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.journey-step p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  max-width: 150px;
}

.lead-panel {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) minmax(300px, .85fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.lead-panel img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
}

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

.choice-grid a,
.choice-grid button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 13px 12px;
  font-weight: 850;
  text-align: center;
  color: var(--ink);
}

.dark-cta {
  background: #111216;
  color: #fff;
  padding: 42px 24px;
}

.dark-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
}

.dark-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

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

.brandhub-visual {
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(214,18,28,.28), transparent 28%),
    linear-gradient(135deg, #15161b 0%, #252932 100%);
}

.laptop-scene {
  width: min(680px, 100%);
  transform: rotate(-1deg);
}

.laptop-screen {
  background: #0d0f14;
  border: 10px solid #090a0d;
  border-radius: 22px 22px 12px 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,.36);
  overflow: hidden;
}

.portal-topbar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  background: #fff;
  border-bottom: 1px solid #e4e7ec;
}

.portal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #17181c;
  font-size: 20px;
}

.portal-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  background: conic-gradient(from 25deg, #ed1c24, #8c0c12, #ff6a6f, #ed1c24);
}

.portal-search {
  flex: 0 1 260px;
  border: 1px solid #dce1e8;
  border-radius: 999px;
  padding: 9px 14px;
  color: #79818c;
  font-size: 12px;
  background: #f7f8fa;
}

.portal-layout {
  display: grid;
  grid-template-columns: 142px 1fr;
  min-height: 360px;
  background: #f3f5f8;
}

.portal-sidebar {
  background: #17191f;
  color: #d8dce3;
  padding: 18px 12px;
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 12px;
}

.portal-sidebar span {
  padding: 9px 10px;
  border-radius: 8px;
}

.portal-sidebar .active {
  background: var(--red);
  color: #fff;
  font-weight: 850;
}

.portal-main {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.portal-heading,
.portal-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.portal-heading small {
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 10px;
}

.portal-heading h3 {
  margin: 4px 0 0;
  font-size: 24px;
  color: #15171c;
}

.portal-heading button {
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  font-weight: 850;
}

.portal-metrics,
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.portal-metrics div,
.asset-card,
.portal-table {
  background: #fff;
  border: 1px solid #e1e5eb;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(16,24,40,.08);
}

.portal-metrics div {
  padding: 14px;
}

.portal-metrics strong {
  display: block;
  color: #111216;
  font-size: 26px;
}

.portal-metrics span,
.asset-card small,
.portal-table span,
.portal-table em {
  color: #66707d;
  font-size: 12px;
}

.asset-card {
  min-height: 112px;
  padding: 14px;
  display: grid;
  align-content: end;
  gap: 5px;
}

.asset-card span {
  width: 42px;
  height: 28px;
  border-radius: 7px;
  background: #dce1e8;
}

.asset-card.red span {
  background: linear-gradient(135deg, var(--red), #ff6a70);
}

.asset-card strong,
.portal-table strong {
  color: #15171c;
}

.portal-table {
  padding: 12px 14px;
  display: grid;
  gap: 10px;
}

.portal-table div {
  border-bottom: 1px solid #eef1f5;
  padding-bottom: 8px;
}

.portal-table div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.portal-table em {
  font-style: normal;
  font-weight: 850;
  color: var(--red);
}

.laptop-base {
  width: 86%;
  height: 26px;
  margin: 0 auto;
  background: linear-gradient(180deg, #d9dde4, #8f98a7);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 20px 45px rgba(0,0,0,.28);
}

.audit-hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.audit-hero-copy {
  padding: 72px 44px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audit-hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}

.audit-hero-copy h1 span {
  color: var(--red);
}

.audit-hero-copy p {
  max-width: 560px;
  margin: 0 0 28px;
  color: #3f4650;
  font-size: 19px;
  line-height: 1.6;
}

.audit-trust-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

.audit-trust-row span {
  color: #4d5662;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-left: 3px solid #dfe3ea;
  padding-left: 10px;
}

.audit-visual {
  padding: 34px 40px 34px 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 24%, rgba(214,18,28,.16), transparent 26%),
    linear-gradient(135deg, #f7f8fa, #fff);
}

.audit-collage {
  position: relative;
  width: min(680px, 100%);
  min-height: 560px;
}

.audit-tile,
.audit-laptop,
.audit-badge {
  position: absolute;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(16,24,40,.16);
}

.audit-tile {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  background: #16181d;
}

.audit-tile.package {
  left: 0;
  top: 0;
  width: 210px;
  height: 130px;
  background: linear-gradient(135deg, #111216, #2a2d35);
}

.audit-tile.storefront {
  left: 225px;
  top: 0;
  width: 210px;
  height: 130px;
  background: linear-gradient(135deg, #8a5b36, #2a2019);
}

.audit-tile.apparel {
  right: 0;
  top: 0;
  width: 210px;
  height: 130px;
  background: linear-gradient(135deg, #1b1c20, #090a0c);
}

.audit-laptop {
  left: 70px;
  top: 150px;
  right: 38px;
  height: 310px;
  padding: 14px;
  background: #20232a;
  border-color: #111216;
  transform: rotate(-1deg);
}

.audit-screen {
  height: 100%;
  background: #f5f7fa;
  border-radius: 8px;
  overflow: hidden;
}

.audit-screen-bar {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: #fff;
  border-bottom: 1px solid #e3e7ed;
}

.audit-screen-bar strong {
  color: var(--red);
}

.audit-screen-bar span {
  color: #6c7480;
  font-size: 12px;
  font-weight: 850;
}

.audit-map {
  position: absolute;
  left: 32px;
  top: 82px;
  width: 52%;
  height: 190px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(214,18,28,.08) 1px, transparent 1px),
    linear-gradient(rgba(214,18,28,.08) 1px, transparent 1px),
    #fff;
  background-size: 38px 38px;
  border: 1px solid #e3e7ed;
}

.audit-map i {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(214,18,28,.12);
}

.audit-chart {
  position: absolute;
  right: 32px;
  top: 104px;
  width: 190px;
  height: 168px;
  padding: 22px 18px;
  display: flex;
  align-items: end;
  gap: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e3e7ed;
}

.audit-chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #ff8a00, var(--red));
}

.audit-badge {
  left: 120px;
  bottom: 26px;
  width: 420px;
  padding: 16px 22px;
  background: #fff;
  color: #15171c;
  font-weight: 900;
  text-align: center;
}

.audit-section {
  background: #fff;
}

.audit-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 360px;
}

.audit-steps div {
  text-align: center;
  border-top: 2px solid #e7ebf0;
  padding-top: 14px;
}

.audit-steps strong,
.audit-steps span {
  display: block;
}

.audit-steps span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.audit-tool-grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.15fr) minmax(260px, .65fr);
  gap: 28px;
  align-items: start;
}

.audit-form,
.audit-results,
.audit-side,
.audit-bottom-cta {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16,24,40,.08);
}

.audit-form,
.audit-results,
.audit-side {
  padding: 24px;
}

.audit-form h3,
.audit-results h3,
.audit-side h3 {
  margin-top: 0;
}

.audit-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 850;
}

.audit-form select {
  width: 100%;
  border: 1px solid #dce1e8;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
  font: inherit;
  color: #2b3038;
}

.audit-form fieldset {
  border: 1px solid #e5e9ef;
  border-radius: 10px;
  padding: 14px;
  margin: 0 0 14px;
}

.audit-form legend {
  padding: 0 6px;
  font-weight: 900;
}

.audit-check {
  margin: 8px 0;
  display: flex !important;
  grid-template-columns: none !important;
  gap: 9px !important;
  align-items: center;
  color: #3e4650;
}

.audit-run {
  width: 100%;
}

.audit-secure {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.audit-result-grid {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(240px, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.audit-score-card,
.audit-risk-card {
  border: 1px solid #e5e9ef;
  border-radius: 12px;
  padding: 20px;
}

.audit-ring {
  --score: 226deg;
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#ff8a00 var(--score), #eceff4 0);
  position: relative;
}

.audit-ring:before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: #fff;
}

.audit-score,
.audit-ring small {
  position: relative;
  z-index: 1;
}

.audit-score {
  font-size: 46px;
  font-weight: 950;
}

.audit-ring small {
  align-self: end;
  margin-bottom: 38px;
  margin-left: -2px;
  color: var(--muted);
}

.audit-risk-card span {
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
}

.audit-risk-level {
  display: block;
  margin: 6px 0 8px;
  color: #f08a00;
  font-size: 24px;
}

.audit-risk-level[data-level="high"] {
  color: var(--red);
}

.audit-risk-level[data-level="low"] {
  color: #11a05d;
}

.audit-risk-copy {
  color: #4d5662;
  line-height: 1.5;
}

.audit-bars {
  display: grid;
  gap: 10px;
}

.audit-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr 76px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.audit-bar {
  height: 8px;
  border-radius: 999px;
  background: #eef1f5;
  overflow: hidden;
}

.audit-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #11a05d, #ff8a00, var(--red));
}

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

.audit-list li {
  border-left: 3px solid var(--red);
  padding-left: 12px;
}

.audit-list strong,
.audit-list span {
  display: block;
}

.audit-list span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.audit-bottom-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
}

.audit-bottom-cta h2 {
  margin: 0 0 4px;
}

.audit-bottom-cta p {
  margin: 0;
  color: var(--muted);
}

.audit-logo-strip {
  margin-top: 30px;
  border: 0;
}

.event-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 34px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2)) 36px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.event-hero-copy {
  padding: 40px 0;
}

.event-hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 5.6vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.event-hero-copy h1 span {
  color: var(--red);
}

.event-hero-copy p {
  max-width: 560px;
  margin: 0 0 28px;
  color: #303640;
  font-size: 18px;
  line-height: 1.55;
}

.event-proof-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.event-proof-row span {
  border-left: 3px solid #e5e8ee;
  padding-left: 10px;
  color: #3d454f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.event-hero-visual {
  width: 100%;
  max-width: 760px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  background: #f7f8fa;
  box-shadow: 0 22px 60px rgba(16, 24, 40, .14);
}

.event-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.event-section {
  background: #fff;
}

.event-tool-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.event-tool-panel h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.1;
}

.event-tool-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.event-mini-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.event-mini-grid span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #303640;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  padding: 8px;
}

.event-score-preview {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 999px;
  background: conic-gradient(#159447 78%, #eef1f5 0);
  position: relative;
}

.event-score-preview:before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: inherit;
  background: #fff;
}

.event-score-preview strong,
.event-score-preview span,
.event-score-preview p {
  position: relative;
  z-index: 1;
}

.event-score-preview strong {
  font-size: 44px;
  line-height: 1;
}

.event-score-preview p {
  width: 110px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
}

.display-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.25fr);
  align-items: stretch;
  background: #090a0d;
  color: #fff;
  overflow: hidden;
}

.display-hero-copy {
  padding: 78px 6vw 72px;
  align-self: center;
}

.display-hero-copy h1 {
  font-size: clamp(44px, 5vw, 74px);
  line-height: .96;
  letter-spacing: -.04em;
  margin: 0 0 24px;
}

.display-hero-copy h1 span {
  color: var(--red);
}

.display-hero-copy p {
  max-width: 540px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px;
}

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

.display-hero-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #090a0d 0%, rgba(9,10,13,.58) 24%, rgba(9,10,13,.06) 58%);
  z-index: 1;
  pointer-events: none;
}

.display-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% 50%;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.display-before-after {
  background: #0b0c10;
  padding-top: 34px;
  padding-bottom: 34px;
}

.display-ba-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.display-ba-list {
  padding: 26px;
  color: #15161a;
}

.display-ba-list ul {
  margin: 16px 0 0;
  padding-left: 18px;
  line-height: 1.9;
  color: #333842;
}

.display-ba-image {
  min-height: 240px;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  overflow: hidden;
}

.display-ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 10%;
  display: block;
}

.display-tool-panel {
  align-items: center;
}

.display-process .card {
  text-align: center;
}

.coop-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(520px, 1fr);
  align-items: center;
  gap: 42px;
  padding: 72px 6vw;
  background: linear-gradient(120deg, #fff 0%, #fff 52%, #f4f5f7 52%, #f9fafb 100%);
  overflow: hidden;
}

.coop-copy h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.04em;
  margin: 0 0 24px;
}

.coop-copy h1 span {
  color: var(--red);
}

.coop-copy p {
  max-width: 600px;
  color: #343943;
  font-size: 18px;
  line-height: 1.6;
}

.coop-police-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.coop-police-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 57% 22%;
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(16,24,40,.18);
}

.approval-board {
  position: absolute;
  left: -18px;
  top: 42px;
  z-index: 2;
  width: min(330px, 72%);
  padding: 24px;
  border-radius: 18px;
  background: rgba(10,11,14,.94);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.approval-board h3 {
  margin: 0 0 16px;
  font-size: 26px;
}

.approved-stamp {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.asset-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 14px;
}

.asset-row b {
  color: #fff;
}

.dark-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 14px;
  background: #111215;
  color: #fff;
}

.dark-panel h2 {
  margin-top: 0;
}

.dark-panel ul {
  columns: 2;
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.9;
  color: rgba(255,255,255,.84);
}

.critical-hero .display-hero-visual img {
  object-position: 52% 50%;
}

.rollout-hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(560px, 1.25fr);
  align-items: center;
  gap: 36px;
  padding: 64px 6vw;
  background: #fff;
  overflow: hidden;
}

.rollout-copy h1 {
  font-size: clamp(44px, 5vw, 74px);
  line-height: .98;
  letter-spacing: -.04em;
  margin: 0 0 24px;
}

.rollout-copy h1 span {
  color: var(--red);
}

.rollout-copy p {
  max-width: 650px;
  color: #343943;
  font-size: 18px;
  line-height: 1.6;
}

.rollout-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(16,24,40,.12);
}

.kit-hero .display-hero-visual img {
  object-position: 53% 50%;
}

.sales-hero .display-hero-visual img {
  object-position: 50% 24%;
}

.critical-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.14), transparent 34%), linear-gradient(135deg, #22252b, #06070a);
  overflow: hidden;
}

.critical-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 84px);
  opacity: .55;
}

.mail-piece {
  position: absolute;
  z-index: 1;
  width: 300px;
  min-height: 190px;
  padding: 24px;
  border-radius: 10px;
  background: #fff;
  color: #111827;
  box-shadow: 0 24px 60px rgba(0,0,0,.36);
}

.mail-piece img {
  width: 112px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.mail-piece strong {
  display: block;
  font-size: 25px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.mail-piece span,
.mail-piece b {
  display: block;
  font-size: 14px;
  color: #4b5563;
}

.mail-piece.large {
  width: 390px;
  min-height: 280px;
  transform: rotate(8deg) translate(-10px,-16px);
}

.mail-piece.large:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 120px;
  background: var(--red);
  border-radius: 120px 0 0 0;
}

.mail-piece.envelope {
  left: 8%;
  bottom: 18%;
  transform: rotate(-7deg);
}

.mail-piece.card-piece {
  right: 8%;
  bottom: 13%;
  width: 250px;
  min-height: 160px;
  transform: rotate(5deg);
}

.digital-hero {
  background: radial-gradient(circle at 70% 20%, rgba(224, 16, 30, .18), transparent 32%), linear-gradient(135deg, #050607 0%, #111418 62%, #050607 100%);
  color: #fff;
}

.digital-hero-inner {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: 620px;
  padding: 58px 40px 66px;
}

.digital-hero-copy h1 {
  color: #fff;
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: .98;
  margin: 16px 0 20px;
  max-width: 760px;
}

.digital-hero-copy p {
  color: rgba(255,255,255,.82);
  font-size: 20px;
  line-height: 1.55;
  max-width: 600px;
}

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

.digital-hero-main,
.digital-hero-card {
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
  object-fit: contain;
}

.digital-hero-main {
  background: rgba(255,255,255,.98);
  display: block;
  height: 410px;
  margin-left: auto;
  padding: 14px;
  width: min(720px, 100%);
}

.digital-hero-card {
  background: #fff;
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px;
  position: absolute;
}

.digital-hero-card.card-one {
  bottom: 0;
  height: 210px;
  left: 0;
  width: 290px;
}

.digital-hero-card.card-two {
  bottom: 8px;
  height: 190px;
  right: 18px;
  width: 350px;
}

.digital-proof-band {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(17,24,39,.08);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: -44px auto 40px;
  max-width: 1320px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.digital-proof-item {
  border-right: 1px solid #e5e7eb;
  padding: 28px 22px;
  text-align: center;
}

.digital-proof-item:last-child {
  border-right: 0;
}

.digital-proof-item span {
  color: var(--ink);
  display: block;
  font-weight: 900;
  margin-bottom: 10px;
}

.digital-proof-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.two-col-section {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr .86fr;
}

.section-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 720px;
}

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

.feature-tile {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17,24,39,.05);
  padding: 22px;
}

.feature-tile h3 {
  margin: 0 0 8px;
}

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

.digital-compare-panel {
  background: linear-gradient(135deg, #090a0d, #191d22);
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(17,24,39,.16);
  color: #fff;
  padding: 34px;
}

.digital-compare-panel h3 {
  font-size: 28px;
  margin: 0 0 24px;
}

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

.compare-columns div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 20px;
}

.compare-columns strong {
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.compare-columns ul {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin: 0;
  padding-left: 18px;
}

.examples-section {
  background: #f7f8fa;
}

.examples-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.example-tab {
  background: #fff;
  border: 1px solid #d7dce3;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 12px 16px;
}

.example-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.examples-showcase {
  align-items: stretch;
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(17,24,39,.08);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr);
  overflow: hidden;
}

.example-image-wrap {
  align-items: center;
  background: linear-gradient(135deg, #f5f6f8, #fff);
  display: flex;
  min-height: 520px;
  padding: 28px;
}

.example-image-wrap img {
  border-radius: 8px;
  max-height: 610px;
  object-fit: contain;
  width: 100%;
}

.example-copy {
  border-left: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.example-copy h3 {
  font-size: 34px;
  line-height: 1.08;
  margin: 12px 0 16px;
}

.example-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.example-copy ul {
  color: var(--ink);
  line-height: 1.7;
  margin: 6px 0 24px;
  padding-left: 18px;
}

.tool-embed-section {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr .92fr;
}

.tool-embed-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 680px;
}

.tool-embed-card {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  border: 1px solid #f0c7c7;
  border-radius: 8px;
  box-shadow: 0 22px 45px rgba(224,16,30,.12);
  padding: 30px;
}

.mini-steps {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.mini-steps span {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  padding: 14px;
}

.vendor-hero {
  background: linear-gradient(135deg, #f8f5ef 0%, #fff 56%, #f1f3f6 100%);
  overflow: hidden;
}

.vendor-hero.light {
  background: #fff;
}

.vendor-hero-inner {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: 610px;
  padding: 52px 40px;
}

.vendor-copy h1 {
  font-size: clamp(44px, 4.7vw, 72px);
  line-height: 1;
  margin: 14px 0 20px;
  max-width: 760px;
}

.vendor-copy p {
  color: #303640;
  font-size: 18px;
  line-height: 1.55;
  max-width: 620px;
}

.vendor-visual-crop {
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17,24,39,.18);
  height: 520px;
  overflow: hidden;
  position: relative;
}

.vendor-visual-crop img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 200%;
}

.vendor-visual-crop.crop-left img {
  left: 0;
}

.vendor-visual-crop.crop-right img {
  right: 0;
}

.vendor-dark-band {
  background: linear-gradient(135deg, #071018, #111820);
  color: #fff;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1440px;
}

.vendor-dark-band div {
  border-right: 1px solid rgba(255,255,255,.13);
  padding: 32px 26px;
  text-align: center;
}

.vendor-dark-band div:last-child {
  border-right: 0;
}

.vendor-dark-band strong {
  display: block;
  font-size: 17px;
  margin-bottom: 10px;
}

.vendor-dark-band p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

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

.vendor-question-card {
  background: linear-gradient(135deg, #061018, #111923);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(17,24,39,.18);
  color: #fff;
  margin: -28px auto 38px;
  max-width: 1180px;
  padding: 34px;
  position: relative;
  z-index: 4;
}

.vendor-question-card h2 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 18px;
}

.question-list {
  display: grid;
  gap: 0;
}

.question-list p {
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.83);
  margin: 0;
  padding: 14px 0 14px 28px;
  position: relative;
}

.question-list p:before {
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  content: "?";
  font-size: 12px;
  font-weight: 900;
  height: 18px;
  left: 0;
  line-height: 18px;
  position: absolute;
  text-align: center;
  top: 15px;
  width: 18px;
}

.vendor-proof-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr .85fr;
}

.qsr-hero {
  background: linear-gradient(135deg, #fff 0%, #f7f8fa 58%, #fff5f5 100%);
  border-bottom: 1px solid #e5e7eb;
}

.qsr-hero-inner {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 560px;
  padding: 58px 40px;
}

.qsr-hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  margin: 12px 0 22px;
}

.qsr-hero p {
  color: #303640;
  font-size: 19px;
  line-height: 1.55;
  max-width: 720px;
}

.qsr-hero-card {
  background: linear-gradient(135deg, #080d12, #151a21);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17,24,39,.18);
  color: #fff;
  overflow: hidden;
  padding: 36px;
  position: relative;
}

.qsr-hero-card.visual {
  padding: 18px;
}

.qsr-hero-card:before {
  background: radial-gradient(circle, rgba(224,16,30,.38), transparent 62%);
  content: "";
  height: 280px;
  position: absolute;
  right: -80px;
  top: -100px;
  width: 280px;
}

.qsr-visual-img {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: block;
  height: 270px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center;
  position: relative;
  width: 100%;
  z-index: 1;
}

.qsr-visual-img.contain {
  background: #fff;
  object-fit: contain;
  padding: 12px;
}

.qsr-visual-img.left {
  object-position: left center;
}

.qsr-visual-img.right {
  object-position: right center;
}

.qsr-visual-img.qsr-illustration {
  background: #111318;
  object-fit: cover;
  object-position: center;
}

.qsr-visual-img.qsr-photo {
  background: #111318;
  object-fit: cover;
  object-position: center;
}

.qsr-hero-card h2,
.qsr-hero-card p {
  color: #fff;
  position: relative;
}

.qsr-hero-card h2 {
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.qsr-hero-card p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  margin: 0;
}

.qsr-icon-card {
  position: relative;
}

.qsr-icon-card:before {
  align-items: center;
  background: #fff5f5;
  background-image: url("assets/qsr-icon-target.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px 28px;
  border: 1px solid #ffd1d5;
  border-radius: 999px;
  color: var(--red);
  content: "";
  display: flex;
  font-size: 20px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.qsr-icon-card:nth-child(2):before {
  background-image: url("assets/qsr-icon-route.svg");
}

.qsr-icon-card:nth-child(3):before {
  background-image: url("assets/qsr-icon-warning.svg");
}

.qsr-icon-card:nth-child(4):before {
  background-image: url("assets/qsr-icon-visibility.svg");
}

.qsr-easy-strip {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17,24,39,.07);
  counter-reset: easy-step;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -28px auto 34px;
  max-width: 1120px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.qsr-easy-strip div {
  counter-increment: easy-step;
  border-right: 1px solid #e5e7eb;
  padding: 22px 24px;
  position: relative;
}

.qsr-easy-strip div:before {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  content: counter(easy-step);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  margin-bottom: 12px;
  width: 28px;
}

.qsr-easy-strip div:last-child {
  border-right: 0;
}

.qsr-easy-strip strong {
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

.qsr-easy-strip p {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.proof-hero {
  background: linear-gradient(135deg, #fff 0%, #f7f8fa 54%, #fff 100%);
  border-bottom: 1px solid #e5e7eb;
}

.proof-hero.dark {
  background: linear-gradient(135deg, #0f1117 0%, #181b22 58%, #2a070b 100%);
  color: #fff;
}

.proof-hero-inner {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1fr);
  margin: 0 auto;
  max-width: 1360px;
  min-height: 590px;
  padding: 62px 40px;
}

.proof-copy h1 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
  margin: 14px 0 22px;
}

.proof-copy h1 span,
.proof-copy strong {
  color: var(--red);
}

.proof-copy p {
  color: #343a45;
  font-size: 18px;
  line-height: 1.58;
  max-width: 650px;
}

.proof-hero.dark .proof-copy p {
  color: rgba(255,255,255,.78);
}

.proof-hero.dark .eyebrow,
.proof-hero.dark h1 {
  color: #fff;
}

.proof-visual {
  background: #111318;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17,24,39,.18);
  color: #fff;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.proof-visual.light {
  background: #fff;
  color: var(--ink);
}

.proof-visual.photo {
  min-height: 430px;
  padding: 0;
}

.proof-visual.photo img {
  display: block;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  width: 100%;
}

.proof-logo-compare {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 430px;
}

.proof-side {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 26px;
}

.proof-side h2 {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.proof-side.fit h2 {
  color: #b7ff75;
}

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

.logo-tile-grid div {
  background: linear-gradient(180deg, #f5f6f8, #cfd4dc);
  border-radius: 6px;
  color: #2f343c;
  font-size: 12px;
  font-weight: 900;
  min-height: 62px;
  padding: 18px 8px;
  text-align: center;
}

.fit-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.fit-list li {
  color: rgba(255,255,255,.9);
  font-weight: 800;
  list-style: none;
  padding-left: 34px;
  position: relative;
}

.fit-list li:before {
  align-items: center;
  border: 2px solid #b7ff75;
  border-radius: 999px;
  color: #b7ff75;
  content: "✓";
  display: inline-flex;
  font-size: 13px;
  height: 22px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: -1px;
  width: 22px;
}

.proof-vs {
  align-self: center;
  border: 2px solid var(--red);
  border-radius: 999px;
  color: #fff;
  display: grid;
  font-size: 22px;
  font-weight: 950;
  height: 72px;
  place-items: center;
  width: 72px;
}

.proof-benefit-row,
.proof-icon-row {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 26px auto;
  max-width: 1240px;
  overflow: hidden;
}

.proof-benefit-row div,
.proof-icon-row div {
  border-right: 1px solid #e5e7eb;
  padding: 24px 22px;
}

.proof-benefit-row div:last-child,
.proof-icon-row div:last-child {
  border-right: 0;
}

.proof-benefit-row img,
.proof-icon-row img,
.proof-card-icon {
  background: #fff5f5;
  border-radius: 999px;
  display: block;
  height: 46px;
  margin-bottom: 14px;
  padding: 10px;
  width: 46px;
}

.proof-benefit-row strong,
.proof-icon-row strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.proof-benefit-row p,
.proof-icon-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.proof-tool {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .38fr);
}

.tool-window {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.tool-window h2 {
  font-size: 34px;
  margin: 0 0 8px;
  text-align: center;
}

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

.tool-choice-grid div {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  min-height: 112px;
  padding: 18px;
  text-align: center;
}

.tool-choice-grid img {
  height: 34px;
  margin: 0 auto 12px;
  width: 34px;
}

.tool-choice-grid strong {
  display: block;
  font-size: 14px;
}

.score-preview {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.score-number {
  align-items: center;
  border: 16px solid #e5e7eb;
  border-right-color: var(--red);
  border-top-color: var(--red);
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  height: 142px;
  justify-content: center;
  margin: 10px auto 24px;
  width: 142px;
}

.score-number strong {
  color: var(--red);
  font-size: 46px;
  line-height: 1;
}

.score-list {
  display: grid;
  gap: 12px;
}

.score-list div {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 86px;
}

.score-list i {
  background: #e5e7eb;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.score-list b {
  background: #16a34a;
  display: block;
  height: 100%;
}

.calculator-mock {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  padding: 30px;
}

.calc-row {
  margin-bottom: 22px;
}

.calc-row span {
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calc-row i {
  background: #e5e7eb;
  border-radius: 999px;
  display: block;
  height: 7px;
}

.calc-row b {
  background: var(--red);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.impact-list {
  background: #fff5f5;
  border: 1px solid #ffd1d5;
  border-radius: 8px;
  padding: 22px;
}

.impact-list div {
  align-items: center;
  border-bottom: 1px solid #ffd1d5;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 0;
}

.impact-list div:last-child {
  border-bottom: 0;
}

.impact-list strong {
  color: var(--red);
  font-size: 24px;
}

.pilot-domino {
  align-items: end;
  background: linear-gradient(135deg, #15161b, #262a31);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  min-height: 430px;
  overflow: hidden;
  padding: 80px 54px;
  position: relative;
}

.pilot-domino:before,
.pilot-domino:after {
  color: rgba(255,255,255,.9);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  position: absolute;
  top: 50px;
  white-space: pre;
}

.pilot-domino:before {
  content: "BIG CHANGE\A FEELS RISKY.";
  left: 54px;
}

.pilot-domino:after {
  content: "SMART CHANGE\A FEELS SAFE.";
  right: 54px;
}

.domino {
  background: #f5f4ef;
  border-radius: 8px;
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
  height: 178px;
  width: 46px;
}

.domino.dark {
  background: #111318;
  transform: rotate(-28deg);
  transform-origin: bottom center;
}

.domino.red {
  background: var(--red);
}

.page-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 16px auto 0;
  max-width: 1180px;
}

.comp-page {
  background: #f7f8fa;
}

.muted {
  color: var(--muted);
}

.comp-page .site-header {
  background: #050607;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
}

.comp-page .nav-wrap {
  max-width: 1280px;
  min-height: 70px;
}

.comp-page .brand img {
  width: 185px;
}

.comp-page .nav a {
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

.comp-page .nav a:hover,
.comp-page .nav a.active,
.comp-page .nav .btn {
  color: #fff;
}

.comp-main {
  background: #f7f8fa;
}

.comp-hero {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.comp-hero.dark-split {
  background: #0a0b0d;
  color: #fff;
}

.comp-hero-grid {
  display: grid;
  grid-template-columns: minmax(390px, .86fr) minmax(0, 1.12fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: 510px;
}

.comp-hero-copy {
  align-self: center;
  padding: 58px clamp(28px, 4.4vw, 62px);
}

.comp-hero-copy .eyebrow {
  color: var(--red);
  font-size: 15px;
  margin-bottom: 18px;
}

.comp-hero-copy h1 {
  color: #0b0d12;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 690px;
}

.comp-hero.dark-split .comp-hero-copy h1,
.comp-hero.dark-split .comp-hero-copy p {
  color: #fff;
}

.comp-hero-copy h1 span {
  color: var(--red);
}

.comp-hero-copy p {
  color: #252932;
  font-size: 18px;
  line-height: 1.58;
  margin: 0 0 18px;
  max-width: 570px;
}

.comp-hero-art {
  background: #0b0d10;
  min-height: 510px;
  overflow: hidden;
}

.comp-hero-art img {
  display: block;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  width: 100%;
}

.comp-stat-strip,
.comp-benefits {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  margin: 28px auto;
  max-width: 1220px;
  overflow: hidden;
}

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

.comp-stat-strip {
  align-items: center;
  grid-template-columns: .82fr 1.18fr .7fr;
  padding: 26px 34px;
}

.comp-stat-strip > div {
  border-right: 1px solid #e5e7eb;
  min-height: 78px;
  padding: 0 26px;
}

.comp-stat-strip > div:last-child {
  border-right: 0;
}

.comp-stat-number {
  color: var(--red);
  display: block;
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
}

.comp-benefit {
  border-right: 1px solid #e5e7eb;
  display: grid;
  gap: 10px;
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 24px 26px;
}

.comp-benefit:last-child {
  border-right: 0;
}

.comp-benefit img,
.comp-mini-icon {
  background: #fff5f5;
  border-radius: 999px;
  height: 48px;
  padding: 10px;
  width: 48px;
}

.comp-benefit strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.comp-benefit p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.comp-tool-wrap {
  display: grid;
  gap: 10px;
  grid-template-columns: 250px minmax(0, 1fr) 300px;
  margin: 0 auto 28px;
  max-width: 1220px;
}

.comp-tool-main,
.comp-tool-rail,
.comp-tool-score,
.comp-results,
.comp-cost-card,
.comp-bottom-cta {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.comp-tool-rail {
  padding: 26px 18px;
}

.comp-step {
  align-items: center;
  display: flex;
  gap: 12px;
  padding: 15px 10px;
}

.comp-step b {
  background: #fff;
  border: 1px solid #d8dce3;
  border-radius: 999px;
  display: grid;
  flex: 0 0 30px;
  font-size: 13px;
  height: 30px;
  place-items: center;
  width: 30px;
}

.comp-step.active b {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.comp-step span {
  font-size: 13px;
  font-weight: 850;
}

.comp-tool-main {
  padding: 30px 28px;
}

.comp-tool-title {
  margin: 0 0 22px;
  text-align: center;
}

.comp-tool-title h2 {
  font-size: 31px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.comp-tool-title p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 660px;
}

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

.comp-choice {
  align-items: center;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 112px;
  padding: 16px 10px;
  position: relative;
  text-align: center;
}

.comp-choice.selected {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(214,18,28,.18);
}

.comp-choice.selected:after {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  content: "✓";
  display: flex;
  font-size: 11px;
  font-weight: 950;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 20px;
}

.comp-choice img {
  height: 34px;
  width: 34px;
}

.comp-choice strong {
  font-size: 13px;
  line-height: 1.2;
}

.comp-tool-actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
}

.comp-tool-actions .btn-primary {
  min-width: 280px;
}

.comp-tool-score {
  padding: 28px;
}

.comp-tool-score h3 {
  font-size: 15px;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.comp-score-ring {
  border: 14px solid #e7e8eb;
  border-radius: 999px;
  border-right-color: var(--red);
  border-top-color: var(--red);
  display: grid;
  height: 134px;
  margin: 0 auto 24px;
  place-items: center;
  width: 134px;
}

.comp-score-ring strong {
  color: var(--red);
  display: block;
  font-size: 48px;
  line-height: .9;
}

.comp-score-ring span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.comp-score-detail {
  border-top: 1px solid #e5e7eb;
  display: grid;
  gap: 16px;
  padding-top: 20px;
}

.comp-score-detail div {
  display: grid;
  gap: 6px;
}

.comp-score-detail span {
  font-size: 13px;
  font-weight: 800;
}

.comp-score-detail i {
  background: #e7e8eb;
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
}

.comp-score-detail b {
  background: #16994a;
  border-radius: inherit;
  display: block;
  height: 100%;
}

.comp-score-detail .warn b {
  background: #f59e0b;
}

.comp-results {
  margin: 0 auto 28px;
  max-width: 1220px;
  padding: 26px;
  text-align: center;
}

.comp-results h2 {
  font-size: 25px;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.comp-results-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.comp-results-grid > div {
  border-right: 1px solid #e5e7eb;
  padding: 0 20px;
}

.comp-results-grid > div:last-child {
  border-right: 0;
}

.comp-results-grid img {
  height: 48px;
  margin-bottom: 12px;
  width: 48px;
}

.comp-results-grid strong {
  display: block;
  margin-bottom: 6px;
}

.comp-results-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  margin: 0;
}

.comp-bottom-cta {
  align-items: center;
  background: #080b0f;
  color: #fff;
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr 360px;
  margin: 0 auto 28px;
  max-width: 1220px;
  padding: 34px 42px;
}

.comp-bottom-cta h2 {
  color: #fff;
  font-size: 30px;
  line-height: 1.16;
  margin: 0 0 8px;
}

.comp-bottom-cta p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

.comp-bottom-cta .btn {
  width: 100%;
}

.comp-bottom-actions {
  display: grid;
  gap: 12px;
}

.comp-cost-hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: .78fr 1fr;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 470px;
  padding: 30px clamp(28px, 4vw, 56px);
}

.comp-cost-card {
  overflow: hidden;
  padding: 0;
}

.comp-cost-card img {
  display: block;
  width: 100%;
}

.comp-cost-hide {
  margin: 0 auto;
  max-width: 1280px;
  padding: 28px 24px 18px;
}

.comp-cost-hide h2 {
  font-size: 36px;
  margin: 0 0 20px;
  text-align: center;
}

.comp-cost-callout {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  display: grid;
  gap: 34px;
  grid-template-columns: .85fr 1.15fr;
  margin-top: 22px;
  padding: 28px clamp(28px, 8vw, 240px);
}

.comp-cost-callout h2 {
  font-size: 30px;
  line-height: 1.12;
  margin: 0;
}

.comp-red-band {
  align-items: center;
  background: linear-gradient(135deg, #b90813, #e21824);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 330px;
  padding: 26px clamp(28px, 10vw, 250px);
}

.comp-red-band h2 {
  color: #fff;
  font-size: 30px;
  margin: 0;
}

.gallery-shell {
  background: #f5f6f8;
  min-height: 100vh;
}

.gallery-hero {
  background: linear-gradient(135deg, #090b0f 0%, #171a20 64%, #3a070d 100%);
  color: #fff;
  padding: 54px 24px 38px;
}

.gallery-hero-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 420px;
  margin: 0 auto;
  max-width: 1240px;
}

.gallery-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  margin: 12px 0 18px;
}

.gallery-hero h1 span {
  color: var(--red);
}

.gallery-hero p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.55;
  max-width: 760px;
}

.gallery-builder {
  background: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
  color: var(--ink);
  padding: 22px;
}

.gallery-builder h2 {
  font-size: 20px;
  margin: 0 0 12px;
}

.gallery-builder label {
  color: #4b5563;
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin: 12px 0 6px;
  text-transform: uppercase;
}

.gallery-builder input,
.gallery-builder select {
  border: 1px solid #d8dde6;
  border-radius: 8px;
  font: inherit;
  padding: 12px;
  width: 100%;
}

.gallery-output {
  background: #f7f8fa;
  border: 1px solid #e1e5ec;
  border-radius: 8px;
  color: #2f3540;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 14px;
  overflow-wrap: anywhere;
  padding: 12px;
}

.gallery-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px auto 0;
  max-width: 1240px;
}

.gallery-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 18px;
}

.gallery-stat strong {
  color: #fff;
  display: block;
  font-size: 30px;
  line-height: 1;
}

.gallery-stat span {
  color: rgba(255,255,255,.72);
  display: block;
  font-size: 13px;
  margin-top: 7px;
}

.gallery-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 24px;
}

.gallery-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-filter {
  background: #fff;
  border: 1px solid #dfe3ea;
  border-radius: 999px;
  color: #374151;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  padding: 10px 14px;
}

.gallery-filter.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.gallery-search {
  border: 1px solid #dfe3ea;
  border-radius: 999px;
  font: inherit;
  min-width: 280px;
  padding: 12px 16px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 24px 40px;
}

.gallery-card {
  background: #fff;
  border: 1px solid #e2e6ed;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(15,23,42,.07);
  display: flex;
  flex-direction: column;
  min-height: 310px;
  overflow: hidden;
}

.gallery-card-top {
  background: linear-gradient(135deg, #101318, #2b0509);
  color: #fff;
  min-height: 90px;
  padding: 18px;
}

.gallery-card-top .tag {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}

.gallery-card h3 {
  font-size: 23px;
  line-height: 1.15;
  margin: 12px 0 0;
}

.gallery-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.gallery-card p {
  color: var(--muted);
  line-height: 1.48;
  margin: 0;
}

.gallery-meta {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.gallery-meta div {
  align-items: start;
  display: grid;
  gap: 8px;
  grid-template-columns: 78px minmax(0, 1fr);
  font-size: 13px;
}

.gallery-meta strong {
  color: #111827;
}

.gallery-meta span {
  color: #4b5563;
  overflow-wrap: anywhere;
}

.gallery-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
}

.gallery-actions .btn {
  min-height: 40px;
  padding: 10px 12px;
}

.gallery-card.is-hidden {
  display: none;
}

@media (max-width: 980px) {
  .digital-hero-inner,
  .two-col-section,
  .examples-showcase,
  .tool-embed-section,
  .vendor-hero-inner,
  .vendor-proof-grid,
  .qsr-hero-inner {
    grid-template-columns: 1fr;
  }

  .digital-hero-inner {
    padding: 46px 24px 70px;
  }

  .digital-hero-visual {
    min-height: 620px;
  }

  .digital-proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 20px;
    margin-right: 20px;
  }

  .digital-proof-item:nth-child(2n) {
    border-right: 0;
  }

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

  .example-copy {
    border-left: 0;
    border-top: 1px solid #e5e7eb;
  }

  .vendor-hero-inner {
    padding: 42px 24px;
  }

  .vendor-visual-crop {
    height: 620px;
  }

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

  .vendor-dark-band div:nth-child(2n) {
    border-right: 0;
  }

  .qsr-hero-inner {
    padding: 42px 24px;
  }

  .qsr-easy-strip {
    grid-template-columns: 1fr;
    margin-left: 20px;
    margin-right: 20px;
  }

  .qsr-easy-strip div {
    border-bottom: 1px solid #e5e7eb;
    border-right: 0;
  }

  .qsr-easy-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .digital-hero-copy h1 {
    font-size: 42px;
  }

  .digital-hero-visual {
    min-height: auto;
  }

  .digital-hero-main {
    height: auto;
    width: 100%;
  }

  .digital-hero-card {
    margin-top: 14px;
    position: static;
  }

  .digital-hero-card.card-one,
  .digital-hero-card.card-two {
    height: auto;
    width: 100%;
  }

  .digital-proof-band,
  .feature-grid,
  .compare-columns,
  .mini-steps {
    grid-template-columns: 1fr;
  }

  .digital-proof-item {
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .example-image-wrap {
    min-height: 280px;
    padding: 18px;
  }

  .example-copy {
    padding: 28px;
  }

  .vendor-copy h1 {
    font-size: 42px;
  }

  .vendor-visual-crop {
    height: 420px;
  }

  .vendor-dark-band,
  .feature-grid.compact {
    grid-template-columns: 1fr;
  }

  .vendor-dark-band div {
    border-bottom: 1px solid rgba(255,255,255,.13);
    border-right: 0;
  }

  .vendor-question-card {
    margin-left: 20px;
    margin-right: 20px;
  }

  .qsr-hero h1 {
    font-size: 42px;
  }

  .qsr-hero-card {
    padding: 28px;
  }
}

@media (max-width: 980px) {
  .display-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .coop-hero {
    grid-template-columns: 1fr;
    padding: 52px 24px;
  }

  .rollout-hero {
    grid-template-columns: 1fr;
    padding: 52px 24px;
  }

  .coop-police-visual {
    min-height: 360px;
  }

  .coop-police-visual img {
    height: 380px;
  }

  .critical-visual {
    min-height: 440px;
  }

  .display-hero-copy {
    padding: 54px 24px 30px;
  }

  .display-hero-visual {
    min-height: 360px;
  }

  .display-hero-visual:before {
    background: linear-gradient(180deg, #090a0d 0%, rgba(9,10,13,.1) 42%, rgba(9,10,13,.03) 100%);
  }

  .display-ba-card {
    grid-template-columns: 1fr;
  }

  .dark-panel ul {
    columns: 1;
  }

  .display-ba-image {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }
}

@media (max-width: 640px) {
  .display-hero-copy h1 {
    font-size: 42px;
  }

  .coop-copy h1 {
    font-size: 42px;
  }

  .rollout-copy h1 {
    font-size: 42px;
  }

  .approval-board {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-bottom: 16px;
  }

  .coop-police-visual {
    display: block;
  }

  .mail-piece.large {
    width: 82%;
    transform: rotate(4deg);
  }

  .mail-piece.envelope,
  .mail-piece.card-piece {
    display: none;
  }

  .display-hero-visual {
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  .comp-hero-grid,
  .comp-cost-hero,
  .comp-tool-wrap,
  .comp-bottom-cta,
  .comp-red-band,
  .comp-cost-callout,
  .comp-stat-strip {
    grid-template-columns: 1fr;
  }

  .comp-hero-grid,
  .comp-hero-art,
  .comp-hero-art img {
    min-height: auto;
  }

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

  .comp-benefit,
  .comp-results-grid > div,
  .comp-stat-strip > div {
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .comp-benefit:last-child,
  .comp-results-grid > div:last-child,
  .comp-stat-strip > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .comp-page .nav {
    gap: 10px;
  }

  .comp-hero-copy {
    padding: 40px 22px;
  }

  .comp-hero-copy h1 {
    font-size: 42px;
  }

  .comp-benefits,
  .comp-results-grid,
  .comp-choice-grid {
    grid-template-columns: 1fr;
  }

  .comp-tool-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .comp-tool-actions .btn-primary {
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .landing-hero,
  .landing-hero.light {
    background: #fff;
    color: var(--ink);
  }

  .landing-hero-inner,
  .landing-hero.light .landing-hero-inner,
  .lead-panel {
    grid-template-columns: 1fr;
  }

  .landing-hero-copy p {
    color: #303640;
  }

  .landing-visual,
  .landing-visual.contain {
    min-height: 360px;
  }

  .merch-showcase-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .brandhub-visual {
    padding: 20px;
  }

  .portal-layout {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    display: none;
  }

  .logo-row,
  .journey-row,
  .system-card-list,
  .portal-metrics,
  .asset-grid,
  .audit-hero,
  .audit-tool-grid,
  .audit-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audit-hero,
  .audit-tool-grid {
    grid-template-columns: 1fr;
  }

  .audit-visual {
    padding: 28px;
  }

  .audit-collage {
    min-height: 500px;
  }

  .audit-steps,
  .audit-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  .audit-bottom-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-hero,
  .event-tool-panel {
    grid-template-columns: 1fr;
  }

  .event-hero-visual {
    justify-self: stretch;
    max-width: none;
  }

  .event-proof-row,
  .event-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dark-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .logo-row,
  .journey-row,
  .choice-grid,
  .system-card-list {
    grid-template-columns: 1fr;
  }

  .portal-topbar,
  .portal-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-search {
    flex-basis: auto;
    width: 100%;
  }

  .portal-metrics,
  .asset-grid,
  .audit-steps,
  .audit-trust-row,
  .audit-result-grid {
    grid-template-columns: 1fr;
  }

  .event-hero {
    padding: 40px 22px;
  }

  .event-proof-row,
  .event-mini-grid {
    grid-template-columns: 1fr;
  }

  .audit-hero-copy {
    padding: 44px 22px;
  }

  .audit-tile {
    display: none;
  }

  .audit-laptop {
    left: 0;
    right: 0;
    top: 40px;
  }

  .audit-badge {
    left: 12px;
    right: 12px;
    bottom: 24px;
    width: auto;
  }

  .audit-bar-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .proof-hero-inner,
  .proof-tool,
  .calculator-mock {
    grid-template-columns: 1fr;
  }

  .proof-logo-compare {
    grid-template-columns: 1fr;
  }

  .proof-vs {
    justify-self: center;
  }

  .proof-benefit-row,
  .proof-icon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-benefit-row div,
  .proof-icon-row div {
    border-bottom: 1px solid #e5e7eb;
  }
}

@media (max-width: 640px) {
  .proof-hero-inner {
    padding: 42px 20px;
  }

  .proof-copy h1 {
    font-size: 42px;
  }

  .proof-benefit-row,
  .proof-icon-row,
  .tool-choice-grid {
    grid-template-columns: 1fr;
  }

  .proof-benefit-row div,
  .proof-icon-row div {
    border-right: 0;
  }

  .proof-visual {
    padding: 22px;
  }

  .proof-visual.photo img {
    min-height: 300px;
  }

  .pilot-domino {
    min-height: 320px;
    padding: 96px 24px 42px;
  }

  .domino {
    height: 112px;
    width: 30px;
  }
}
