:root {
  --ink: #090909;
  --ink-soft: #151515;
  --paper: #f5f5f0;
  --paper-soft: #ecece6;
  --white: #ffffff;
  --muted: #92928d;
  --muted-dark: #5f605d;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(9, 9, 9, 0.16);
  --lime: #43fc1c;
  --lime-soft: #a8ff62;
  --serif: "Roboto Serif", Georgia, serif;
  --sans: "Open Sans", Arial, sans-serif;
  --type-micro: 0.625rem;
  --type-caption: 0.75rem;
  --type-small: 0.875rem;
  --container: 1160px;
  --header-height: 80px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 5px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  position: relative;
  overflow: clip;
  padding: 136px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 100%;
  height: auto;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 27px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-caption);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-navigation > a:not(.button) {
  transition: color 180ms ease;
}

.site-navigation > a:not(.button):hover,
.site-navigation > a:not(.button):focus-visible {
  color: var(--lime);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--type-caption);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 9px 14px;
  font-size: 0.72rem;
}

.button--large {
  min-height: 61px;
  padding: 16px 24px;
  font-size: 0.9rem;
}

.button--primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(67, 252, 28, 0.35);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--lime-soft);
  box-shadow: 0 12px 30px -14px rgba(67, 252, 28, 0.95);
}

.button--outline {
  border-color: rgba(67, 252, 28, 0.6);
  color: var(--lime);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #252525;
}

.text-lime {
  color: var(--lime);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--muted-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--lime {
  color: rgba(255, 255, 255, 0.55);
}

.eyebrow--dark {
  color: rgba(9, 9, 9, 0.58);
}

.eyebrow-number {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0;
}

.eyebrow--dark .eyebrow-number {
  color: var(--ink);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.055em;
}

h1,
h2 {
  margin-bottom: 28px;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}

h3 {
  line-height: 1.04;
}

.hero {
  min-height: 840px;
  padding-top: calc(var(--header-height) + 84px);
  padding-bottom: 108px;
}

.hero-gridlines,
.manifesto-grid,
.clients-lines,
.contact-grid {
  position: absolute;
  pointer-events: none;
}

.hero-gridlines {
  right: -8%;
  bottom: -23%;
  width: 82%;
  height: 65%;
  opacity: 0.34;
  background-image: linear-gradient(rgba(67, 252, 28, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(67, 252, 28, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to top, #000, transparent 72%);
  transform: perspective(500px) rotateX(58deg) rotateZ(-6deg);
  transform-origin: bottom;
}

.hero-dots {
  position: absolute;
  width: 190px;
  height: 130px;
  opacity: 0.8;
  background-image: radial-gradient(var(--lime) 1.5px, transparent 1.5px);
  background-size: 19px 19px;
}

.hero-dots--top {
  top: 150px;
  right: 7%;
  mask-image: linear-gradient(135deg, #000, transparent);
}

.hero-dots--bottom {
  right: 21%;
  bottom: 105px;
  opacity: 0.4;
  mask-image: linear-gradient(45deg, transparent, #000);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 1.07fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 700px;
  color: var(--white);
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.07rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 52px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--ink);
  font-size: var(--type-caption);
  font-weight: 700;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 13px;
  color: var(--lime);
}

.text-link--light {
  color: var(--white);
}

.hero-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: var(--type-caption);
  letter-spacing: 0.02em;
}

.hero-details span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-details i,
.toolbar-status i,
.manifesto-card-bottom i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 13px var(--lime);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  isolation: isolate;
}

.visual-glow {
  position: absolute;
  z-index: -2;
  top: 35%;
  left: 38%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(67, 252, 28, 0.17);
  filter: blur(90px);
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(67, 252, 28, 0.34);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.visual-orbit--one {
  top: 4%;
  left: 4%;
  width: 88%;
  height: 82%;
}

.visual-orbit--two {
  top: 14%;
  left: -2%;
  width: 93%;
  height: 66%;
  border-color: rgba(255, 255, 255, 0.13);
  transform: rotate(33deg);
}

.dashboard-window {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(32, 32, 32, 0.96), rgba(10, 10, 10, 0.92));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.08);
}

.dashboard-window--main {
  position: absolute;
  top: 50px;
  right: 0;
  width: min(100%, 570px);
  min-height: 430px;
  padding: 18px;
  transform: rotate(3deg);
}

.window-toolbar,
.dashboard-heading,
.chart-heading,
.dashboard-footer,
.service-panel-top,
.manifesto-card-top,
.process-step,
.client-grid li,
.contact-layout,
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
}

.window-toolbar {
  justify-content: space-between;
  color: var(--muted);
  font-size: var(--type-micro);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #474747;
}

.window-dots i:first-child {
  background: var(--lime);
}

.toolbar-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: none;
}

