/* Sienna Marketing — design tokens from design-system/sienna-marketing/MASTER.md */

:root {
  color-scheme: dark;

  --color-bg: #050505;
  --color-bg-elevated: #0f0f0f;
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-primary: #8b92ff;
  --color-primary-muted: #5c63c7;
  --color-primary-glow: rgba(139, 146, 255, 0.25);
  --color-text: #ffffff;
  --color-text-secondary: #a1a1aa;
  --color-text-muted: #71717a;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.16);
  --color-success: #22c55e;
  --color-on-primary: #0a0a0b;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-btn: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 9999px; /* status chips only — never buttons */

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
  --gutter: 24px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

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

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

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

button {
  font: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 16px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--color-text);
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.accent {
  color: var(--color-primary);
  background: linear-gradient(120deg, #8b92ff 0%, #a5abff 55%, #6b7bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section {
  padding: 80px 0;
}

@media (min-width: 1024px) {
  :root {
    --gutter: 48px;
  }

  .section {
    padding: 120px 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms var(--ease-out),
    box-shadow 200ms ease,
    filter 200ms ease,
    color 200ms ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn:focus-visible,
.nav-link:focus-visible,
.text-link:focus-visible,
.icon-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #6b7bff 0%, #8b92ff 55%, #9aa0ff 100%);
  color: #ffffff;
  box-shadow: 0 0 40px var(--color-primary-glow);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.btn .arrow {
  transition: transform 200ms var(--ease-out);
}

.btn:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 15px;
  transition: color 200ms ease;
}

.text-link:hover {
  color: #a8adff;
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo span {
  color: var(--color-primary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 200ms ease;
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
  position: absolute;
  inset: var(--nav-h) 0 auto;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--color-border);
  padding: 20px var(--gutter) 28px;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 16px;
  padding: 8px 0;
}

.mobile-nav .btn {
  margin-top: 8px;
  width: 100%;
}

@media (min-width: 960px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 48px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-copy p {
  max-width: 34rem;
  margin: 20px 0 0;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--color-text-secondary);
}

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

.hero-visual {
  position: relative;
  min-height: 360px;
}

.hero-blob {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 10%;
  right: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 146, 255, 0.35) 0%, rgba(92, 99, 199, 0.12) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: blob-drift 12s ease-in-out infinite alternate;
}

@keyframes blob-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-20px, 16px) scale(1.08);
  }
}

