@import url("./app-DaT2rS1o.css");

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-sans-400-normal-DRC__1Mx.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/instrument-sans-500-normal-Dk9ku72i.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/instrument-sans-600-normal-B7fBEWYG.woff2") format("woff2");
}

.mobile-menu {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(9 8 6 / 0.96);
  backdrop-filter: blur(24px);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 260ms ease, opacity 200ms ease, transform 200ms ease;
}

.mobile-menu.is-open {
  max-height: 32rem;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: grid;
  gap: 0.5rem;
  max-width: 80rem;
  margin-inline: auto;
  padding: 1rem;
}

.mobile-menu-link {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1rem;
  color: #d6d3d1;
  display: flex;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.mobile-menu-link:hover {
  background: rgb(254 230 133 / 0.1);
  border-color: rgb(254 230 133 / 0.4);
  color: #fff;
}

.mobile-menu-cta {
  align-items: center;
  background: #f4e7ca;
  border-radius: 999px;
  color: #0c0a09;
  display: flex;
  font-weight: 700;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.875rem 1rem;
}

.menu-toggle {
  align-items: center;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.hamburger-line {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.error-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.team-avatar {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-copy-reveal,
.hero-dashboard-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.hero-animated-section.is-visible .hero-copy-reveal {
  animation: hero-rise 1.25s cubic-bezier(0.2, 0.85, 0.25, 1) forwards;
}

.hero-animated-section.is-visible .hero-dashboard-reveal {
  animation: hero-rise 1.25s cubic-bezier(0.2, 0.85, 0.25, 1) 260ms forwards;
}

.hero-dashboard-reveal::before {
  background: linear-gradient(120deg, transparent 20%, rgb(254 230 133 / 0.16), transparent 62%);
  content: "";
  inset: -40%;
  opacity: 0;
  position: absolute;
  transform: translateX(-38%) rotate(12deg);
}

.hero-animated-section.is-visible .hero-dashboard-reveal::before {
  animation: dashboard-shine 1.85s ease 820ms forwards;
}

.hero-command-card {
  position: relative;
}

.hero-command-card::after {
  border: 1px solid rgb(254 230 133 / 0.14);
  border-radius: 1.5rem;
  box-shadow: inset 0 0 36px rgb(254 230 133 / 0.06), 0 0 48px rgb(16 185 129 / 0.08);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.metric-card {
  position: relative;
}

.hero-animated-section.is-visible .metric-card {
  animation: metric-pop 850ms cubic-bezier(0.2, 0.9, 0.24, 1.08) both;
}

.hero-animated-section.is-visible .metric-card:nth-child(1) {
  animation-delay: 560ms;
}

.hero-animated-section.is-visible .metric-card:nth-child(2) {
  animation-delay: 720ms;
}

.hero-animated-section.is-visible .metric-card:nth-child(3) {
  animation-delay: 880ms;
}

.hero-animated-section.is-visible .metric-card:nth-child(4) {
  animation-delay: 1040ms;
}

.backlog-progress {
  max-width: 0;
  overflow: hidden;
}

.hero-animated-section.is-visible .backlog-progress {
  animation: progress-fill 1.85s cubic-bezier(0.2, 0.85, 0.25, 1) 1s forwards;
}

[data-counter] {
  display: inline-block;
  min-width: 2ch;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dashboard-shine {
  0% {
    opacity: 0;
    transform: translateX(-38%) rotate(12deg);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(48%) rotate(12deg);
  }
}

@keyframes metric-pop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes progress-fill {
  from {
    max-width: 0;
  }

  to {
    max-width: 94%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy-reveal,
  .hero-dashboard-reveal,
  .metric-card,
  .backlog-progress {
    animation: none !important;
    max-width: none;
    opacity: 1;
    transform: none;
  }

  .hero-dashboard-reveal::before {
    display: none;
  }
}

@media (min-width: 1024px) {
  .menu-toggle,
  .mobile-menu {
    display: none;
  }
}