.toolbar-status i {
  width: 5px;
  height: 5px;
}

.dashboard-heading {
  justify-content: space-between;
  margin: 35px 7px 22px;
}

.dashboard-heading strong {
  display: block;
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.micro-label {
  color: var(--lime);
  font-size: 0.57rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.date-pill {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.57rem;
}

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

.stat-card {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.stat-card span,
.stat-card strong {
  display: block;
}

.stat-card span {
  color: var(--muted);
  font-size: var(--type-micro);
}

.stat-card strong {
  margin: 4px 0 9px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.stat-card--lime strong {
  color: var(--lime);
}

.stat-line {
  display: flex;
  gap: 4px;
}

.stat-line i {
  display: block;
  width: 25%;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-line i:nth-child(1),
.stat-line i:nth-child(2),
.stat-card--lime .stat-line i:nth-child(3) {
  background: var(--lime);
}

.dashboard-chart {
  margin-top: 10px;
  padding: 17px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.chart-heading {
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
}

.chart-heading span:last-child {
  color: var(--lime);
  font-size: 0.58rem;
}

.chart-bars {
  display: flex;
  height: 112px;
  align-items: flex-end;
  gap: 10px;
  margin-top: 17px;
  padding: 0 7px;
  background: repeating-linear-gradient(to top, transparent 0 27px, rgba(255, 255, 255, 0.08) 28px);
}

.chart-bars i {
  display: block;
  width: 100%;
  height: var(--bar);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(67, 252, 28, 0.22), var(--lime));
  opacity: 0.88;
}

.chart-bars i:nth-child(odd) {
  opacity: 0.47;
}

.dashboard-footer {
  justify-content: space-between;
  margin: 14px 4px 2px;
  color: var(--muted);
  font-size: var(--type-micro);
}

.dashboard-footer span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--lime);
}

.pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.code-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(11, 11, 11, 0.88);
}

.code-card--floating {
  position: absolute;
  bottom: 12px;
  left: 1px;
  width: 175px;
  padding: 19px;
  transform: rotate(-8deg);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45);
}

.code-mark {
  color: var(--lime);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
}

.code-line {
  display: block;
  height: 3px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.22);
}

.code-line--long {
  width: 88%;
}

.code-line--medium {
  width: 66%;
}

.code-line--short {
  width: 48%;
}

.code-cursor {
  align-self: flex-end;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--lime);
}

.visual-caption {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: var(--type-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-caption--top {
  top: 14px;
  right: 10px;
}

.visual-caption--bottom {
  right: 4%;
  bottom: 6px;
}

.caption-dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--lime);
}

.caption-index {
  color: var(--lime);
}

.hero-arc,
.contact-arc {
  position: absolute;
  left: 50%;
  width: 290px;
  height: 105px;
  border: 16px solid var(--lime);
  border-top: 0;
  border-radius: 0 0 190px 190px;
  opacity: 0.86;
  box-shadow: 0 24px 55px rgba(67, 252, 28, 0.22);
  transform: translateX(-50%);
}