.dashboard {
  position: relative;
  z-index: 1;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: 0 0 0 1px rgba(139, 146, 255, 0.06), 0 24px 80px rgba(0, 0, 0, 0.45);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.dash-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #86efac;
  font-size: 12px;
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

.dash-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 16px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.metric-delta {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

.dash-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.chart-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  min-height: 150px;
}

.chart-panel h4 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.line-chart {
  width: 100%;
  height: 110px;
  overflow: visible;
}

.line-chart .area {
  fill: rgba(139, 146, 255, 0.18);
}

.line-chart .line {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(139, 146, 255, 0.65));
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.line-chart.is-drawn .line {
  animation: draw-line 1.2s var(--ease-out) forwards;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.side-panels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gauge-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gauge {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.gauge-track {
  fill: none;
  stroke: #27272a;
  stroke-width: 8;
}

.gauge-value {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 8;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 188.4;
  stroke-dashoffset: 188.4;
  filter: drop-shadow(0 0 6px rgba(139, 146, 255, 0.5));
}

.gauge.is-drawn .gauge-value {
  animation: draw-gauge 1s var(--ease-out) 0.2s forwards;
}

@keyframes draw-gauge {
  to {
    stroke-dashoffset: 41.45; /* ~78% of 188.4 */
  }
}

.gauge-pct {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 64px;
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--color-primary);
  box-shadow: 0 0 12px rgba(139, 146, 255, 0.35);
  opacity: 0.45;
  transform-origin: bottom;
  transform: scaleY(0.2);
  transition: transform 700ms var(--ease-out), opacity 700ms ease;
}

.bars.is-drawn .bar {
  transform: scaleY(1);
  opacity: 1;
}

.bars .bar:nth-child(1) {
  height: 38%;
  transition-delay: 0.05s;
}
.bars .bar:nth-child(2) {
  height: 62%;
  transition-delay: 0.12s;
}
.bars .bar:nth-child(3) {
  height: 48%;
  transition-delay: 0.18s;
}
.bars .bar:nth-child(4) {
  height: 78%;
  transition-delay: 0.24s;
}
.bars .bar:nth-child(5) {
  height: 92%;
  transition-delay: 0.3s;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.activity-item .status-dot {
  width: 6px;
  height: 6px;
}

@media (min-width: 1024px) {
  .hero {
    padding: 72px 0 96px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
  }
}

@media (max-width: 640px) {
  .dash-body {
    grid-template-columns: 1fr;
  }
}

/* Logos */
.logos {
  padding: 40px 0 64px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.logos .overline {
  display: block;
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 40px;
  opacity: 0.45;
}

.client-logo {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.client-logo.light {
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-body);
}

/* Services */
.services-grid {
  display: grid;
  gap: 40px;
}

.services-intro p {
  margin: 16px 0 24px;
  max-width: 28rem;
}

.service-cards {
  display: grid;
  gap: 16px;
}

.service-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.service-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 0 32px rgba(139, 146, 255, 0.08);
}

.icon-well {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(139, 146, 255, 0.12);
  color: var(--color-primary);
  margin-bottom: 16px;
}

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

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  margin: 0 0 16px;
  font-size: 15px;
}

@media (min-width: 640px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
  }
}

/* Stats */
.stats {
  padding: 0;
}

.stats-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat {
  padding: 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.stat:nth-child(2n) {
  border-right: none;
}

.stat:nth-child(n + 3) {
  border-bottom: none;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

@media (min-width: 900px) {
  .stats {
    padding: 40px 0;
  }

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

  .stat {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    padding: 40px 20px;
  }

  .stat:last-child {
    border-right: none;
  }
}

/* Case studies */
.cases-grid {
  display: grid;
  gap: 40px;
}

.cases-intro p {
  margin: 16px 0 24px;
  max-width: 28rem;
}

.case-cards {
  display: grid;
  gap: 16px;
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  padding: 28px;
  isolation: isolate;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139, 146, 255, 0.45), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(60, 80, 200, 0.35), transparent 45%),
    linear-gradient(160deg, #1a1535 0%, #0a0a12 55%, #050508 100%);
}

.case-card:nth-child(2)::before {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(100, 120, 255, 0.4), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(80, 60, 180, 0.35), transparent 50%),
    linear-gradient(200deg, #12101f 0%, #08080e 100%);
}

.case-card:nth-child(3)::before {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(139, 146, 255, 0.35), transparent 50%),
    radial-gradient(ellipse at 10% 10%, rgba(40, 100, 200, 0.3), transparent 40%),
    linear-gradient(180deg, #14122a 0%, #07070c 100%);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.35) 45%, transparent 75%);
}

.case-card h3 {
  margin-bottom: 8px;
}

.case-card p {
  margin: 0 0 14px;
  font-size: 14px;
  max-width: 28ch;
}

@media (min-width: 768px) {
  .case-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .cases-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
  }
}

/* Process */
.process-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 56px;
}

.process-steps {
  display: grid;
  gap: 28px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 146, 255, 0.12);
  border: 1px solid rgba(139, 146, 255, 0.28);
  color: var(--color-primary);
  box-shadow: 0 0 28px rgba(139, 146, 255, 0.15);
}

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

.step-num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  margin: 0;
  font-size: 14px;
  max-width: 22ch;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .process-steps::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    z-index: 0;
  }

  .process-step {
    z-index: 1;
  }
}

/* CTA band */
.cta-band {
  padding: 40px 0 80px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 64px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139, 146, 255, 0.28), transparent 55%),
    linear-gradient(180deg, #1a1530 0%, #0a0a12 100%);
}

.cta-panel h2 {
  margin-bottom: 12px;
}

.cta-panel p {
  margin: 0 auto 28px;
  max-width: 32rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .cta-panel {
    padding: 88px 48px;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 28ch;
  font-size: 14px;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--color-text-secondary);
  padding: 5px 0;
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-muted);
}

.socials {
  display: flex;
  gap: 12px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.icon-link:hover {
  color: var(--color-text);
  border-color: var(--color-border-strong);
  background: rgba(255, 255, 255, 0.04);
}

.icon-link svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 32px;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms var(--ease-out),
    transform 600ms var(--ease-out);
}

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

.reveal-stagger > .reveal:nth-child(1) {
  transition-delay: 0ms;
}
.reveal-stagger > .reveal:nth-child(2) {
  transition-delay: 80ms;
}
.reveal-stagger > .reveal:nth-child(3) {
  transition-delay: 160ms;
}
.reveal-stagger > .reveal:nth-child(4) {
  transition-delay: 240ms;
}

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

  .hero-blob,
  .line-chart .line,
  .gauge-value,
  .bar,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

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

  .line-chart .line {
    stroke-dashoffset: 0;
  }

  .gauge-value {
    stroke-dashoffset: 41.45;
  }

  .bars .bar {
    transform: scaleY(1);
    opacity: 1;
  }
}
