:root {
  --font-family-mona: "Mona Sans", sans-serif;
  --color-accent: #60a5fa;
  --color-accent-rgb: 96, 165, 250;
  --bg-primary: #09090b;
  --bg-secondary: #18181b;
  --bg-tertiary: #27272a;
  --text-primary: #f4f4f5;
  --text-secondary: #d4d4d8;
  --text-muted: #a1a1aa;
  --text-dark: #71717a;
}
html {
  background-color: var(--bg-primary);
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family-mona);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.font-variation-extralight {
  font-variation-settings: "wght" 300;
}
.font-variation-light {
  font-variation-settings: "wght" 350;
}
.font-variation-normal {
  font-variation-settings: "wght" 500;
}
.font-variation-semibold {
  font-variation-settings: "wght" 600;
}
.display-heading {
  font-variation-settings: "wght" 400, "wdth" 125;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(var(--color-accent-rgb), 0.2);
}
.main-nav-toggle:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(var(--color-accent-rgb), 0.25);
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s;
  text-decoration: none;
  font-weight: 500;
}
.skip-link:focus {
  top: 0;
}
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.main-nav.scrolled {
  background-color: rgba(9, 9, 11, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.main-nav-toggle {
  transition: transform 0.3s ease;
}
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 40;
}
.fullscreen-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.fullscreen-menu-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fullscreen-menu.is-active .fullscreen-menu-item {
  opacity: 1;
  transform: translateY(0);
}
.nav-link.active,
.fullscreen-menu-item a:hover {
  color: var(--color-accent);
}
.marquee-container {
  position: absolute;
  top: 0;
  right: -10%;
  width: 70%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  transform: rotate(30deg);
  transform-origin: center center;
}
.marquee-grid-inner {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 120%;
  height: 140%;
  transform: translateX(-50%);
}
.marquee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  height: 100%;
}
.marquee-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.marquee-col:nth-child(1) {
  animation: pingPongUp 20s ease-in-out infinite alternate;
}
.marquee-col:nth-child(2) {
  animation: pingPongDown 25s ease-in-out infinite alternate;
}
.marquee-col:nth-child(3) {
  animation: pingPongUp 22s ease-in-out infinite alternate;
}
.marquee-col:nth-child(4) {
  animation: pingPongDown 18s ease-in-out infinite alternate;
}
.marquee-image {
  width: 100%;
  height: 200px;
  border-radius: 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  object-fit: cover;
  pointer-events: none;
}
@keyframes pingPongUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-30%);
  }
}