.hero-arc {
  bottom: -47px;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.67fr);
  align-items: end;
  gap: 100px;
  margin-bottom: 70px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-intro {
  max-width: 380px;
  margin: 0 0 6px;
  color: var(--muted-dark);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.service-panel {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 38px;
  border-radius: 17px;
}

.service-panel--software {
  background: var(--ink);
  color: var(--white);
}

.service-panel--hardware {
  background: var(--lime);
  color: var(--ink);
}

.service-panel-top {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  margin-bottom: 68px;
}

.panel-index {
  margin: 0;
  color: var(--muted-dark);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-panel--software .panel-index,
.manifesto-card .panel-index {
  color: var(--muted);
}

.panel-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.panel-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.panel-icon--lime {
  color: var(--lime);
}

.panel-icon--dark {
  color: var(--ink);
}

.service-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3vw, 3.05rem);
}

.service-panel > p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-bottom: 28px;
  color: var(--muted-dark);
  font-size: var(--type-small);
  line-height: 1.75;
}

.service-panel--software > p {
  color: rgba(255, 255, 255, 0.59);
}

.service-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  max-width: 520px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line-dark);
}

.service-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.service-list--dark li {
  border-color: rgba(9, 9, 9, 0.19);
}

.service-list span {
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 700;
}

.service-list--dark span {
  color: rgba(9, 9, 9, 0.52);
}

.service-list strong {
  font-size: var(--type-small);
  font-weight: 600;
  line-height: 1.4;
}

.service-art {
  position: absolute;
  right: 24px;
  bottom: -2px;
  width: 54%;
  height: 185px;
  overflow: hidden;
  border: 1px solid rgba(67, 252, 28, 0.38);
  border-radius: 10px 10px 0 0;
  background: var(--ink-soft);
  box-shadow: -30px 0 80px rgba(67, 252, 28, 0.07);
  transform: rotate(-4deg);
}

.service-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.95), transparent 35%), linear-gradient(0deg, rgba(9, 9, 9, 0.77), transparent 70%);
  content: "";
}

.service-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% 38%;
  opacity: 0.74;
}

.service-art picture {
  display: block;
  width: 100%;
  height: 100%;
}

.art-label {
  position: absolute;
  z-index: 1;
  bottom: 13px;
  left: 17px;
  color: var(--lime);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hardware-visual {
  position: absolute;
  right: -20px;
  bottom: 30px;
  width: 300px;
  height: 275px;
  opacity: 0.68;
  transform: rotate(-9deg);
}

.hardware-screen {
  position: absolute;
  top: 45px;
  left: 50px;
  width: 236px;
  height: 155px;
  border: 3px solid rgba(9, 9, 9, 0.68);
  border-radius: 9px;
  background: rgba(9, 9, 9, 0.16);
  box-shadow: 10px 12px 0 rgba(9, 9, 9, 0.2);
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 22px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(9, 9, 9, 0.38);
}

.screen-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.42);
}

.screen-bar i:first-child {
  background: var(--ink);
}

.screen-bar span {
  width: 72px;
  height: 3px;
  margin-left: auto;
  border-radius: 3px;
  background: rgba(9, 9, 9, 0.25);
}

.screen-content {
  display: grid;
  gap: 12px;
  padding: 22px 18px;
}

.screen-content span {
  display: block;
  height: 7px;
  border-radius: 5px;
  background: rgba(9, 9, 9, 0.22);
}

.screen-content span:nth-child(1) {
  width: 55%;
  background: var(--ink);
}

.screen-content span:nth-child(2) {
  width: 82%;
}

.screen-content span:nth-child(3) {
  width: 69%;
}

.screen-content span:nth-child(4) {
  width: 42%;
  background: rgba(9, 9, 9, 0.48);
}

.hardware-chip {
  position: absolute;
  top: 0;
  left: 5px;
  display: grid;
  width: 96px;
  height: 70px;
  place-items: center;
  border: 2px solid rgba(9, 9, 9, 0.7);
  border-radius: 8px;
  background: rgba(67, 252, 28, 0.27);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hardware-chip span {
  color: var(--ink);
}

.hardware-cable {
  position: absolute;
  right: 7px;
  bottom: 0;
  width: 145px;
  height: 92px;
  border-right: 3px solid rgba(9, 9, 9, 0.5);
  border-bottom: 3px solid rgba(9, 9, 9, 0.5);
  border-radius: 0 0 65px 0;
}

.service-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding: 23px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
}

.ribbon-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 10px;
}

