/* ============================================================
   Red Dots — Red Dot Global Limited
   Dark theme · warm near-black · vivid red accent
   ============================================================ */

:root {
  --bg: #140D0E;
  --bg-soft: #1D1314;
  --bg-card: #201617;
  --bg-raised: #281A1B;
  --bg-red-deep: #2B0D0D;
  --red: #EF4444;
  --red-dark: #DC2626;
  --red-light: #FCA5A5;
  --text: #F6EDEA;
  --text-muted: #CBB4AF;
  --text-faint: #A58D89;
  --line: #3A2628;
  --line-soft: #2C1D1F;
  --white: #FBF6F4;
  --font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-light);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red-light);
}

/* ============================================================
   DOMINO-ROW NAVIGATION
   ============================================================ */

.domino-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
}

.domino-nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__glyph {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--bg-red-deep);
}

.brand__word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.domino-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.domino-nav__links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.domino-nav__links a:hover {
  color: var(--text);
  background: var(--bg-raised);
}

/* Domino-tile decoration near the right end */
.domino-tiles {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.domino-tile {
  position: relative;
  width: 18px;
  height: 34px;
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(20, 13, 14, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.domino-tile::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 50%;
  height: 1px;
  background: #E1D3CF;
}

.domino-tile .pip {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  z-index: 1;
}

.domino-tile--a {
  transform: rotate(-9deg) translateY(3px);
}

.domino-tile--b {
  transform: translateY(-3px);
  height: 30px;
}

.domino-tile--c {
  transform: rotate(8deg) translateY(3px);
}

.domino-nav__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  background: var(--red);
  padding: 11px 20px;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

/* ============================================================
   DICE HERO
   ============================================================ */

.dice-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 78% 10%, var(--bg-red-deep), transparent 60%),
    var(--bg);
  padding: 88px 0 96px;
}

.dice-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.dice-hero__copy h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  margin: 22px 0 24px;
  color: var(--text);
}

.dice-hero__copy h1 .accent {
  color: var(--red);
}

.dice-hero__copy p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 34px;
}

.dice-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dice-hero__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  font-size: 14px;
  color: var(--text-faint);
}

.dice-hero__note .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* Dice stage */
.dice-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  perspective: 1000px;
}

.die {
  position: relative;
  width: 190px;
  height: 190px;
  transform-style: preserve-3d;
  transform: rotateX(-24deg) rotateY(-42deg);
  animation: die-float 7s ease-in-out infinite;
}

.die .face {
  position: absolute;
  width: 190px;
  height: 190px;
  background: var(--white);
  border: 1px solid #E7D9D5;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  padding: 24px;
  place-items: center;
  box-shadow: inset 0 0 22px rgba(20, 13, 14, 0.08);
}

.die .pip {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 -3px 0 rgba(20, 13, 14, 0.18);
}

.face--top {
  transform: rotateX(90deg) translateZ(95px);
}

.face--front {
  transform: translateZ(95px);
}

.face--right {
  transform: rotateY(90deg) translateZ(95px);
}

/* Pip layout per face */
.face--top .pip:nth-child(1) { grid-column: 1; grid-row: 1; }
.face--top .pip:nth-child(2) { grid-column: 3; grid-row: 1; }
.face--top .pip:nth-child(3) { grid-column: 2; grid-row: 2; }
.face--top .pip:nth-child(4) { grid-column: 1; grid-row: 3; }
.face--top .pip:nth-child(5) { grid-column: 3; grid-row: 3; }

.face--front .pip:nth-child(1) { grid-column: 1; grid-row: 1; }
.face--front .pip:nth-child(2) { grid-column: 3; grid-row: 3; }

.face--right .pip:nth-child(1) { grid-column: 1; grid-row: 1; }
.face--right .pip:nth-child(2) { grid-column: 2; grid-row: 2; }
.face--right .pip:nth-child(3) { grid-column: 3; grid-row: 3; }

.die--small {
  position: absolute;
  right: 2%;
  bottom: 8%;
  width: 96px;
  height: 96px;
  transform: rotateX(-30deg) rotateY(38deg) rotateZ(14deg);
  animation: die-float 5.5s ease-in-out infinite reverse;
}

.die--small .face {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  padding: 12px;
}

.die--small .pip {
  width: 15px;
  height: 15px;
}

.die--small .face--top { transform: rotateX(90deg) translateZ(48px); }
.die--small .face--front { transform: translateZ(48px); }
.die--small .face--right { transform: rotateY(90deg) translateZ(48px); }

.die--small .face--top .pip:nth-child(1) { grid-column: 2; grid-row: 2; }
.die--small .face--front .pip:nth-child(1) { grid-column: 1; grid-row: 1; }
.die--small .face--front .pip:nth-child(2) { grid-column: 3; grid-row: 1; }
.die--small .face--front .pip:nth-child(3) { grid-column: 1; grid-row: 3; }
.die--small .face--front .pip:nth-child(4) { grid-column: 3; grid-row: 3; }
.die--small .face--right .pip:nth-child(1) { grid-column: 1; grid-row: 1; }
.die--small .face--right .pip:nth-child(2) { grid-column: 3; grid-row: 3; }

@keyframes die-float {
  0%, 100% { transform: rotateX(-24deg) rotateY(-42deg) translateY(0); }
  50% { transform: rotateX(-24deg) rotateY(-42deg) translateY(-18px); }
}

/* ============================================================
   STATEMENT ROW
   ============================================================ */

