:root {
  --ink: #111111;
  --muted: #4c4c4c;
  --paper: #fbfaf6;
  --acid: #d8f25d;
  --cyan: #39c7d8;
  --pink: #e45b91;
  --violet: #4f46c8;
  --red: #e84a35;
  --black: #080808;
  --line: #111111;
  --shadow-hard: 6px 6px 0 #111111;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 26px 26px;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1160px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--line);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding-right: 8px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 2px 2px 0 var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 900;
}

.nav a {
  padding: 8px 11px;
  border-radius: 999px;
}

.nav a:hover {
  background: var(--cyan);
}

.nav-cta {
  color: #fff;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 70px) 74px;
  color: #fff;
  background: var(--black);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    repeating-linear-gradient(105deg, rgba(216, 242, 93, 0.14) 0 2px, transparent 2px 22px),
    #080808;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/sports-card-operations-hero.png");
  background-position: 72% center;
  background-size: cover;
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 34% 100%);
  filter: saturate(1.24) contrast(1.08);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.88) 36%, rgba(8, 8, 8, 0.24) 74%),
    linear-gradient(0deg, rgba(228, 91, 145, 0.18), transparent 45%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker,
.tool-label {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--line);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 8rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--line);
  font-weight: 950;
}

.button.primary {
  color: var(--ink);
  background: var(--acid);
}

.button.secondary {
  color: var(--ink);
  background: var(--cyan);
}

.hero-slab {
  position: absolute;
  right: clamp(18px, 5vw, 78px);
  bottom: 54px;
  width: min(300px, 38vw);
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(23, 215, 255, 0.92) 35%, rgba(255, 74, 162, 0.9) 70%, rgba(215, 255, 52, 0.94)),
    #fff;
  border: 3px solid #fff;
  border-radius: 18px;
  outline: 2px solid var(--line);
  box-shadow: -7px 7px 0 var(--pink);
  transform: rotate(3deg);
}

.hero-slab span {
  display: block;
  padding: 10px 0;
  border-bottom: 2px solid rgba(17, 17, 17, 0.44);
  font-size: 1.2rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-slab .slab-tag {
  padding-top: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.platform-band {
  display: flex;
  gap: 0;
  overflow-x: auto;
  color: var(--ink);
  background: var(--acid);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.platform-band span {
  min-width: max-content;
  padding: 16px clamp(22px, 5vw, 58px);
  border-right: 2px solid var(--line);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 950;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(66px, 10vw, 118px) 0;
}

h2 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5.4vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: 24px;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-hard);
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  grid-column: span 5;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 3;
}

.service-card:nth-child(1) {
  background: var(--cyan);
}

.service-card:nth-child(2) {
  background: #fff;
}

.service-card:nth-child(3) {
  background: var(--acid);
}

.service-card:nth-child(4) {
  background: var(--pink);
  color: #fff;
}

.card-icon {
  position: absolute;
  right: 18px;
  bottom: -28px;
  color: rgba(17, 17, 17, 0.16);
  font-size: 7.2rem;
  font-weight: 950;
  line-height: 1;
}

h3 {
  max-width: 440px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.8vw, 2.75rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card p,
.process-list li {
  max-width: 420px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 750;
}

.tools {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 61, 40, 0.24) 0 16%, transparent 16% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    var(--black);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.tool-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.tool-feature {
  min-width: 0;
  min-height: 300px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 22px;
  padding: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  background: var(--paper);
  border: 2px solid #fff;
  border-radius: 12px;
  outline: 2px solid var(--line);
  box-shadow: 6px 6px 0 var(--cyan);
  transform: none;
}

.tool-feature.accent {
  color: #fff;
  background: var(--violet);
  box-shadow: 6px 6px 0 var(--acid);
  transform: none;
}

.tool-feature.map-tool {
  background: var(--acid);
  box-shadow: 6px 6px 0 var(--pink);
  transform: none;
}

.tool-feature.crm-tool {
  background: #79c9ec;
  box-shadow: 6px 6px 0 var(--violet);
  transform: none;
}

.tool-feature.drop-tool {
  background: #fff;
  box-shadow: 6px 6px 0 var(--red);
  transform: none;
}

.tool-feature.live-tool {
  color: #fff;
  background: #101827;
  box-shadow: 6px 6px 0 var(--cyan);
  transform: none;
}

.tool-feature > div {
  min-width: 0;
}

.tool-label {
  width: fit-content;
  max-width: 100%;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--line);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.tool-feature h3 {
  max-width: 100%;
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 3.2vw, 3.5rem);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: keep-all;
}

.tool-feature p {
  max-width: 38rem;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 750;
  line-height: 1.35;
}

.tool-feature a {
  width: max-content;
  max-width: 100%;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--line);
  font-weight: 950;
  line-height: 1.2;
}