.ribbon-item + .ribbon-item {
  border-left: 1px solid var(--line-dark);
}

.ribbon-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--ink);
}

.ribbon-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.ribbon-item strong,
.ribbon-item span {
  display: block;
}

.ribbon-item strong {
  margin-bottom: 2px;
  font-size: var(--type-caption);
  line-height: 1.35;
}

.ribbon-item div > span {
  color: var(--muted-dark);
  font-size: var(--type-caption);
  line-height: 1.45;
}

.manifesto-section {
  min-height: 690px;
  padding: 150px 0;
}

.manifesto-grid {
  right: -8%;
  bottom: -35%;
  width: 80%;
  height: 80%;
  background-image: linear-gradient(rgba(67, 252, 28, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(67, 252, 28, 0.11) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: linear-gradient(to top, #000, transparent);
  transform: perspective(500px) rotateX(55deg) rotateZ(-7deg);
  transform-origin: bottom;
}

.manifesto-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 100px;
}

.manifesto-copy h2 {
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.manifesto-copy > p {
  max-width: 490px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 1rem;
  line-height: 1.8;
}

.manifesto-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(37, 37, 37, 0.9), rgba(12, 12, 12, 0.86));
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
}

.manifesto-card-top {
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.manifesto-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin: 86px 0 75px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.manifesto-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  color: var(--muted);
  font-size: var(--type-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto-card-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.manifesto-ring {
  position: absolute;
  right: -78px;
  bottom: -124px;
  width: 330px;
  height: 220px;
  border: 20px solid rgba(67, 252, 28, 0.72);
  border-top: 0;
  border-radius: 0 0 220px 220px;
  box-shadow: 0 18px 40px rgba(67, 252, 28, 0.16);
}

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

.section-heading--process {
  margin-bottom: 80px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: 90px;
}

.process-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  position: absolute;
  top: 36px;
  bottom: 38px;
  left: 21px;
  border-left: 1px dashed var(--line-dark);
  content: "";
}

.process-step {
  position: relative;
  align-items: flex-start;
  gap: 19px;
  min-height: 146px;
  padding-bottom: 30px;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--paper);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 700;
}

.step-icon {
  display: grid;
  width: 57px;
  height: 57px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.process-step h3 {
  margin: 6px 0 6px;
  font-size: 1.65rem;
}

.process-step p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: var(--type-small);
  line-height: 1.7;
}

.process-poster {
  position: relative;
  padding-bottom: 32px;
}

.poster-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: var(--ink);
  box-shadow: 20px 25px 0 rgba(67, 252, 28, 0.14);
  transform: rotate(3deg);
}

.poster-frame img {
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
  object-position: center;
  opacity: 0.91;
}

.poster-frame picture {
  display: block;
}

.poster-note {
  position: absolute;
  right: -10px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted-dark);
  font-size: 0.63rem;
  font-weight: 700;
}

.poster-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.location-strip {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 80px;
  padding: 20px 24px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: var(--type-small);
}

.location-strip > span:not(.location-pulse) {
  color: var(--muted-dark);
}

.location-pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(67, 252, 28, 0.15), 0 0 16px var(--lime);
}

.location-strip .text-link {
  margin-left: auto;
  font-size: 0.75rem;
}

.clients-section {
  padding-bottom: 120px;
}

.clients-lines {
  top: 0;
  right: -20%;
  width: 75%;
  height: 100%;
  opacity: 0.4;
  background-image: linear-gradient(90deg, transparent 49.5%, rgba(67, 252, 28, 0.11) 50%, transparent 50.5%), linear-gradient(rgba(67, 252, 28, 0.11) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, transparent);
  transform: skewY(-8deg);
}

.clients-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.56fr);
  gap: 100px;
  align-items: end;
  margin-bottom: 68px;
}

.clients-heading h2 {
  margin-bottom: 0;
}

.clients-heading > p {
  max-width: 360px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: var(--type-small);
  line-height: 1.8;
}

