:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --green-400: #4ade80;
  --sky-400: #38bdf8;
  --violet-400: #a78bfa;
  --lime-400: #a3e635;
  --bg: #030301;
  --bg-soft: #0a0a07;
  --fg: var(--stone-50);
  --accent: var(--green-400);
  --border: rgba(74, 222, 128, 0.08);
  --border-strong: rgba(74, 222, 128, 0.22);
  --glow: rgba(74, 222, 128, 0.3);
  --header-height: 88px;
  --shell: 1220px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #030301;
  color-scheme: dark;
  overscroll-behavior-y: none;
}
body {
  margin: 0;
  color: var(--fg);
  background:
    radial-gradient(circle at 15% 20%, rgba(74, 222, 128, 0.05), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(74, 222, 128, 0.04), transparent 20%),
    linear-gradient(180deg, #040402 0%, #030301 100%);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--accent); color: var(--bg); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.shell { width: min(calc(100% - 3rem), var(--shell)); margin: 0 auto; }

#matrix-rain,
.scanlines,
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
#matrix-rain { z-index: 0; opacity: 0.18; }
.scanlines {
  z-index: 18;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.022) 2px, rgba(0, 0, 0, 0.022) 4px);
}
.noise {
  z-index: 1;
  opacity: 0.08;
  background-image:
    radial-gradient(rgba(255,255,255,0.3) 0.5px, transparent 0.5px),
    radial-gradient(rgba(255,255,255,0.18) 0.5px, transparent 0.5px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
}

.ripple-trail-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 30;
}
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 3, 1, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo,
.project-name,
.stat-num,
.service-num,
.footer-time,
.signal-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
}
.logo {
  font-size: 1.3rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-shadow: 0 0 18px var(--glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--stone-400);
  position: relative;
  transition: color 180ms ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 180ms ease;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--fg);
}

main, .footer { position: relative; z-index: 2; }
.section { border-top: 1px solid var(--border); }

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4.5rem;
  padding-bottom: 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.6fr);
  gap: 3rem;
  align-items: end;
}
.hero-copy { max-width: 760px; }
.hero-label,
.section-label,
.intro-kicker,
.about-rail,
.services-side,
.project-story-side,
.panel-topline {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}
.hero-label span,
.section-label span {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.35;
}

.eyebrow-stack {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.8rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(74, 222, 128, 0.04);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
}
.status-copy {
  color: var(--stone-500);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(3.1rem, 7vw, 7rem);
  line-height: 0.98;
  color: var(--accent);
  max-width: 10ch;
  text-shadow: 0 0 30px rgba(74, 222, 128, 0.13);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero h1,
.matrix-title,
.cta-matrix,
.intro-statement,
.about-intro,
.service-name {
  font-family: 'Oxanium', sans-serif;
}

.hero-sub,
.testimonial-quote,
.cta-sub {
  font-family: 'DM Sans', sans-serif;
}
.hero-sub {
  margin-top: 1.5rem;
  max-width: 40rem;
  color: var(--stone-300);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.6;
}
.hero-sub em,
.about-intro em { color: var(--accent); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(74, 222, 128, 0.16);
}
.button-secondary {
  border: 1px solid rgba(74, 222, 128, 0.26);
  color: var(--accent);
  background: rgba(74, 222, 128, 0.03);
}

.hero-panel {
  position: relative;
  padding: 1.25rem;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(74,222,128,0.03));
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-panel::before,
.cta-frame::before,
.project-card::before,
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(74, 222, 128, 0.05);
  pointer-events: none;
}
.signal-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  margin-top: 1.2rem;
}
.signal-number {
  font-size: 3.5rem;
  line-height: 0.9;
  color: rgba(74, 222, 128, 0.2);
}
.signal-block p {
  margin: 0;
  color: var(--stone-300);
  line-height: 1.8;
  background: transparent !important;
  box-shadow: none !important;
}
.signal-block,
.signal-metrics div {
  background: transparent !important;
  box-shadow: none !important;
}
.signal-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 2rem;
}
.signal-metrics div {
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
}
.signal-metrics span {
  display: block;
  color: var(--accent);
  font-size: 1.45rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.signal-metrics small {
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-marquee {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.9rem 0;
}
.hero-track,
.stack-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}
.hero-track span,
.stack-item {
  white-space: nowrap;
  color: rgba(74, 222, 128, 0.24);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}
.hero-track span:nth-child(even),
.stack-sep { color: rgba(74, 222, 128, 0.12); }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2.25rem;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}
.scroll-line {
  position: relative;
  width: 1px;
  height: 50px;
  background: var(--stone-800);
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { from { transform: translateY(-100%); } to { transform: translateY(200%); } }
.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.74rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--glow);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }


