:root {
  --bg: #0f220d;
  --bg-deep: #071707;
  --panel: rgba(26, 58, 23, 0.24);
  --panel-strong: rgba(26, 58, 23, 0.42);
  --green: #a3ff00;
  --green-dark: #2d5a27;
  --cream: #fdf6e3;
  --muted: rgba(253, 246, 227, 0.68);
  --line: rgba(163, 255, 0, 0.16);
  --radius: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(163, 255, 0, 0.11), transparent 28rem),
    linear-gradient(180deg, #071707 0%, #0f220d 42%, #071707 100%);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(163, 255, 0, 0.08);
  background: rgba(7, 23, 7, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(7, 23, 7, 0.93);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(163, 255, 0, 0.58));
}

.brand span {
  font-size: clamp(0.82rem, 2.5vw, 1.16rem);
}

.brand strong {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(253, 246, 227, 0.72);
}

.main-nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green) !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  display: block;
  height: 4px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 112px 0 72px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.7;
}

.hero-glow-a {
  width: 48vw;
  height: 48vw;
  min-width: 320px;
  min-height: 320px;
  background: rgba(163, 255, 0, 0.16);
}

.hero-glow-b {
  right: 10%;
  bottom: 18%;
  width: 360px;
  height: 360px;
  background: rgba(45, 90, 39, 0.24);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(163, 255, 0, 0.34);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 34px auto 28px;
  max-width: 980px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span,
.section-title h2 span,
.contact-box h2 span {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  min-height: 44px;
  margin: 0 0 46px;
  color: var(--muted);
  font-size: clamp(1.08rem, 4.5vw, 1.5rem);
}

.hero-subtitle strong {
  color: var(--green);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #0f220d;
  box-shadow: 0 0 28px rgba(163, 255, 0, 0.2);
}

.button-secondary {
  border: 1px solid rgba(253, 246, 227, 0.22);
  color: var(--cream);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 24px;
  height: 24px;
  border-right: 3px solid rgba(163, 255, 0, 0.45);
  border-bottom: 3px solid rgba(163, 255, 0, 0.45);
  transform: translateX(-50%) rotate(45deg);
  animation: bob 1.8s ease-in-out infinite;
}

.partners {
  overflow: hidden;
  padding: 42px 0;
  border-block: 1px solid rgba(163, 255, 0, 0.08);
  background: rgba(7, 23, 7, 0.45);
  text-align: center;
}

.partners p {
  margin: 0 0 22px;
  color: rgba(253, 246, 227, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.partner-marquee,
.case-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.partner-track img {
  width: 142px;
  height: 64px;
  object-fit: contain;
  opacity: 0.68;
  filter: brightness(0) invert(1);
}

.section {
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.copy h2,
.section-title h2,
.contact-box h2 {
  margin: 18px 0 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1;
}

.copy p,
.section-title p,
.contact-box p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.stats div {
  border-left: 2px solid var(--green);
  padding-left: 18px;
}

.stats strong {
  display: block;
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

.stats span {
  color: rgba(163, 255, 0, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(163, 255, 0, 0.18);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.about-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 230px;
  padding: 18px;
  border-radius: 18px;
  background: var(--green);
  color: #0f220d;
  font-weight: 900;
  font-family: "Space Grotesk", sans-serif;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-title.left {
  margin-left: 0;
  text-align: left;
}

.feature-grid,
.service-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

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

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card,
.service-card,
.process-grid article,
.faq-list details {
  border: 1px solid rgba(163, 255, 0, 0.14);
  border-radius: 24px;
  background: var(--panel);
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px;
}

.feature-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--green);
  color: #0f220d;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-body {
  min-width: 0;
}

.feature-card b {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.32rem;
  font-family: "Space Grotesk", sans-serif;
}

.feature-card p,
.service-card li,
.process-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.services,
.faq {
  background: rgba(15, 34, 13, 0.38);
}

.service-card,
.process-grid article {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 230px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(163, 255, 0, 0.05);
  filter: blur(22px);
  pointer-events: none;
  transition: background 180ms ease;
}

.service-card:hover::after {
  background: rgba(163, 255, 0, 0.1);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(163, 255, 0, 0.1);
  color: var(--green);
  box-shadow: 0 0 15px rgba(163, 255, 0, 0.1);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover .service-icon {
  background: var(--green);
  color: #0f220d;
  box-shadow: 0 0 25px rgba(163, 255, 0, 0.3);
}

.service-icon svg,
.modal-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover,
.process-grid article:hover,
.feature-card:hover {
  border-color: rgba(163, 255, 0, 0.38);
  background: var(--panel-strong);
  transform: translateY(-3px);
}

.service-card:hover {
  transform: translateY(-3px) scale(1.02);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card small {
  color: rgba(163, 255, 0, 0.66);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card h3,
.process-grid h3,
.case-track h3 {
  margin: 12px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.service-card h3 {
  transition: color 180ms ease;
}

.service-card:hover h3 {
  color: var(--green);
}

.service-card button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.7;
}

.service-card button::after {
  content: "→";
  transition: transform 180ms ease;
}

.service-card:hover button {
  opacity: 1;
}

.service-card:hover button::after {
  transform: translateX(4px);
}

.service-card ul {
  margin: 0;
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
}

.service-card li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.35;
}

.service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.service-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 7, 0.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(163, 255, 0, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(163, 255, 0, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(163, 255, 0, 0.035) 1px, transparent 1px),
    rgba(15, 34, 13, 0.98);
  background-size: 24px 24px;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.5), 0 0 42px rgba(163, 255, 0, 0.1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(163, 255, 0, 0.2);
  border-radius: 14px;
  background: rgba(7, 23, 7, 0.72);
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-status,
.modal-header small,
.modal-section h4 {
  color: rgba(163, 255, 0, 0.54);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-header {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 24px 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(163, 255, 0, 0.1);
}

.modal-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--green);
  color: #0f220d;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(163, 255, 0, 0.26);
}

.modal-header h3 {
  margin: 6px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1;
}

.modal-section {
  margin-top: 28px;
}

.modal-section p,
.modal-step p,
.modal-metric span {
  color: var(--muted);
  line-height: 1.68;
}

.modal-metric {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(163, 255, 0, 0.1);
  border-radius: 18px;
  background: rgba(7, 23, 7, 0.54);
}

.modal-metric strong {
  color: var(--green);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  white-space: nowrap;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(163, 255, 0, 0.14);
  border-radius: 10px;
  background: rgba(7, 23, 7, 0.68);
  color: rgba(253, 246, 227, 0.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
}

.modal-steps {
  display: grid;
  gap: 12px;
}

.modal-step {
  padding: 18px;
  border-left: 2px solid rgba(163, 255, 0, 0.5);
  border-radius: 12px;
  background: rgba(7, 23, 7, 0.38);
}

.modal-step strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(163, 255, 0, 0.1);
}

.modal-footer span {
  color: var(--muted);
  font-weight: 800;
}

.portfolio {
  background: var(--bg-deep);
}

.case-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px 20px;
  animation: marquee 46s linear infinite;
  will-change: transform;
}

.case-track:hover {
  animation-play-state: paused;
}

.case-track article {
  flex: 0 0 auto;
  width: 340px;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(163, 255, 0, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, #132c11, #0a150a);
}

.case-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 22px;
  background: var(--green);
  color: #0f220d;
  box-shadow: 0 0 34px rgba(163, 255, 0, 0.42);
}

.case-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-track small {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.case-track p {
  color: var(--muted);
}

.process-grid span {
  color: rgba(163, 255, 0, 0.38);
  font-size: 3rem;
  font-weight: 900;
  font-family: "Space Grotesk", sans-serif;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list details {
  padding: 22px 24px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
  padding-right: 42px;
  position: relative;
}

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

.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(163, 255, 0, 0.2);
  border-radius: 10px;
  background: rgba(7, 23, 7, 0.5);
  color: var(--green);
  transform: translateY(-50%);
}

.faq-list details[open] summary {
  color: var(--green);
}

.faq-list details[open] summary:after {
  content: "−";
}

.faq-list p {
  padding-top: 16px;
  border-top: 1px solid rgba(163, 255, 0, 0.08);
  margin-bottom: 0;
}

.contact {
  background: linear-gradient(180deg, transparent, rgba(7, 23, 7, 0.84));
}

.contact-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 54px;
  text-align: center;
  border: 1px solid rgba(163, 255, 0, 0.2);
  border-radius: 30px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid rgba(163, 255, 0, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 40px;
}

.site-footer nav {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.copyright {
  width: min(1160px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(163, 255, 0, 0.08);
  color: rgba(253, 246, 227, 0.42);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes bob {
  50% {
    translate: 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: 80px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 20px;
    border: 1px solid rgba(163, 255, 0, 0.18);
    border-radius: 20px;
    background: rgba(7, 23, 7, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 10px;
  }

  .menu-button {
    display: block;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand {
    gap: 10px;
    letter-spacing: 0.12em;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 116px 0 76px;
  }

  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .eyebrow {
    max-width: 100%;
    padding: 8px 14px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    line-height: 1.45;
  }

  .hero h1 {
    font-size: clamp(2.68rem, 11.7vw, 3.36rem);
    max-width: 100%;
  }

  .hero h1 span {
    display: inline-block;
    font-size: 0.78em;
    white-space: nowrap;
  }

  .hero-actions {
    display: grid;
    gap: 14px;
  }

  .button {
    width: min(100%, 348px);
    min-height: 58px;
    padding-inline: 18px;
  }

  .hero-subtitle {
    margin-bottom: 36px;
  }

  .partner-track {
    gap: 34px;
  }

  .partner-track img {
    width: 124px;
    height: 46px;
  }

  .section {
    padding: 76px 0;
  }

  .feature-grid,
  .service-grid,
  .process-grid,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .about-media {
    border-radius: 22px;
  }

  .quote {
    display: none;
  }

  .service-card,
  .process-grid article,
  .feature-card {
    min-height: auto;
    padding: 24px;
  }

  .feature-card {
    gap: 18px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .case-track article {
    width: 292px;
    min-height: 250px;
  }

  .case-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

  .contact-box {
    padding: 34px 18px;
  }

  .modal-panel {
    padding: 28px 18px;
  }

  .modal-header {
    align-items: flex-start;
    padding-right: 42px;
  }

  .modal-metric,
  .modal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