@keyframes pingPongDown {
  0% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(0);
  }
}
.rotating-text-container {
  display: block;
  position: relative;
  text-align: left;
  height: 1.2em;
  overflow: hidden;
}
.rotating-text-container .word {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(1em);
  color: var(--color-accent);
  transition: opacity 0.5s ease-out, filter 0.5s ease-out, transform 0.5s ease-out;
  will-change: transform, filter, opacity;
  white-space: nowrap;
}
.rotating-text-container .word.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.stat-card {
  position: relative;
  padding: 3rem 2rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: #0a0a0c;
  overflow: hidden;
  transition: border-color 0.5s ease;
}
.stat-card.show-border {
  border-color: var(--bg-tertiary);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: top 0.8s ease, left 0.8s ease;
}
.stat-card.show-shine::before {
  top: 100%;
  left: 100%;
}
.stat-number,
.stat-label {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: relative;
  z-index: 1;
}
.stat-number.is-visible,
.stat-label.is-visible {
  opacity: 1;
}
.silver-gradient {
  background: linear-gradient(180deg, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  position: relative;
  overflow: hidden;
}
@keyframes highlight-wipe {
  0% {
    transform: translateY(101%);
  }
  40% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-101%);
  }
}
.silver-gradient::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(var(--color-accent-rgb), 0),
    rgba(var(--color-accent-rgb), 0.5) 50%,
    rgba(var(--color-accent-rgb), 0)
  );
  transform: translateY(101%);
}
.silver-gradient.is-highlighted::after {
  animation: highlight-wipe 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
#services {
  scroll-margin-top: 100px;
}
.service-item {
  background-color: var(--bg-primary);
  border-bottom: 1px solid #27272a;
  transition: all 0.3s ease;
}
.service-item:last-child {
  border-bottom: none;
}
.service-item:hover {
  background-color: #18181b;
}
.service-header {
  cursor: pointer;
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.service-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.service-header:hover::before {
  transform: scaleY(1);
}
.service-arrow {
  flex-shrink: 0;
  margin-left: 1rem;
}
.service-arrow svg {
  width: 32px;
  height: 32px;
}
.service-item.is-active .service-arrow {
  transform: rotate(180deg);
}
.service-item:hover .service-header h2 {
  color: #e4e4e7;
}
.service-item:hover .service-arrow {
  color: #e4e4e7;
}
.service-item.is-active {
  background-color: #1c1c1f;
  border-bottom-color: var(--color-accent);
}
.service-item.is-active .service-header h2 {
  color: #e4e4e7;
}
.service-item.is-active .service-arrow {
  color: #e4e4e7;
}
.service-item.is-active .service-header::before {
  transform: scaleY(1);
}
.service-content {
  max-height: 0;
  opacity: 0;
  background-color: inherit;
}
.service-content.is-open {
  max-height: 800px;
  opacity: 1;
}
.service-item:hover .service-content p,
.service-item:hover .service-content h3,
.service-item:hover .service-content li {
  color: #d4d4d8;
}
.service-item.is-active .service-content p,
.service-item.is-active .service-content h3,
.service-item.is-active .service-content li {
  color: #d4d4d8;
}
.service-item:hover .service-content h3 {
  color: #f4f4f5;
}
.service-item.is-active .service-content h3 {
  color: #f4f4f5;
}
.service-header:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}
@media (max-width: 1024px) {
  .service-header h2 {
    font-size: 3rem !important;
  }
  
  .service-content p {
    font-size: 1rem !important;
  }
  
  .service-content h3 {
    font-size: 1.125rem !important;
  }
  
  .service-content.is-open {
    max-height: 900px;
  }
}
@media (max-width: 768px) {
  .service-header {
    padding: 2rem 1.5rem !important;
  }
  
  .service-header h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }
  
  .service-arrow svg {
    width: 24px !important;
    height: 24px !important;
  }
  
  .service-content {
    font-size: 0.9rem !important;
  }
  
  .service-content .grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .service-content.is-open {
    max-height: 1200px;
  }
}
@media (max-width: 480px) {
  .service-header {
    padding: 1.5rem 1rem !important;
  }
  
  .service-header h2 {
    font-size: 1.75rem !important;
  }
  
  .service-content.is-open {
    max-height: 1400px;
  }
  
  .service-arrow {
    margin-left: 0.5rem !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-item,
  .service-header,
  .service-content,
  .service-header::before,
  .service-arrow {
    transition: none !important;
  }
}
#process {
  width: 100%;
  scroll-behavior: smooth;
}
.process-step {
  background-color: var(--bg-primary);
  text-align: left;
}
.process-step.in-view {
  opacity: 1;
  transform: translateY(0);
}
.process-step .text-6xl,
.process-step .text-8xl {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #6366f1, #3b82f6);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
  font-size: 12rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-align: left !important;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.process-step h3 {
  font-variation-settings: "wght" 400, "wdth" 125 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.4 !important;
  color: var(--text-primary) !important;
  text-align: left !important;
}
.process-step p {
  text-align: left !important;
}
.process-step ul {
  text-align: left !important;
}
.process-step ul li {
  transition: all 0.3s ease;
  text-align: left !important;
}
#hero {
  overflow: hidden;
}
.background-beams {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 0;
  overflow: hidden;
}
.background-beams svg {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
  min-height: 100%;
  min-width: 100%;
}
.beam-base-path {
  stroke: #52525b;
  stroke-width: 0.5;
  stroke-opacity: 0.6;
  fill: none;
}
.beam-path {
  stroke-width: 1;
  stroke-opacity: 0.6;
  fill: none;
  animation: beamAnimation 13s ease-in-out infinite;
}
.beam-path:nth-child(2n) {
  animation-delay: -3s;
  animation-duration: 17s;
}
.beam-path:nth-child(3n) {
  animation-delay: -7s;
  animation-duration: 20s;
}
.beam-path:nth-child(4n) {
  animation-delay: -10s;
  animation-duration: 10s;
}
.beam-path:nth-child(5n) {
  animation-delay: -5s;
  animation-duration: 15s;
}
.beam-path:nth-child(6n) {
  animation-delay: -8s;
  animation-duration: 18s;
}
.beam-path:nth-child(7n) {
  animation-delay: -2s;
  animation-duration: 12s;
}
@keyframes beamAnimation {
  0% {
    stroke-dasharray: 0 1000;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 150 850;
    stroke-dashoffset: -150;
  }
  100% {
    stroke-dasharray: 0 1000;
    stroke-dashoffset: -1000;
  }
}
@media (max-width: 1280px) {
  .process-step .text-6xl,
  .process-step .text-8xl {
    font-size: 10rem !important;
  }
  
  .process-step h3 {
    font-size: 2.25rem !important;
  }
  
  .process-step p {
    font-size: 1.125rem !important;
  }
}
@media (max-width: 1024px) {
  #process .grid {
    grid-template-columns: 1fr !important;
  }
  #process .lg\:sticky {
    position: relative !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .marquee-container {
    right: -30%;
    width: 100%;
    opacity: 0.4;
    transform: rotate(20deg);
    height: 100vh;
    overflow: hidden;
  }
  .marquee-grid-inner {
    width: 150%;
    height: 160%;
    top: -30%;
  }
  .marquee-image {
    height: 150px;
    border-color: var(--bg-tertiary);
  }
  .marquee-grid {
    gap: 1rem;
  }
  .beam-base-path {
    stroke-width: 0.3;
    stroke-opacity: 0.4;
  }
  .beam-path {
    stroke-width: 0.3;
    stroke-opacity: 0.5;
  }
  .process-step ul li span {
    font-size: 1rem !important;
  }
  #process-heading {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
  
  .process-step ul {
    gap: 0.75rem !important;
  }
}
@media (max-width: 480px) {
  .process-step h3 {
    font-size: 1.5rem !important;
  }
  #process-heading {
    font-size: 2rem !important;
  }
  .rotating-text-container {
    height: 1.5em;
    word-wrap: break-word;
  }
  .display-heading {
  font-variation-settings: "wght" 500, "wdth" 125;
  line-height: 1.4;
}
}
@media (prefers-reduced-motion: reduce) {
  .marquee-col,
  .rotating-text-container .word,
  .silver-gradient::after,
  .fullscreen-menu,
  .fullscreen-menu-item,
  .stat-card,
  .process-step,
  .process-step .text-6xl,
  .process-step .text-8xl,
  .process-step ul li,
  .process-step ul li .w-3,
  .beam-path {
    animation: none !important;
    transition: none !important;
  }
  .process-step {
    opacity: 1 !important;
    transform: none !important;
  }
  .rotating-text-container .word:not(:first-child) {
    display: none;
  }
}
@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
}
html {
  scroll-behavior: smooth;
}
@media print {
  .main-nav,
  .fullscreen-menu,
  .marquee-container,
  .background-beams {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
  }
    html {
    scroll-behavior: auto !important;
  }
  
}
@media (prefers-contrast: high) {
  :root {
    --color-accent: #0066ff;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --bg-primary: #000000;
  }
}
@media (max-width: 896px) and (orientation: landscape) {
  .fullscreen-menu {
    align-items: flex-end !important;
    padding-bottom: 2rem !important;
  }
  
  .fullscreen-menu ul {
    space-y: 0.5rem !important;
  }
  
  .fullscreen-menu-item a {
    font-size: 1.5rem !important;
    line-height: 1.1 !important;
  }
  
  .fullscreen-menu-item a.display-heading {
    font-size: 1.25rem !important;
  }
  #hero-heading {
    font-size: 2.75rem !important;
  }
  .rotating-text-container {
    margin-top: 0 !important;
  }
  #services {
    padding: 0 !important;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .fullscreen-menu ul {
    space-y: 0.25rem !important;
  }
  
  .fullscreen-menu-item a {
    font-size: 1.125rem !important;
  }
}