/* ==========================================================================
   Seven More — www.7more.software
   ========================================================================== */

:root {
  /* Brand */
  --brand: #272c63;
  --yellow: #fbc52b;
  --yellow-hover: #ffd351;

  /* Navy scale (derived from brand navy) */
  --navy-950: #0c0f2a;
  --navy-900: #121634;
  --navy-850: #171b3f;
  --navy-800: #1d2149;

  /* Neutrals (cool, navy-tinted) */
  --ink: #0f122b;
  --text: #3b405c;
  --muted: #6a6f88;
  --line: #e3e5ee;
  --line-strong: #cfd2df;
  --bg: #ffffff;
  --bg-soft: #f5f6f9;

  /* On dark */
  --d-text: #f3f4f9;
  --d-muted: #a4a9c3;
  --d-line: rgba(255, 255, 255, 0.1);
  --d-line-strong: rgba(255, 255, 255, 0.18);

  /* Type */
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 76px;
  --section-y: clamp(88px, 11vw, 148px);
  --radius: 6px;

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

::selection { background: var(--yellow); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--yellow); color: var(--ink);
  padding: 10px 16px; border-radius: var(--radius); font-weight: 500;
  transition: top 160ms var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* Layout ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: clamp(64px, 8vw, 104px); }
.section + .section:not(.section--soft):not(.section--dark) { border-top: 1px solid var(--line); }

.section--dark {
  background: var(--navy-900);
  color: var(--d-muted);
}
.section--dark h2,
.section--dark h3 { color: var(--d-text); }

/* Typography ------------------------------------------------------------- */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance;
}

.display {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.042em;
}

.h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--text);
  max-width: 60ch;
  text-wrap: pretty;
}
.section--dark .lead,
.hero .lead,
.page-hero .lead { color: var(--d-muted); }

p { text-wrap: pretty; }
.measure { max-width: 62ch; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 14px;
  background: var(--yellow);
  clip-path: polygon(55% 0, 100% 0, 45% 100%, 0 100%);
  flex: none;
}
.section--dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.cta .eyebrow { color: var(--d-muted); }

.mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  padding-inline: 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    transform 160ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 16px; height: 16px; flex: none; transition: transform 240ms var(--ease-out); }

.btn--primary { --btn-bg: var(--yellow); --btn-fg: var(--ink); }
.btn--dark { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: var(--d-text);
  border-color: var(--d-line-strong);
}
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line-strong);
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover { --btn-bg: var(--yellow-hover); }
  .btn--dark:hover { --btn-bg: var(--brand); }
  .btn--ghost-light:hover { border-color: rgba(255, 255, 255, 0.5); }
  .btn--ghost:hover { border-color: var(--ink); }
  .btn:hover svg { transform: translateX(3px); }
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: border-color 200ms ease;
}
.text-link svg { width: 14px; height: 14px; transition: transform 240ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .text-link:hover { border-color: var(--ink); }
  .text-link:hover svg { transform: translateX(3px); }
}
.section--dark .text-link { color: var(--d-text); border-color: var(--d-line-strong); }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  color: var(--d-text);
  transition: background-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { position: relative; display: block; width: 118px; height: 26px; flex: none; }
.brand img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transition: opacity 240ms ease;
}
.brand .logo-color { opacity: 0; }
.is-scrolled .brand .logo-color { opacity: 1; }
.is-scrolled .brand .logo-white { opacity: 0; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 450;
  opacity: 0.82;
  padding-block: 8px;
  transition: opacity 200ms ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease-out);
}
.nav-link[aria-current="page"] { opacity: 1; }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
@media (hover: hover) and (pointer: fine) {
  .nav-link:hover { opacity: 1; }
  .nav-link:hover::after { transform: scaleX(1); }
}

.nav .btn { height: 42px; padding-inline: 18px; font-size: 14px; }
.site-header:not(.is-scrolled) .nav .btn--dark { --btn-bg: var(--yellow); --btn-fg: var(--ink); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-right: -10px;
  background: none; border: 0; cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 11px; right: 11px; height: 1.5px;
  background: currentColor;
  transition: transform 260ms var(--ease-out), opacity 200ms ease;
}
.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--navy-950);
  color: var(--d-text);
  padding: calc(var(--header-h) + 32px) var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}