.statement-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 84px 0;
}

.statement-section .statement {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.22;
  max-width: 980px;
  color: var(--text);
}

.statement-section .statement .accent {
  color: var(--red);
}

.statement-section .statement-sub {
  margin-top: 26px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
}

/* ============================================================
   STATS
   ============================================================ */

.stats-section {
  background: var(--bg);
  padding: 80px 0;
}

.stats-section__head {
  max-width: 640px;
  margin-bottom: 48px;
}

.stats-section__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 16px 0 16px;
}

.stats-section__head p {
  color: var(--text-muted);
  font-size: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 30px 26px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.stat:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.stat__num {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat__label {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.about-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 16px 0 18px;
}

.about-section .lede {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 16px;
}

.about-section .body-copy p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 22px;
}

.value-card .value-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.12em;
}

.value-card h3 {
  font-size: 18px;
  margin: 10px 0 8px;
  color: var(--text);
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   CAPABILITIES — horizontal scroll row
   ============================================================ */

.capabilities-section {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding: 90px 0 60px;
}

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

.capabilities-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 16px 0 16px;
}

.capabilities-head p {
  max-width: 480px;
  color: var(--text-muted);
}

.scroll-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.scroll-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.scroll-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.capabilities-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--line-soft);
}

.capabilities-track::-webkit-scrollbar {
  height: 8px;
}

.capabilities-track::-webkit-scrollbar-track {
  background: var(--line-soft);
  border-radius: 8px;
}

.capabilities-track::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 8px;
}

.capability {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 30px 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.capability:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.capability__index {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--red-light);
}

.capability h3 {
  font-size: 21px;
  margin: 14px 0 12px;
  color: var(--text);
}

.capability p {
  font-size: 15px;
  color: var(--text-muted);
}

.capability__tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--red-light);
  font-family: var(--font-head);
  font-weight: 600;
}

/* ============================================================
   PROCESS — numbered delivery list
   ============================================================ */

.process-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  padding: 90px 0;
}

.process-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 16px 0 16px;
  max-width: 560px;
}

.process-section .process-intro {
  max-width: 560px;
  color: var(--text-muted);
  margin-bottom: 52px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-item {
  position: relative;
  padding-right: 28px;
}

.process-item::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
}

.process-item:first-child::before {
  left: 30px;
}

.process-item:last-child::before {
  right: 28px;
}

.process-item__num {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  background: var(--red);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--bg-red-deep);
}

.process-item h3 {
  font-size: 19px;
  margin: 20px 0 10px;
  color: var(--text);
}

.process-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */

.compare-section {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding: 90px 0;
}

.compare-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 16px 0 16px;
}

.compare-section .compare-intro {
  max-width: 620px;
  color: var(--text-muted);
  margin-bottom: 44px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
}

.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.compare-table thead th {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--text);
  background: var(--bg-raised);
}

.compare-table thead th.flag-red {
  color: var(--white);
  background: var(--red);
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table td.aspect {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  white-space: nowrap;
}

.compare-table td {
  font-size: 15px;
  color: var(--text-muted);
}

.compare-table td.mark {
  color: var(--red-light);
  font-weight: 600;
}

.compare-table td .yes {
  color: var(--red-light);
  font-weight: 700;
}

/* ============================================================
   SPLIT CTA BAND
   ============================================================ */

.cta-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  padding: 90px 0;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-red-deep);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.cta-band__left {
  padding: 54px 48px;
  background:
    radial-gradient(700px 400px at 0% 100%, var(--red-dark), transparent 55%),
    var(--bg-red-deep);
}

.cta-band__left h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text);
  margin-bottom: 18px;
}

.cta-band__left p {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 440px;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 34px;
}

.cta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.cta-contact a:hover {
  color: var(--red-light);
}

.cta-contact .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cta-band__right {
  background: var(--bg-card);
  padding: 54px 48px;
}

.cta-band__right h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text);
}

.cta-band__right .form-note {
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-status {
  font-size: 14px;
  color: var(--red-light);
  min-height: 20px;
}

/* ============================================================
   FOOTER — compact multi-column with thin red top rule
   ============================================================ */

.footer {
  background: var(--bg);
  border-top: 3px solid var(--red);
  padding: 60px 0 34px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer__brand .brand__word {
  font-size: 21px;
}

.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 300px;
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--red-light);
}

.footer__bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 14px;
  color: var(--text-faint);
}

.footer__bottom .site-url {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1020px) {
  .domino-nav__links {
    gap: 0;
  }

  .domino-nav__links a {
    padding: 8px 10px;
  }

  .dice-hero__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dice-hero__copy {
    text-align: center;
  }

  .dice-hero__copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .dice-hero__ctas {
    justify-content: center;
  }

  .dice-hero__note {
    justify-content: center;
  }

  .dice-stage {
    min-height: 320px;
  }

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

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .process-item {
    padding-right: 0;
  }

  .process-item::before {
    display: none;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .domino-nav__inner {
    gap: 16px;
  }

  .domino-tiles {
    display: none;
  }

  .domino-nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 12px 20px 18px;
    gap: 4px;
    display: none;
  }

  .domino-nav.is-open .domino-nav__links {
    display: flex;
  }

  .domino-nav__links a {
    padding: 12px 10px;
  }

  .domino-nav__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-values {
    grid-template-columns: 1fr;
  }

  .capabilities-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compare-table th,
  .compare-table td {
    padding: 14px 14px;
    font-size: 14px;
  }
}
