@use 'sass:math';
@use '../compiled/tokens/scss/scale';

@function step($step, $base: 1em, $ratio: scale.$modular-ratio) {
  @return math.pow($ratio, $step) * $base;
}

@function step-class-segment($step, $negative-prefix: 'n') {
  $result: math.abs($step);

  @if $step < 0 {
    $result: $negative-prefix + $result;
  }

  @return $result;
}