.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 240ms ease, visibility 0s;
}
.mobile-menu ul { display: grid; }
.mobile-menu li { border-bottom: 1px solid var(--d-line); }
.mobile-menu a.m-link {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-block: 18px;
  font-size: 30px; letter-spacing: -0.03em; font-weight: 450;
  transform: translateY(12px); opacity: 0;
  transition: transform 420ms var(--ease-out), opacity 420ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 45ms);
}
.mobile-menu a.m-link span { font-family: var(--font-mono); font-size: 12px; color: var(--d-muted); }
.mobile-menu a.m-link[aria-current="page"] { color: var(--yellow); }
.menu-open .mobile-menu a.m-link { transform: none; opacity: 1; }
.mobile-menu .mobile-meta { font-family: var(--font-mono); font-size: 13px; color: var(--d-muted); display: grid; gap: 6px; }
.menu-open .site-header { background: transparent; color: var(--d-text); box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
.menu-open .site-header .logo-color { opacity: 0; }
.menu-open .site-header .logo-white { opacity: 1; }
.menu-open { overflow: hidden; }

/* Hero (home) ------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--d-muted);
  padding-top: calc(var(--header-h) + clamp(56px, 8vw, 104px));
  overflow: hidden;
  isolation: isolate;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding-bottom: clamp(64px, 8vw, 104px);
}
.hero h1 { color: #fff; margin-top: 28px; font-size: clamp(2.5rem, 4.6vw, 4.05rem); }
.hero h1 .accent { color: var(--d-muted); }
.hero .lead { margin-top: 28px; }
.hero .btn-row { margin-top: 40px; }

.hero-visual {
  position: relative;
  border: 1px solid var(--d-line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 20px;
}
.hero-visual-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2px 4px 16px;
  border-bottom: 1px solid var(--d-line);
  margin-bottom: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--d-muted);
}
.status { display: inline-flex; align-items: center; gap: 8px; }
.status i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3ecf8e;
  box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.45); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(62, 207, 142, 0); }
}

.schematic { width: 100%; height: auto; overflow: visible; }
.schematic text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  fill: #c5c9dd;
}
.schematic .t-dim { fill: #7d82a0; font-size: 10px; }
.schematic .node { fill: rgba(255, 255, 255, 0.025); stroke: rgba(255, 255, 255, 0.16); }
.schematic .node--key { fill: rgba(251, 197, 43, 0.06); stroke: rgba(251, 197, 43, 0.6); }
.schematic .node--key + text { fill: var(--yellow); }
.schematic .wire { stroke: rgba(255, 255, 255, 0.16); fill: none; }
.schematic .flow {
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 4 22;
  animation: flow 2.8s linear infinite;
  opacity: 0.85;
}
.schematic .flow--rev { animation-direction: reverse; }
.schematic .flow--slow { animation-duration: 4.2s; }
@keyframes flow { to { stroke-dashoffset: -52; } }

.hero-strip {
  border-top: 1px solid var(--d-line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hero-strip li {
  padding: 26px 24px 30px 0;
  display: grid;
  gap: 6px;
}
.hero-strip li + li { padding-left: 24px; border-left: 1px solid var(--d-line); }
.hero-strip b { color: var(--d-text); font-weight: 500; font-size: 15px; letter-spacing: -0.01em; }
.hero-strip span { font-size: 14px; line-height: 1.5; }

/* Page hero (inner) ------------------------------------------------------ */
.page-hero {
  position: relative;
  background: var(--navy-950);
  color: var(--d-muted);
  padding-top: calc(var(--header-h) + clamp(64px, 9vw, 120px));
  padding-bottom: clamp(64px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}
.breadcrumb {
  display: flex; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--d-muted);
}
.breadcrumb a { transition: color 200ms ease; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: var(--yellow); }
.page-hero h1 { color: #fff; margin-top: 28px; }
.page-hero .lead { margin-top: 0; }
.page-hero .hero-aside { border-left: 1px solid var(--d-line-strong); padding-left: 28px; }

.page-hero-slash {
  position: absolute;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2 + 80px));
  bottom: -18%;
  height: 128%;
  width: auto;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

/* Section heads ---------------------------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head h2 { margin-top: 20px; }
.section-head--stack { grid-template-columns: minmax(0, 1fr); max-width: 780px; gap: 20px; }

/* Statement -------------------------------------------------------------- */
.statement {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.statement h2 { font-size: clamp(2rem, 3.8vw, 3.3rem); line-height: 1.08; letter-spacing: -0.035em; }
.statement h2 em { font-style: normal; color: var(--muted); }
.statement-body { display: grid; gap: 20px; padding-top: 12px; }
.statement-body .text-link { justify-self: start; margin-top: 12px; }

.pillars {
  margin-top: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.pillars li { padding: 24px 24px 0 0; }
.pillars li + li { padding-left: 24px; border-left: 1px solid var(--line); }
.pillars .mono { color: var(--muted); display: block; margin-bottom: 14px; }
.pillars b { display: block; color: var(--ink); font-weight: 500; font-size: 17px; letter-spacing: -0.01em; }
.pillars p { font-size: 15px; margin-top: 6px; color: var(--muted); }

/* Index list (services overview) ----------------------------------------- */
.index-list { border-top: 1px solid var(--line); }
.index-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 4fr) minmax(0, 6fr) 40px;
  gap: 24px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 240ms ease;
}
.index-row::before {
  content: "";
  position: absolute; inset: 0 calc(var(--gutter) * -0.5);
  background: var(--bg-soft);
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 240ms ease;
  z-index: -1;
}
.index-row .num { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.index-row h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); letter-spacing: -0.02em; }
.index-row p { font-size: 15.5px; color: var(--muted); }
.index-row .arrow {
  justify-self: end; align-self: center;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: background-color 240ms ease, border-color 240ms ease, transform 280ms var(--ease-out);
}
.index-row .arrow svg { width: 14px; height: 14px; }
.index-list { position: relative; isolation: isolate; }
@media (hover: hover) and (pointer: fine) {
  .index-row:hover::before { opacity: 1; }
  .index-row:hover .arrow { background: var(--yellow); border-color: var(--yellow); transform: rotate(-45deg); }
}