.client-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-grid li {
  position: relative;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.client-grid li:nth-child(1),
.client-grid li:nth-child(2) {
  grid-column: span 2;
}

.client-grid li:nth-child(3) {
  grid-column: span 2;
}

.client-grid li:nth-child(4) {
  grid-column: span 3;
}

.client-grid li:nth-child(5) {
  grid-column: span 3;
}

@media (hover: hover) {
  .client-grid li:hover {
    border-color: rgba(67, 252, 28, 0.68);
    background: rgba(67, 252, 28, 0.07);
    transform: translateY(-4px);
  }
}

.client-grid li span {
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 700;
}

.client-grid strong {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.client-grid li:nth-child(4) strong {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
}

.client-footnote {
  position: relative;
  display: flex;
  max-width: 700px;
  align-items: center;
  gap: 19px;
  margin: 84px auto 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
  color: var(--white);
}

.client-footnote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.45rem);
  letter-spacing: -0.04em;
  line-height: 1.13;
}

.client-quote-mark {
  align-self: flex-start;
  color: var(--lime);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.65;
}

.client-quote-mark--end {
  align-self: flex-end;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: 120px;
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(3.4rem, 5.8vw, 5.7rem);
}

.faq-intro > p {
  max-width: 330px;
  margin-bottom: 28px;
  color: var(--muted-dark);
  font-size: var(--type-small);
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 17px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  border-color: var(--lime);
  background: var(--lime);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 660px;
  margin: -3px 44px 22px 0;
  color: var(--muted-dark);
  font-size: var(--type-small);
  line-height: 1.75;
}

.contact-section {
  position: relative;
  overflow: clip;
  padding: 104px 0 144px;
  background: var(--lime);
  color: var(--ink);
}

.contact-grid {
  top: -25%;
  right: -5%;
  width: 52%;
  height: 150%;
  opacity: 0.2;
  background-image: linear-gradient(rgba(9, 9, 9, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 9, 9, 0.25) 1px, transparent 1px);
  background-size: 45px 45px;
  transform: perspective(500px) rotateX(55deg) rotateZ(-9deg);
}

.contact-layout {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  align-items: flex-end;
  gap: 70px;
}

.contact-layout h2 {
  margin-bottom: 23px;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.contact-layout h2 span {
  color: var(--white);
}

.contact-lead {
  max-width: 530px;
  margin-bottom: 0;
  color: rgba(9, 9, 9, 0.67);
  font-size: var(--type-small);
  line-height: 1.75;
}

.contact-actions {
  display: grid;
  min-width: 290px;
  gap: 22px;
  justify-items: start;
}

.contact-email {
  display: grid;
  gap: 2px;
  color: rgba(9, 9, 9, 0.64);
  font-size: var(--type-caption);
}

.contact-email strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.contact-arc {
  bottom: -62px;
  border-color: var(--ink);
  opacity: 0.82;
  box-shadow: none;
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: 22px;
  bottom: 21px;
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border: 1px solid rgba(9, 9, 9, 0.15);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), 0 0 0 5px rgba(67, 252, 28, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--lime-soft);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.floating-whatsapp svg path + path {
  stroke-width: 1.25;
}

.site-footer {
  padding: 50px 0 25px;
}

.footer-top {
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 43px;
  border-bottom: 1px solid var(--line);
}

.brand--footer {
  width: 143px;
}

.footer-top p,
.footer-mail {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-micro);
}

.footer-mail {
  color: var(--lime);
  transition: color 180ms ease;
}

.footer-mail:hover,
.footer-mail:focus-visible {
  color: var(--lime-soft);
}

