* {
  box-sizing: border-box;
}

:root {
  --bg: #020807;
  --text: #f4f4f0;
  --muted: rgba(244, 244, 240, 0.58);
  --line: rgba(255, 255, 255, 0.13);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(0, 170, 255, 0.06), transparent 32%),
    radial-gradient(circle at 20% 50%, rgba(255, 180, 80, 0.04), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.glass {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.04)
  );
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 24px 80px rgba(0,0,0,0.35);
}

.header {
  position: fixed;
  z-index: 20;
  top: 24px;
  left: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 32px;
  font-weight: 200;
  letter-spacing: -0.12em;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 54px;
  padding: 20px 54px;
  border-radius: 999px;
}

.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav .active {
  position: relative;
}

.nav .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 38px;
  height: 2px;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 0 18px white;
}

.work-hero {
  padding: 130px 60px 34px;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
    margin: 12px 0 0;
      font-size: clamp(52px, 7vw, 96px);
      line-height: 0.9;
      font-weight: 200;
      letter-spacing: 0.08em;
      text-transform: uppercase;
}

.work-grid-section {
  padding: 0 60px 90px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.work-card {
  --thumb-glow: rgba(255,255,255,0.06);

  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2.39 / 1;
  min-height: auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.045);
  box-shadow:
    inset 0 0 0 1px var(--thumb-glow),
    inset 0 1px 0 rgba(255,255,255,0.055),
    0 18px 50px rgba(0,0,0,0.28);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(255,255,255,0.035),
    0 24px 70px rgba(0,0,0,0.42);
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition:
    transform 0.5s ease;
}

.work-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.08) 48%,
      rgba(0,0,0,0.38) 100%
    );
}

.work-card-info {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
}

.work-card-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
}

.work-card-info h2 {
  margin: 8px 0 4px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-card-info p {
  margin: 0;
  color: rgba(255,255,255,0.68);
}

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .header {
    left: 24px;
    right: 24px;
  }

  .nav {
    display: none;
  }

  .work-hero {
    padding: 120px 24px 42px;
  }

  h1 {
    font-size: 54px;
  }

  .work-grid-section {
    padding: 36px 24px 70px;
  }

  .work-card {
    aspect-ratio: 2.39 / 1;
    border-radius: 18px;
  }
}

/* Footer */

.footer {
  display: flex;
  justify-content: space-between;
  padding: 34px 60px;
  color: var(--muted);
  font-size: 13px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
  }
}

/* Watch button alignment fix */

.watch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 26px 12px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 0 26px rgba(255,255,255,0.10),
    0 14px 42px rgba(0,0,0,0.32);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.watch-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.28);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.26),
    0 0 34px rgba(255,255,255,0.14),
    0 18px 52px rgba(0,0,0,0.42);
}

.play {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  color: transparent;
  font-size: 0;
  line-height: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid rgba(255,255,255,0.92);
}

@media (max-width: 900px) {
  .watch-button {
    padding: 11px 22px 11px 16px;
    gap: 13px;
    font-size: 11px;
  }

  .play {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .play::before {
    border-top-width: 5.5px;
    border-bottom-width: 5.5px;
    border-left-width: 8.5px;
  }
}
/* END Watch button alignment fix */