.tool-feature.live-tool a {
  color: var(--ink);
}

.tool-feature.live-tool p:not(.tool-label),
.tool-feature.accent p:not(.tool-label) {
  color: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 220px;
  padding: 22px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--line);
}

.process-list li:nth-child(odd) {
  transform: translateY(16px);
}

.process-list span {
  display: block;
  margin-bottom: 54px;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
  padding: clamp(52px, 8vw, 86px) max(18px, calc((100% - 1180px) / 2));
  color: var(--ink);
  background: var(--cyan);
  border-top: 2px solid var(--line);
}

.contact h2 {
  max-width: 860px;
}

.contact p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--line);
}

.form-note {
  margin: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
}

.turnstile-wrap {
  min-height: 65px;
}

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

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

label {
  display: grid;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--acid);
  outline-offset: 2px;
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--black);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--acid);
  font-weight: 950;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.response-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    var(--cyan);
  background-size: 26px 26px;
}

.response-card {
  width: min(760px, 100%);
  padding: clamp(24px, 5vw, 52px);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--line);
}

.response-card h1 {
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.response-card p:not(.section-kicker) {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 750;
}

.product-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
  padding: 140px clamp(18px, 5vw, 70px) 70px;
  color: #fff;
  background:
    repeating-linear-gradient(105deg, rgba(216, 242, 93, 0.13) 0 2px, transparent 2px 22px),
    var(--black);
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 750;
}

.product-hero-shot,
.screenshot-frame {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-hero-shot {
  align-self: center;
  padding: 12px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  box-shadow: 9px 9px 0 var(--pink);
  transform: rotate(1.4deg);
  overflow: hidden;
}

.product-hero-shot img,
.screenshot-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.livestore-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(216, 242, 93, 0.2), transparent 32%),
    radial-gradient(circle at 18% 86%, rgba(57, 199, 216, 0.2), transparent 30%),
    var(--black);
}

.livestore-shot {
  background: #111827;
}

.live-window {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
  gap: 14px;
  color: #fff;
}

.live-video {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(216, 242, 93, 0.22), transparent 44%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.08)),
    #273248;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.live-video span {
  width: fit-content;
  padding: 6px 9px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-weight: 950;
}

.live-video strong {
  max-width: 360px;
  font-size: clamp(1.5rem, 3vw, 2.65rem);
  line-height: 1;
  text-transform: uppercase;
}

.live-video em {
  color: var(--acid);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.live-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 12px;
}

.live-panel p {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.live-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.live-panel dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.live-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.live-panel button {
  padding: 12px 14px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--line);
  font-weight: 950;
}

.live-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.live-rail span,
.livestore-feature-stack article {
  padding: 14px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--line);
  color: var(--ink);
  font-weight: 950;
  text-align: center;
}

.livestore-feature-stack {
  display: grid;
  gap: 14px;
}

.livestore-feature-stack article {
  display: grid;
  gap: 8px;
  text-align: left;
}

.livestore-feature-stack span {
  color: var(--muted);
  font-weight: 750;
}

.map-overview {
  padding-bottom: clamp(34px, 6vw, 70px);
}

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

.map-feature-grid article {
  min-height: 280px;
  padding: 24px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-hard);
}

.map-feature-grid article:nth-child(2) {
  background: var(--acid);
}

.map-feature-grid article:nth-child(3) {
  color: #fff;
  background: var(--violet);
}