.footer-bottom {
  justify-content: space-between;
  gap: 25px;
  padding-top: 23px;
  color: var(--muted);
  font-size: var(--type-micro);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal--delay {
  transition-delay: 100ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .site-navigation {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(370px, 1.1fr);
    gap: 26px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .dashboard-window--main {
    width: 100%;
  }

  .section-heading,
  .clients-heading {
    gap: 55px;
  }

  .manifesto-layout {
    gap: 55px;
  }

  .process-layout {
    gap: 50px;
  }

  .faq-layout {
    gap: 70px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .site-header {
    height: var(--header-height);
  }

  .brand {
    width: 142px;
  }

  .menu-toggle {
    display: block;
  }

  .site-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 15px 18px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 9, 9, 0.97);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-navigation > a:not(.button) {
    padding: 15px 6px;
    border-bottom: 1px solid var(--line);
  }

  .site-navigation .nav-cta {
    width: 100%;
    margin-top: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 130px;
  }

  .hero-layout,
  .manifesto-layout,
  .process-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 70px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 540px;
    margin: 0 auto;
  }

  .section-heading,
  .clients-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading,
  .section-heading--process {
    margin-bottom: 54px;
  }

  .service-panel {
    min-height: 710px;
  }

  .service-ribbon {
    grid-template-columns: 1fr;
  }

  .ribbon-item + .ribbon-item {
    padding-top: 18px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .manifesto-section {
    padding: 120px 0 145px;
  }

  .manifesto-layout {
    gap: 55px;
  }

  .process-poster {
    width: min(100%, 530px);
    margin: 0 auto;
  }

  .clients-heading > p {
    margin-bottom: 0;
  }

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

  .client-grid li:nth-child(n) {
    grid-column: span 1;
  }

  .client-grid li:nth-child(4) {
    grid-column: span 2;
  }

  .faq-layout {
    gap: 58px;
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(var(--container), calc(100% - 30px));
  }

  .section {
    padding: 90px 0;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 112px;
  }

  .hero-gridlines {
    right: -85%;
    bottom: -5%;
    width: 170%;
    height: 54%;
  }

  .hero-dots--top {
    top: 120px;
    right: -38px;
    transform: scale(0.75);
  }

  .hero-dots--bottom {
    right: -50px;
    bottom: 80px;
    transform: scale(0.65);
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 37px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-details {
    gap: 12px 17px;
    font-size: var(--type-caption);
  }

  .hero-visual {
    min-height: 390px;
    margin-top: -6px;
  }

  .dashboard-window--main {
    top: 37px;
    min-height: 300px;
    padding: 11px;
    border-radius: 9px;
  }

  .window-toolbar {
    font-size: var(--type-micro);
  }

  .window-dots i {
    width: 5px;
    height: 5px;
  }

  .toolbar-status i {
    width: 4px;
    height: 4px;
  }

  .dashboard-heading {
    margin: 23px 4px 13px;
  }

  .dashboard-heading strong {
    font-size: 1rem;
  }

  .micro-label,
  .date-pill,
  .chart-heading span,
  .dashboard-footer {
    font-size: var(--type-micro);
  }

  .date-pill {
    padding: 5px 6px;
  }

  .stat-card {
    min-height: 69px;
    padding: 9px;
  }

  .stat-card span {
    font-size: var(--type-micro);
  }

  .stat-card strong {
    margin: 3px 0 6px;
    font-size: 0.82rem;
  }

  .stat-line i {
    height: 2px;
  }

  .dashboard-chart {
    padding: 10px 9px 8px;
  }

  .chart-bars {
    height: 75px;
    gap: 5px;
    margin-top: 9px;
    padding: 0 3px;
    background-size: 100% 20px;
  }

  .code-card--floating {
    bottom: 0;
    left: -2px;
    width: 122px;
    padding: 12px;
    gap: 7px;
    border-radius: 8px;
  }

  .code-mark {
    font-size: var(--type-micro);
  }

  .code-line {
    height: 2px;
  }

  .visual-caption {
    font-size: var(--type-micro);
  }

  .visual-caption--top {
    top: 10px;
    right: 0;
  }

  .visual-caption--bottom {
    right: 0;
    bottom: -4px;
  }

  .visual-orbit--one {
    top: 7%;
    left: 0;
    width: 102%;
    height: 75%;
  }

  .visual-orbit--two {
    top: 11%;
    left: -12%;
    width: 116%;
    height: 63%;
  }

  .hero-arc,
  .contact-arc {
    width: 175px;
    height: 65px;
    border-width: 10px;
  }

  .hero-arc {
    bottom: -30px;
  }

  .section-heading h2,
  .clients-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .section-intro {
    font-size: var(--type-small);
  }

  .service-panels {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 710px;
    padding: 25px 22px;
    border-radius: 12px;
  }

  .service-panel-top {
    margin-bottom: 55px;
  }

  .service-panel h3 {
    max-width: 330px;
    font-size: 2.35rem;
  }

  .service-panel > p {
    font-size: var(--type-small);
  }

  .service-list li {
    grid-template-columns: 23px 1fr;
    gap: 8px;
    padding: 11px 0;
  }

  .service-list strong {
    font-size: var(--type-small);
  }

  .service-art {
    right: 7px;
    width: 63%;
    height: 150px;
  }

  .hardware-visual {
    right: -56px;
    bottom: 24px;
    transform: scale(0.83) rotate(-9deg);
    transform-origin: bottom right;
  }

  .service-ribbon {
    gap: 0;
    margin-top: 13px;
    padding: 17px;
  }

  .ribbon-item {
    gap: 10px;
    padding: 10px 2px;
  }

  .ribbon-item strong {
    font-size: var(--type-caption);
  }

  .ribbon-item div > span {
    font-size: var(--type-caption);
  }

  .manifesto-section {
    padding: 95px 0 120px;
  }

  .manifesto-copy h2 {
    font-size: clamp(2.9rem, 13vw, 4.45rem);
  }

  .manifesto-copy > p {
    font-size: 0.86rem;
  }

  .manifesto-card {
    min-height: 300px;
    padding: 19px;
  }

  .manifesto-card blockquote {
    margin: 62px 0 54px;
    font-size: 1.65rem;
  }

  .manifesto-card-bottom {
    gap: 9px 12px;
    font-size: var(--type-micro);
  }

  .manifesto-ring {
    right: -96px;
    bottom: -116px;
    width: 285px;
    height: 190px;
    border-width: 16px;
  }

  .process-section {
    padding-top: 92px;
  }

  .process-layout {
    gap: 55px;
  }

  .process-steps::before {
    left: 17px;
  }

  .process-step {
    gap: 10px;
    min-height: 154px;
    padding-bottom: 28px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: var(--type-micro);
  }

  .step-icon {
    width: 47px;
    height: 47px;
  }

  .step-icon svg {
    width: 22px;
    height: 22px;
  }

  .process-step h3 {
    margin: 3px 0 4px;
    font-size: 1.35rem;
  }

  .process-step p {
    font-size: var(--type-small);
    line-height: 1.6;
  }

  .poster-frame {
    box-shadow: 12px 15px 0 rgba(67, 252, 28, 0.14);
  }

  .poster-note {
    right: -4px;
    font-size: var(--type-micro);
  }

  .location-strip {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-top: 58px;
    padding: 17px 0;
    font-size: var(--type-small);
  }

  .location-strip .text-link {
    width: 100%;
    margin: 7px 0 0;
  }

  .clients-section {
    padding-bottom: 93px;
  }

  .client-grid {
    gap: 8px;
  }

  .client-grid li {
    min-height: 145px;
    padding: 14px;
  }

  .client-grid strong,
  .client-grid li:nth-child(4) strong {
    font-size: 1.05rem;
  }

  .client-footnote {
    gap: 9px;
    margin-top: 58px;
    padding-top: 22px;
  }

  .client-footnote p {
    font-size: 1.45rem;
  }

  .client-quote-mark {
    font-size: 2.8rem;
  }

  .faq-layout {
    gap: 45px;
  }

  .faq-intro h2 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .faq-list summary {
    min-height: 68px;
    padding: 15px 0;
    font-size: 0.94rem;
  }

  .faq-list details p {
    margin-right: 23px;
    font-size: var(--type-small);
  }

  .contact-section {
    padding: 88px 0 112px;
  }

  .contact-layout h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .contact-lead {
    font-size: var(--type-small);
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .contact-email {
    font-size: var(--type-caption);
  }

  .contact-email strong {
    font-size: 1.04rem;
  }

  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 47px;
    padding: 11px 13px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp svg {
    width: 23px;
    height: 23px;
  }

  .site-footer {
    padding-top: 39px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    gap: 14px;
    padding-bottom: 29px;
  }

  .footer-bottom {
    gap: 8px;
    padding-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