/* Process ---------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  counter-reset: step;
}
.process li {
  position: relative;
  padding: 28px 22px 0 0;
  border-top: 1px solid var(--d-line-strong);
}
.process li::before {
  content: "";
  position: absolute; top: -1px; left: 0;
  width: 32px; height: 2px;
  background: var(--yellow);
}
.process .mono { color: var(--yellow); }
.process h3 { font-size: 1.25rem; margin-top: 18px; letter-spacing: -0.02em; }
.process p { font-size: 14.5px; line-height: 1.6; margin-top: 10px; }

.section-foot {
  margin-top: clamp(48px, 6vw, 72px);
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.section--dark .section-foot { border-color: var(--d-line); }

/* Industries (home) ------------------------------------------------------ */
.industries-split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}
.feature-panel {
  position: relative;
  background: var(--navy-900);
  color: var(--d-muted);
  border-radius: 10px;
  padding: clamp(28px, 3.5vw, 44px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 48px;
  overflow: hidden;
  isolation: isolate;
}
.feature-panel h3 { color: #fff; font-size: clamp(1.6rem, 2.4vw, 2.1rem); letter-spacing: -0.03em; margin-top: 20px; }
.feature-panel p { margin-top: 16px; font-size: 16px; }
.feature-panel .eyebrow { color: var(--yellow); }
.feature-panel .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-mark {
  position: absolute; right: -40px; bottom: -60px; width: 260px; opacity: 0.06; z-index: -1;
}

.tag {
  display: inline-flex; align-items: center;
  height: 30px; padding-inline: 12px;
  border: 1px solid var(--d-line-strong);
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.03em;
  color: var(--d-text);
}
.tag--light { border-color: var(--line-strong); color: var(--text); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.industry-grid a {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 176px;
  transition: background-color 240ms ease;
}
.industry-grid .mono { color: var(--muted); }
.industry-grid h3 { font-size: 1.2rem; letter-spacing: -0.02em; }
.industry-grid p { font-size: 14.5px; color: var(--muted); margin-top: 8px; line-height: 1.55; }
@media (hover: hover) and (pointer: fine) {
  .industry-grid a:hover { background: var(--bg-soft); }
}

/* Quote ------------------------------------------------------------------ */
.quote {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.quote svg { width: 56px; height: auto; margin-top: 10px; }
.quote blockquote { margin: 0; }
.quote p {
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.038em;
  color: var(--ink);
  font-weight: 450;
  max-width: 22ch;
  text-wrap: balance;
}
.quote p span { color: var(--muted); }
.quote cite {
  display: block; margin-top: 28px;
  font-style: normal; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}

/* CTA -------------------------------------------------------------------- */
.cta {
  position: relative;
  background: var(--navy-900);
  color: var(--d-muted);
  padding-block: clamp(80px, 10vw, 128px);
  overflow: hidden;
  isolation: isolate;
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}
.cta h2 { color: #fff; margin-top: 20px; }
.cta p { margin-top: 20px; max-width: 52ch; }
.cta-actions { display: grid; gap: 28px; justify-items: start; }
.cta-contact { display: grid; gap: 4px; }
.cta-contact .mono { color: var(--d-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.cta-contact a { color: #fff; font-size: 20px; letter-spacing: -0.02em; border-bottom: 1px solid var(--d-line-strong); padding-bottom: 2px; transition: border-color 200ms ease; }
.cta-contact a:hover { border-color: var(--yellow); }
.cta-mark { position: absolute; right: -2%; top: 50%; transform: translateY(-50%); width: clamp(260px, 32vw, 460px); opacity: 0.045; z-index: -1; pointer-events: none; }

/* Footer ----------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: var(--d-muted);
  padding-top: clamp(64px, 8vw, 96px);
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2fr));
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.footer-brand img { width: 128px; height: auto; }
.footer-brand p { margin-top: 24px; max-width: 34ch; line-height: 1.6; }
.footer-col h2 {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--d-text); margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { transition: color 200ms ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--d-line);
  padding-block: 24px 32px;
  display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.03em;
}
.footer-bottom .to-top { display: inline-flex; gap: 8px; align-items: center; transition: color 200ms ease; }
.footer-bottom .to-top:hover { color: #fff; }
.footer-bottom .to-top svg { width: 12px; height: 12px; }

/* Services page ---------------------------------------------------------- */
.service-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.service-nav ul {
  display: flex; gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, #000 90%, transparent);
  mask-image: linear-gradient(to right, #000 90%, transparent);
}
.service-nav ul::-webkit-scrollbar { display: none; }
.service-nav a {
  display: block; white-space: nowrap;
  padding-block: 18px;
  font-size: 14px; color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.service-nav a:hover { color: var(--ink); }
.service-nav a.is-active { color: var(--ink); border-color: var(--yellow); }

.service {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 6vw, 96px);
  padding-block: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line);
}
.service:first-of-type { border-top: 0; padding-top: 0; }
.service-title { display: grid; gap: 18px; align-content: start; }
.service-title .mono { color: var(--muted); }
.service-title h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: -0.03em; line-height: 1.1; }
.service-body > p { font-size: clamp(1.05rem, 1.35vw, 1.2rem); line-height: 1.6; color: var(--text); max-width: 58ch; }
.scope { margin-top: 32px; }
.scope-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.scope ul {
  margin-top: 14px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.scope li {
  display: flex; gap: 12px; align-items: baseline;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px; color: var(--ink);
}
.scope li::before {
  content: ""; width: 6px; height: 10px; flex: none;
  background: var(--yellow);
  clip-path: polygon(55% 0, 100% 0, 45% 100%, 0 100%);
  transform: translateY(1px);
}

/* Tech stack diagram */
.stack {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 10px;
}
.stack-band {
  border: 1px solid var(--d-line-strong);
  border-radius: var(--radius);
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.02);
}
.stack-band span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--d-text);
  white-space: nowrap;
  padding-block: 16px;
}
.stack-band--accent { border-color: rgba(251, 197, 43, 0.5); background: rgba(251, 197, 43, 0.05); }
.stack-band--accent span { color: var(--yellow); }
.stack-layers { display: grid; gap: 10px; }
.stack-layer {
  display: grid;
  grid-template-columns: 56px minmax(0, 4fr) minmax(0, 7fr);
  gap: 20px;
  align-items: baseline;
  padding: 24px 26px;
  border: 1px solid var(--d-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 240ms ease, background-color 240ms ease;
}
.stack-layer .mono { color: var(--d-muted); font-size: 12px; }
.stack-layer h3 { font-size: 1.15rem; letter-spacing: -0.015em; }
.stack-layer p { font-size: 15px; line-height: 1.55; }
@media (hover: hover) and (pointer: fine) {
  .stack-layer:hover { border-color: var(--d-line-strong); background: rgba(255, 255, 255, 0.045); }
}
.stack-notes {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}
.stack-notes > div { border-top: 1px solid var(--d-line-strong); padding-top: 22px; }
.stack-notes h3 { font-size: 1.15rem; display: grid; gap: 10px; }
.stack-notes h3 .mono { color: var(--yellow); font-size: 12px; }
.stack-notes p { margin-top: 10px; font-size: 15.5px; }

/* About page ------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 6vw, 96px);
}
.sticky { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; }
.prose { display: grid; gap: 22px; }
.prose p { font-size: 17.5px; line-height: 1.7; max-width: 62ch; }
.prose .prose-lead { font-size: clamp(1.3rem, 2vw, 1.65rem); line-height: 1.4; letter-spacing: -0.02em; color: var(--ink); }

.capabilities {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.capabilities li {
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: baseline;
  color: var(--ink); font-weight: 450;
}
.capabilities li:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
.capabilities .mono { color: var(--muted); font-size: 12px; }

.timeline { position: relative; }
.timeline li {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr) minmax(0, 5fr);
  gap: clamp(20px, 4vw, 56px);
  padding-block: 36px;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline .step-num {
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 400;
  color: var(--line-strong);
  font-variant-numeric: tabular-nums;
  transition: color 400ms ease;
}
.timeline li.is-visible .step-num { color: var(--ink); }
.timeline li .step-num b { color: var(--yellow); font-weight: 400; }
.timeline h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); letter-spacing: -0.03em; }
.timeline p { font-size: 16.5px; max-width: 54ch; }

.reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 56px);
}
.reasons li {
  padding-block: 28px 32px;
  border-top: 1px solid var(--line);
}
.reasons .mono { color: var(--muted); font-size: 12px; }
.reasons h3 { font-size: 1.25rem; letter-spacing: -0.02em; margin-top: 14px; }
.reasons p { font-size: 15.5px; margin-top: 10px; color: var(--muted); }
.reasons li.reason--wide { grid-column: 1 / -1; }
.reasons li.reason--wide p { max-width: 64ch; }

/* Industries page -------------------------------------------------------- */
.industry {
  display: grid;
  grid-template-columns: 64px minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(20px, 4vw, 56px);
  padding-block: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}
.industry:last-child { border-bottom: 1px solid var(--line); }
.industry .mono { color: var(--muted); padding-top: 8px; }
.industry h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: -0.03em; }
.industry-body { display: grid; gap: 16px; }
.industry-body .industry-lead { font-size: clamp(1.1rem, 1.5vw, 1.25rem); color: var(--ink); line-height: 1.5; letter-spacing: -0.01em; }
.industry-body p { max-width: 60ch; }
.industry-body .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.shared {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.shared li { padding: 28px 24px 0 0; }
.shared li + li { padding-left: 24px; border-left: 1px solid var(--line); }
.shared .mono { color: var(--muted); font-size: 12px; }
.shared h3 { font-size: 1.2rem; margin-top: 16px; letter-spacing: -0.02em; }
.shared p { margin-top: 8px; font-size: 15px; color: var(--muted); }

.igaming {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.igaming h2 { margin-top: 20px; }
.igaming .prose p { color: var(--d-muted); }
.igaming .prose { margin-top: 28px; }
.igaming-panel {
  border: 1px solid var(--d-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.igaming-panel header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--d-line);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.igaming-panel ul { display: grid; }
.igaming-panel li {
  display: grid; grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 16px; align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--d-line);
  color: var(--d-text);
}
.igaming-panel li:last-child { border-bottom: 0; }
.igaming-panel li .mono { color: var(--d-muted); font-size: 12px; }
.igaming-panel li .mono:last-child { text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }

/* Contact page ----------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-info { display: grid; gap: 48px; }
.next-steps li {
  display: grid; grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
}
.next-steps li:last-child { border-bottom: 1px solid var(--line); }
.next-steps .mono { color: var(--muted); font-size: 12px; padding-top: 3px; }
.next-steps b { color: var(--ink); font-weight: 500; display: block; }
.next-steps p { font-size: 15px; color: var(--muted); margin-top: 4px; }
.contact-details { display: grid; gap: 22px; }
.contact-details dt { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.contact-details dd { margin: 6px 0 0; color: var(--ink); font-size: 18px; letter-spacing: -0.01em; }
.contact-details dd a { border-bottom: 1px solid var(--line-strong); transition: border-color 200ms ease; }
.contact-details dd a:hover { border-color: var(--ink); }

.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 30px 60px -30px rgba(18, 22, 52, 0.18);
}
.form-card h2 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); letter-spacing: -0.03em; }
.form-card > p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.form { margin-top: 32px; display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.field { display: grid; gap: 8px; align-content: start; }
.field label, .field legend {
  font-size: 14px; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; gap: 8px;
}
.field label .opt { font-weight: 400; color: var(--muted); font-size: 13px; }
.input {
  width: 100%;
  height: 50px;
  padding-inline: 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.input::placeholder { color: #9a9eb4; }
textarea.input { height: auto; min-height: 148px; padding-block: 12px; resize: vertical; line-height: 1.5; }
select.input {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236a6f88' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.input:hover { border-color: #b4b8ca; }
.input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(39, 44, 99, 0.12); }
.field-help { font-size: 13px; color: var(--muted); }
.field-error { font-size: 13px; color: #b42318; display: none; }
.field.is-invalid .input { border-color: #d92d20; }
.field.is-invalid .input:focus { box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12); }
.field.is-invalid .field-error { display: block; }
.field.is-invalid .field-help { display: none; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; border: 0; padding: 0; margin: 0; }
.chips legend { margin-bottom: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.chip span {
  display: inline-flex; align-items: center; height: 38px; padding-inline: 14px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 14px; color: var(--text);
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease, transform 160ms var(--ease-out);
}
.chip input:hover + span { border-color: #9da2b8; }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }
.chip input:active + span { transform: scale(0.97); }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.5; }
.consent input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex: none; margin: 2px 0 0;
  border: 1px solid var(--line-strong); border-radius: 4px;
  display: grid; place-items: center; cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}
.consent input::after {
  content: ""; width: 10px; height: 6px;
  border: solid #fff; border-width: 0 0 1.75px 1.75px;
  transform: translateY(-1px) rotate(-45deg) scale(0.6); opacity: 0;
  transition: transform 160ms var(--ease-out), opacity 160ms ease;
}
.consent input:checked { background: var(--ink); border-color: var(--ink); }
.consent input:checked::after { opacity: 1; transform: translateY(-1px) rotate(-45deg) scale(1); }
.field.is-invalid .consent input { border-color: #d92d20; }

.form-actions { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: space-between; padding-top: 6px; }
.form-actions .field-help { max-width: 34ch; }
.btn[aria-busy="true"] { pointer-events: none; }
.btn .btn-progress { display: none; }
.btn[aria-busy="true"] .btn-label, .btn[aria-busy="true"] svg { display: none; }
.btn[aria-busy="true"] .btn-progress { display: inline-flex; gap: 10px; align-items: center; }
.btn-progress i {
  width: 36px; height: 2px; background: rgba(15, 18, 43, 0.2); position: relative; overflow: hidden; border-radius: 2px;
}
.btn-progress i::after {
  content: ""; position: absolute; inset: 0; width: 40%; background: currentColor;
  animation: progress 900ms var(--ease-in-out) infinite;
}
@keyframes progress { from { transform: translateX(-100%); } to { transform: translateX(250%); } }

.form-alert {
  display: none;
  padding: 14px 16px; border-radius: var(--radius);
  background: #fef3f2; color: #912018; font-size: 14.5px;
  border: 1px solid #fecdca;
}
.form-alert.is-visible { display: block; }

.form-success { display: none; padding-block: 24px 8px; }
.form-success.is-visible { display: block; animation: rise 500ms var(--ease-out) both; }
.form-success .check {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  display: grid; place-items: center;
}
.form-success .check svg { width: 20px; height: 20px; }
.form-success h3 { font-size: 1.6rem; letter-spacing: -0.03em; margin-top: 24px; }
.form-success p { margin-top: 10px; color: var(--muted); max-width: 46ch; }
.form-success .btn { margin-top: 28px; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Reveal ----------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: calc(var(--d, 0) * 70ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

.hero [data-load] {
  animation: rise 900ms var(--ease-out) both;
  animation-delay: calc(var(--d, 0) * 90ms + 80ms);
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1080px) {
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 48px; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .index-row { grid-template-columns: 48px minmax(0, 1fr) 40px; }
  .index-row p { grid-column: 2 / 3; grid-row: 2; }
  .index-row .arrow { grid-row: 1 / span 2; }
  .shared { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .shared li:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid,
  .page-hero-grid,
  .section-head,
  .statement,
  .industries-split,
  .cta-grid,
  .split,
  .service,
  .igaming,
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .page-hero-grid { align-items: start; }
  .hero-visual { max-width: 620px; }
  .sticky { position: static; }
  .hero-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-strip li:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero-strip li:nth-child(n + 3) { border-top: 1px solid var(--d-line); }
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .pillars li:nth-child(3) { padding-left: 0; border-left: 0; }
  .industry { grid-template-columns: 48px minmax(0, 1fr); }
  .industry-body { grid-column: 2; }
  .timeline li { grid-template-columns: 80px minmax(0, 1fr); }
  .timeline li p { grid-column: 2; }
  .timeline .step-num { font-size: 2.2rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  :root { --header-h: 68px; }
  .brand { width: 104px; height: 23px; }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; }
  .hero-strip { grid-template-columns: minmax(0, 1fr); }
  .hero-strip li, .hero-strip li + li { padding: 20px 0; border-left: 0; }
  .hero-strip li + li { border-top: 1px solid var(--d-line); }
  .pillars, .shared { grid-template-columns: minmax(0, 1fr); row-gap: 0; }
  .pillars li, .pillars li + li, .shared li, .shared li + li { padding: 22px 0; border-left: 0; }
  .pillars li + li, .shared li + li { border-top: 1px solid var(--line); }
  .industry-grid { grid-template-columns: minmax(0, 1fr); }
  .industry-grid a { min-height: 0; }
  .scope ul, .capabilities, .reasons, .stack-notes, .form-row { grid-template-columns: minmax(0, 1fr); }
  .capabilities li:nth-child(even) { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote { grid-template-columns: minmax(0, 1fr); }
  .quote svg { width: 40px; }
  .index-row { grid-template-columns: 36px minmax(0, 1fr); padding: 24px 0; gap: 8px 16px; }
  .index-row .arrow { display: none; }
  .stack { grid-template-columns: minmax(0, 1fr); }
  .stack-band { padding: 10px; }
  .stack-band span { writing-mode: horizontal-tb; transform: none; padding: 0; }
  .stack-layer { grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 20px; }
  .industry { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .industry-body { grid-column: auto; }
  .industry .mono { padding-top: 0; }
  .timeline li { grid-template-columns: minmax(0, 1fr); gap: 12px; padding-block: 28px; }
  .timeline li p { grid-column: auto; }
  .igaming-panel li { grid-template-columns: 32px minmax(0, 1fr); }
  .igaming-panel li .mono:last-child { display: none; }
  .btn-row .btn { flex: 1 1 auto; }
  .page-hero .hero-aside { padding-left: 20px; }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { transform: none; transition: opacity 400ms ease; }
  .hero [data-load] { animation: none; }
  .schematic .flow, .status i, .btn-progress i::after { animation: none; }
  .mobile-menu a.m-link { transform: none; }
}
