/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #080808;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden; }

/* Containers */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%; }
  .container-wide {
    max-width: 95rem;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%; }

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 2.5rem 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent; }
  nav.scrolled {
    padding: 1.25rem 0;
    background-color: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  nav .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  nav .nav-links {
    display: none;
    gap: 3rem; }
    @media (min-width: 768px) {
      nav .nav-links {
        display: flex; } }
    nav .nav-links a {
      text-decoration: none;
      color: inherit;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.4em;
      font-weight: 700; }

/* Logo Styling & Glitch Mechanics */
.logo-container {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  align-items: center; }
  .logo-container .logo-font {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    text-transform: lowercase;
    line-height: 1; }
  .logo-container .logo-thick {
    font-weight: 400; }
  .logo-container .logo-thin {
    font-weight: 100;
    color: #d4d4d8;
    font-style: italic;
    transition: color 0.3s ease; }
  .logo-container .logo-subtext, .logo-container .footer-logo-subtext {
    font-size: 8px;
    font-weight: 700;
    color: #71717a;
    text-transform: uppercase;
    margin-top: 4px;
    transition: all 0.3s ease;
    -webkit-text-stroke: 0.5px rgba(113, 113, 122, 0.5); }
  .logo-container .logo-subtext {
    letter-spacing: 1.14em;
    padding-left: 1.14em; }
  .logo-container .footer-logo-subtext {
    margin-top: 5px;
    letter-spacing: 6px;
    padding-left: 6px;
    width: max-content; }
  .logo-container:hover .logo-font {
    animation: glitch-primary 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: #ffffff;
    text-shadow: 0.05em 0 0 rgba(255, 0, 80, 0.75), -0.025em -0.05em 0 rgba(0, 255, 255, 0.75), 0.025em 0.05em 0 rgba(0, 255, 0, 0.75); }
  .logo-container:hover .logo-subtext, .logo-container:hover .footer-logo-subtext {
    animation: glitch-secondary 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both infinite;
    color: #ffffff;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.5);
    text-shadow: 0.05em 0 0 rgba(255, 0, 80, 0.75), -0.025em -0.05em 0 rgba(0, 255, 255, 0.75), 0.025em 0.05em 0 rgba(0, 255, 0, 0.75); }
  .logo-container:hover .logo-thin {
    color: #ffffff; }

/* Independent Animation Keyframes */
@keyframes glitch-primary {
  0% {
    transform: translate(0); }
  20% {
    transform: translate(-2px, 1px); }
  40% {
    transform: translate(-2px, -1px); }
  60% {
    transform: translate(2px, 1px); }
  80% {
    transform: translate(2px, -1px); }
  100% {
    transform: translate(0); } }
@keyframes glitch-secondary {
  0% {
    transform: translate(0); }
  20% {
    transform: translate(1px, -1px); }
  40% {
    transform: translate(-1px, 2px); }
  60% {
    transform: translate(-2px, -1px); }
  80% {
    transform: translate(2px, 1px); }
  100% {
    transform: translate(0); } }
/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden; }
  .hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background-image: linear-gradient(rgba(8, 8, 8, 0.7), rgba(8, 8, 8, 0.7)), url("/media/pr0totype-media-lab-header-1280.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1; }
  .hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    text-transform: uppercase; }
    .hero h1 span {
      color: #52525b; }
  .hero-description {
    color: #71717a;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 28rem;
    margin-top: 2rem; }

/* Main Work Section */
main {
  background-color: #e4e4e7;
  color: #18181b;
  padding: 8rem 0; }
  main .work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem; }
    main .work-header h2 {
      font-size: 2.25rem;
      font-weight: 900;
      letter-spacing: -0.05em;
      color: #09090b; }

/* Work Grid & Cards */
.work-grid {
  display: grid;
  gap: 1rem; }
  @media (min-width: 768px) {
    .work-grid {
      grid-template-columns: 1fr 1fr; } }

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #000;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block; }
  .video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
  .video-card:nth-child(odd) img {
    filter: grayscale(1) sepia(1) hue-rotate(160deg) saturate(2) brightness(0.6) contrast(1.1); }
  .video-card:nth-child(even) img {
    filter: grayscale(1) sepia(1) hue-rotate(-50deg) saturate(2) brightness(0.6) contrast(1.1); }
  .video-card:hover img {
    filter: grayscale(0) sepia(0) hue-rotate(0deg) saturate(1) brightness(1) contrast(1);
    transform: scale(1.05); }
  .video-card:hover .video-overlay {
    opacity: 1; }
  .video-card .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: 0.4s;
    color: #ffffff; }
    .video-card .video-overlay h3 {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      margin-top: 0.5rem; }
    .video-card .video-overlay p {
      font-size: 10px;
      letter-spacing: 0.3em;
      font-weight: 700;
      opacity: 0.8; }

/* Contact Section */
.cta-section {
  background-color: #0f0f0f;
  padding: 10rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05); }
  .cta-section h2 {
    font-size: clamp(2.5rem, 8vw, 3.75rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #e4e4e7;
    margin-bottom: 2rem; }

.footer-email {
  color: #a1a1aa;
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  text-decoration: none;
  position: relative; }
  .footer-email::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: 0.3s; }
  .footer-email:hover::after {
    width: 100%; }

/* End Footer Email Section */
/* QC Page Specific Styles - Add to pr0to1.css */
.minimal-header {
  padding: 14rem 0 8rem;
  background-color: #080808;
  position: relative; }

.index-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #52525b;
  display: block;
  margin-bottom: 1rem; }

.minimal-header h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
  color: #ffffff; }

.hero-description {
  color: #71717a;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 32rem;
  margin-top: 2rem; }

.labs-list-section {
  background-color: #e4e4e7;
  color: #18181b;
  padding: 8rem 0; }

.lab-item {
  display: grid;
  grid-template-columns: 1fr;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

@media (min-width: 768px) {
  .lab-item {
    grid-template-columns: 280px 1fr; } }
.lab-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #52525b;
  margin-bottom: 1rem; }

.lab-content h3 {
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em; }

.lab-content p {
  max-width: 38rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #3f3f46; }

.qc-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem; }

.qc-checklist li {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #71717a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center; }

.lab-link {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #18181b;
  border-bottom: 2px solid #18181b;
  padding-bottom: 4px;
  display: inline-block;
  transition: all 0.3s ease; }

.lab-link:hover {
  color: #ff0050;
  border-color: #ff0050; }

/* End QC page styles */
/* Footer Bottom */
footer {
  padding: 4rem 0 6rem;
  text-align: center; }
  footer .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    color: #52525b;
    letter-spacing: 0.4em;
    text-transform: uppercase; }
    footer .footer-bottom .logo-font {
      font-size: 1.15rem; }
  footer .footer-social {
    display: none; }
  footer .copyright-line {
    margin-top: 5rem;
    font-size: 10px;
    color: #71717a;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.15em; }