.intro-band,
.projects,
.services,
.testimonials,
.stack,
.cta {
  position: relative;
}
.intro-band::before,
.projects::before,
.services::before,
.testimonials::before,
.stack::before,
.cta::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 140px;
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.05), transparent 72%);
  opacity: 0.7;
  pointer-events: none;
}
.hero,
.intro-band,
.about,
.projects,
.services,
.testimonials,
.stack,
.cta {
  will-change: transform;
}
.signal-block,
.signal-metrics,
.cta-frame,
.testimonial-card,
.hero-panel { backdrop-filter: blur(8px); }
.intro-band { background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent); }
.intro-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.25fr) minmax(240px, 0.7fr);
  gap: 2rem;
  align-items: start;
  padding: 3rem 0;
}
.intro-statement {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--stone-200);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.intro-meta p {
  margin: 0;
  color: var(--stone-500);
  line-height: 1.8;
}

.about {
  display: grid;
  grid-template-columns: 120px minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  padding: 7rem 0;
}
.about-rail,
.services-side,
.project-story-side {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  justify-self: center;
}
.about-intro {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  line-height: 1.38;
  color: var(--stone-200);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.about-details { display: flex; flex-direction: column; gap: 2rem; }
.about-text {
  margin: 0;
  color: var(--stone-400);
  line-height: 1.9;
  font-size: 0.98rem;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.stat-grid > div {
  padding: 1rem 0.3rem 0;
  border-top: 1px solid rgba(74, 222, 128, 0.04);
}
.stat-num {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--accent);
  text-shadow: 0 0 18px rgba(74, 222, 128, 0.16);
}
.stat-label {
  margin-top: 0.35rem;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.projects,
.services,
.testimonials,
.stack,
.cta { padding: 7rem 0; }
.projects-header,
.testimonials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.matrix-title {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  text-shadow: 0 0 22px rgba(74, 222, 128, 0.1);
}
.view-all {
  color: var(--stone-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  border-bottom: 1px solid var(--stone-700);
  padding-bottom: 0.25rem;
}
.project-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px;
  gap: 2rem;
  align-items: start;
  margin: 2rem 0 3rem;
}
.project-story-copy,
.testimonials-note {
  max-width: 42rem;
  color: var(--stone-400);
  line-height: 1.85;
  font-size: 1rem;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}
.project-card {
  position: relative;
  will-change: transform;
  grid-column: span 6;
  background: rgba(10, 10, 7, 0.7);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
  transform-style: preserve-3d;
}
.project-card:hover {
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 50px rgba(74, 222, 128, 0.08);
  background: rgba(12, 12, 8, 0.82);
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(74, 222, 128, 0.16), transparent 30%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.project-card:hover::after { opacity: 1; }
.project-image,
.project-info { transform: translateZ(0); }
.project-card:hover .project-image { transform: translateZ(24px) scale(1.015); transition: transform 260ms ease; }
.project-card:hover .project-info { transform: translateZ(14px); transition: transform 260ms ease; }
.project-card:hover .project-gridlines { opacity: 0.32; }
.project-card:hover .project-overlay { letter-spacing: 0.08em; }
.wide-card { grid-column: span 7; }
.pull-up { grid-column: 9 / -1; margin-top: -4rem; }
.project-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.theme-one { background: linear-gradient(135deg, #052e16 0%, #030301 42%, #14532d 100%); }
.theme-two { background: linear-gradient(135deg, #022c22 0%, #030301 50%, #064e3b 100%); }
.theme-three { background: linear-gradient(135deg, #1a2e05 0%, #030301 50%, #365314 100%); }
.theme-four { background: linear-gradient(135deg, #042f2e 0%, #030301 50%, #134e4a 100%); }

.project-image.image-oppfy {
  background-image: linear-gradient(180deg, rgba(3,3,1,0.08), rgba(3,3,1,0.32)), url('oppfy.webp');
  background-size: cover;
  background-position: center;
}
.project-image.image-engine {
  background-image: linear-gradient(180deg, rgba(3,3,1,0.12), rgba(3,3,1,0.4)), url('enginedynamics.png');
  background-size: cover;
  background-position: center;
}
.project-image.image-oppfy::before,
.project-image.image-engine::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 30%, rgba(3,3,1,0.15));
}
.project-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 25%);
}
.project-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.2;
}
.project-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(74, 222, 128, 0.07);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(2rem, 5vw, 3rem);
}
.project-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(74, 222, 128, 0.38);
  font-size: 1rem;
}
.project-info { padding: 1.35rem; }
.project-meta {
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  margin-bottom: 0.7rem;
}
.project-name {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 1.35rem;
}
.project-desc {
  margin: 0 0 1rem;
  color: var(--stone-400);
  line-height: 1.75;
}
.project-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag:nth-child(1) { border: 1px solid rgba(56,189,248,0.25); color: var(--sky-400); }
.tag:nth-child(2) { border: 1px solid rgba(163,230,53,0.25); color: var(--lime-400); }
.tag:nth-child(3) { border: 1px solid rgba(167,139,250,0.25); color: var(--violet-400); }

.services-layout {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 2.5rem;
}
.services-list {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}
.service-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.service-num {
  font-size: 1.1rem;
  color: var(--accent);
}
.service-name {
  margin: 0;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  letter-spacing: -0.03em;
}
.service-desc {
  margin: 0;
  color: var(--stone-500);
  line-height: 1.8;
}


.stack-layout { display: flex; flex-direction: column; gap: 2rem; }
.stack-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 0;
}
.stack-item { font-size: clamp(1.4rem, 2.3vw, 2.1rem); }
.stack-sep { display: inline-flex; align-items: center; font-size: 0.9rem; }

.cta-inner { text-align: center; }
.cta-frame {
  position: relative;
  padding: 4rem 2rem;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(74,222,128,0.025));
}
.cta-matrix {
  margin: 1rem 0 0;
  font-size: clamp(2.4rem, 7vw, 5.3rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.045em;
}
.cta-sub {
  max-width: 41rem;
  margin: 1.2rem auto 0;
  color: var(--stone-400);
  line-height: 1.8;
  font-size: 1.15rem;
}
.contact-card {
  margin-top: 2rem;
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.center { justify-content: center; }

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--stone-600);
  font-size: 0.78rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.footer-time { color: rgba(74, 222, 128, 0.45); font-size: 0.95rem; }

.reveal,
.reveal-line {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal-line { transform: translateY(16px); }
.reveal.is-visible,
.reveal-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.hero,
.intro-band,
.about,
.projects,
.services,
.testimonials,
.stack,
.cta {
  will-change: transform;
  backface-visibility: hidden;
}

@supports (content-visibility: auto) {
  .intro-band,
  .about,
  .projects,
  .services,
  .testimonials,
  .stack,
  .cta,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
  }
}

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

@media (max-width: 980px) {
  .shell { width: min(calc(100% - 2rem), var(--shell)); }
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: fixed;
    inset: var(--header-height) 1rem auto 1rem;
    background: rgba(12, 10, 9, 0.96);
    border: 1px solid var(--border-strong);
    padding: 1rem;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    transform: scaleY(0.94);
    transform-origin: top;
    pointer-events: none;
  }
  .nav-links.open { opacity: 1; transform: scaleY(1); pointer-events: auto; }

  .hero-grid,
  .intro-layout,
  .about,
  .services-layout,
  .projects-header,
  .testimonials-head,
  .footer-inner,
  .service-item,
  .project-story {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .project-grid { grid-template-columns: 1fr; }
  .project-card,
  .wide-card,
  .pull-up { grid-column: auto; margin-top: 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .about-rail,
  .services-side,
  .project-story-side {
    writing-mode: horizontal-tb;
    transform: none;
    justify-self: start;
  }
}


body.bullet-time .hero-track,
body.bullet-time .stack-track {
  animation-duration: 104s;
}
body.bullet-time .scroll-line::after {
  animation-duration: 8s;
}
body.bullet-time .dot {
  animation-duration: 7.2s;
}


body.bullet-time,
body.bullet-time * {
  user-select: none !important;
  -webkit-user-select: none !important;
}