.map-feature-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 950;
}

.map-feature-grid article:nth-child(3) span,
.map-feature-grid article:nth-child(3) p {
  color: #fff;
}

.map-feature-grid p {
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 750;
}

.screenshot-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
}

.screenshot-section.flip {
  grid-template-columns: 1.25fr 0.75fr;
}

.screenshot-section.flip .screenshot-copy {
  order: 2;
}

.screenshot-section.flip .screenshot-frame {
  order: 1;
}

.screenshot-copy p:not(.section-kicker) {
  max-width: 560px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 750;
}

.screenshot-frame {
  padding: 10px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  box-shadow: 7px 7px 0 var(--line);
  overflow: hidden;
}

.screenshot-frame.wide {
  grid-column: span 1;
}

.map-cta {
  padding: clamp(52px, 8vw, 86px) max(18px, calc((100% - 1180px) / 2));
  color: var(--ink);
  background: var(--cyan);
  border-top: 2px solid var(--line);
}

.map-cta p:not(.section-kicker) {
  max-width: 680px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 750;
}

@media (max-width: 940px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    border-radius: 24px;
  }

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

  .hero-media {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.72;
  }

  .hero-slab {
    display: none;
  }

  .service-grid,
  .tool-layout,
  .product-hero,
  .map-feature-grid,
  .screenshot-section,
  .screenshot-section.flip,
  .form-row,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .screenshot-section.flip .screenshot-copy,
  .screenshot-section.flip .screenshot-frame {
    order: initial;
  }

  .service-card:nth-child(n) {
    grid-column: auto;
  }

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

  .contact .button {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: block;
    top: 10px;
    width: calc(100% - 20px);
    padding: 12px;
  }

  .brand {
    margin-bottom: 10px;
  }

  .nav {
    justify-content: flex-start;
    gap: 4px;
    font-size: 0.78rem;
  }

  .nav a {
    padding: 6px 7px;
  }

  .hero {
    min-height: auto;
    padding: 190px 16px 46px;
  }

  .hero-content,
  .product-hero-copy,
  .section-heading,
  .screenshot-copy,
  .contact-copy {
    width: min(312px, calc(100vw - 56px));
    max-width: min(312px, calc(100vw - 56px));
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.78) 68%, rgba(8, 8, 8, 0.2) 100%),
      linear-gradient(90deg, rgba(255, 74, 162, 0.28), transparent);
  }

  h1 {
    max-width: min(312px, calc(100vw - 56px));
    font-size: clamp(1.95rem, 8.8vw, 2.4rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: min(312px, calc(100vw - 56px));
    font-size: clamp(1.55rem, 6.9vw, 2rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  h3 {
    font-size: clamp(1.45rem, 7.2vw, 2rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .product-hero {
    min-height: auto;
    padding: 178px 16px 48px;
  }

  .product-hero-copy p:not(.eyebrow),
  .hero-copy {
    max-width: min(312px, calc(100vw - 56px));
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .service-card p,
  .tool-feature p,
  .map-feature-grid p,
  .screenshot-copy p:not(.section-kicker) {
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
  }

  .live-window {
    grid-template-columns: 1fr;
  }

  .live-video {
    min-height: 260px;
  }

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

  .platform-band span {
    padding: 13px 20px;
  }

  .service-card {
    min-height: 240px;
  }

  .tool-feature,
  .tool-feature.accent,
  .tool-feature.map-tool,
  .tool-feature.crm-tool,
  .tool-feature.drop-tool,
  .tool-feature.live-tool,
  .product-hero-shot,
  .process-list li:nth-child(odd) {
    transform: none;
  }

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

  .tool-feature {
    min-height: 0;
  }

  .tool-feature h3 {
    font-size: clamp(2rem, 11vw, 3rem);
    word-break: normal;
  }

  .tool-feature a {
    width: 100%;
    text-align: center;
  }

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

  .process-list li {
    min-height: 160px;
  }

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

  .site-footer {
    display: block;
  }

  .site-footer p {
    margin-bottom: 10px;
  }
}
