/* ===================== FONT IMPORT ===================== */
@font-face {
  font-family: 'Switzer';
  src: url('../Fonts/WEB/fonts/Switzer-Variable.woff2') format('woff2'),
    url('../Fonts/WEB/fonts/Switzer-Variable.woff') format('woff'),
    url('../Fonts/WEB/fonts/Switzer-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Switzer';
  src: url('../Fonts/WEB/fonts/Switzer-VariableItalic.woff2') format('woff2'),
    url('../Fonts/WEB/fonts/Switzer-VariableItalic.woff') format('woff'),
    url('../Fonts/WEB/fonts/Switzer-VariableItalic.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #201B13;
  --white: #fff;
  --bg: #FEFDF9;
  --gray-100: #f5f5f3;
  --gray-200: #E2E8F0;
  --gray-400: #999;
  --gray-600: #64645F;
  --lime: #9AFF00;
  --font: 'Switzer', sans-serif;
  /* --gray-200: rgba(0, 0, 0, 0.04); */
}

::selection {
  background-color: #9AFF00;
  color: var(--black);
}

html {
  scroll-behavior: smooth;
  cursor: url('../images/cursors/cursor-default.svg') 6 4, auto;
  scrollbar-gutter: stable;
  /* prevents layout shift when scrollbar appears/disappears */
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--bg);
  /* overflow-x: hidden; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  cursor: url('../images/cursors/cursor-default.svg') 6 4, auto;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: url('../images/cursors/cursor-pointer.svg') 12 4, pointer;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(0, 0, 0, 0.03);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo-lottie {
  width: 152px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  padding: 6px 14px;
  transition: color .25s, background-size .25s ease-in-out;
  background-image: linear-gradient(#9AFF00, #9AFF00);
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

.nav-links a:hover {
  color: var(--black);
  background-size: 100% 100%;
}

.nav-links a.active {
  color: var(--black);
  font-weight: 700;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-icons a {
  display: flex;
  align-items: center;
  color: var(--black);
  transition: opacity .25s;
}

.nav-icons a:first-child {
  position: relative;
  padding-right: 14px;
}

.nav-icons a:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: var(--gray-200);
}

.nav-icons a:hover {
  opacity: .6;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 660px;
  padding: 148px 0 172px;
  overflow: hidden;
  margin-top: 59px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--gray-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
  background-size: 48px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-inner {
  position: relative;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
}

.hero-content:before {
  content: "";
  background: var(--bg);
  filter: blur(3.2vmax);
  border-radius: 50%;
  width: 60rem;
  height: 30rem;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.hero-sub {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-h1 {
  font-size: 80px;
  font-weight: 900;
  line-height: 108%;
  margin-bottom: 40px;
}

.hero-desc {
  font-size: 24px;
  color: var(--black);
  line-height: 140%;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc strong {
  color: var(--black);
  font-weight: 700;
}

/* Float icons */
.float-icon {
  position: absolute;
  z-index: 1;
  transition: transform 0.3s ease;
}

.float-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .12));
}

/* miro - top left */
.fi-1 {
  width: 155px;
  height: 144px;
  top: -90px;
  left: 16%;
  /* animation: bob1 6s ease-in-out infinite; */
  z-index: 11;
}

/* blender - middle left */
.fi-2 {
  width: 220px;
  height: 128px;
  top: 170px;
  left: 2%;
  /* animation: bob2 7s ease-in-out infinite; */
  z-index: 11;
}

/* sketch - bottom left */
.fi-3 {
  width: 208px;
  height: 190px;
  bottom: -49px;
  left: 12%;
  /* animation: bob1 5.5s ease-in-out infinite; */
  z-index: 11;
}

/* adobe - top right */
.fi-4 {
  width: 206px;
  height: 195px;
  top: 10px;
  right: 3%;
  /* animation: bob2 6.5s ease-in-out infinite; */
  z-index: 11;
}

/* figma - bottom right */
.fi-5 {
  width: 280px;
  height: 274px;
  bottom: -60px;
  right: 40PX;
  /* animation: bob1 7s ease-in-out infinite; */
  z-index: 11;
}

/* Buttons */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 20px 40px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: inset 0px 2px 2px 0px #d5f99d, inset 0px -2px 2px 0px #68a30d;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  top: 0;
}

.btn-dark:hover {
  color: var(--black);
  cursor: url('../images/cursors/cursor-pointer.svg') 12 4, pointer;
}

.btn-dark:active {
  transform: translateY(4px);
  box-shadow: inset 0px 2px 2px 0px #d5f99d, inset 0px -2px 2px 0px #68a30d;
}

.btn-dark svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-dark:hover svg {
  transform: translateX(6px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 20px 40px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: inset 0px 2px 2px 0px #d5f99d, inset 0px -2px 2px 0px #68a30d;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  top: 0;
}

.btn-outline:hover {
  color: var(--black);
   cursor: url('../images/cursors/cursor-pointer.svg') 12 4, pointer;
}

.btn-outline:active {
  transform: translateY(4px);
  box-shadow: inset 0px 2px 2px 0px #d5f99d, inset 0px -2px 2px 0px #68a30d;
}

.btn-outline svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-outline:hover svg {
  transform: translateX(6px);
}

/* ===================== COMPANIES ===================== */
.companies {
  padding: 0 0 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--bg);
  position: relative;
}

.companies-label {
  text-align: center;
  font-size: 16px;
  color: var(--black);
  background: var(--bg);
  width: 230px;
  margin: 0 auto 20px;
  position: absolute;
  z-index: 99;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
}

.logos-slider {
  overflow: hidden;
  padding: 40px 0 10px;
  position: relative;
  width: 100%;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
  display: flex;
  width: calc(250px * 16);
  animation: scroll 40s linear infinite;
  gap: 16px;
}

.logo-item {
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-item img {
  max-width: 100%;
  width: auto;
  height: auto;
  /* filter: grayscale(1);
  opacity: 0.5; */
  transition: opacity 0.3s ease;
}

.logo-item:hover img {
  opacity: 0.8;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-240px * 8));
  }
}

/* ===================== WHAT I DO ===================== */
.what-i-do {
  padding: 80px 0;
}

.heading-center {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin: 40px 0px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.col-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.col-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===================== LATEST WORK ===================== */
.latest-work {
  padding: 0;
}

.latest-work .container {
  display: flex;
  flex-direction: column;
}

.cs {
  display: flex;
  align-items: center;
  position: sticky;
  top: var(--sticky-top, 80px);
  background: var(--bg);
  overflow: hidden;
  background-image:
    linear-gradient(var(--gray-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cs:last-child {
  border-bottom: 1px solid var(--gray-200);
}

.cs-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px;
  background: var(--bg);
  width: 480px;
  flex-shrink: 0;
  height: 572px;
}

.cs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  transition: all .3s;
  padding-bottom: 2px;
}

.cs-link:hover {
  gap: 12px;
}

.cs-link svg {
  width: 16px;
  height: 16px;
}

.cs-meta {
  margin-top: 0;
}

.cs-link {
  margin-bottom: 260px;
  text-decoration: none;
  font-weight: 800;
}

.cs-link:hover {
  gap: 12px;
  color: var(--black);
}

/* Cleaned up duplicate */

.cs-tags {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 24px;
  font-weight: 500;
}

/* Cleaned up duplicate */

.cs-spacer {
  border-left: 1px solid var(--gray-200);
  background: var(--bg);
  width: 48px;
  flex-shrink: 0;
  align-self: stretch;
}

/* Specific backgrounds for projects to match screenshot canvas */


.cs-img {
  position: relative;
  overflow: hidden;
  margin: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.cs-img-fill {
  height: 478px;
}


.cs-overlay {
  position: absolute;
  top: 72px;
  left: 72px;
  z-index: 5;
  color: var(--white);
  opacity: 0.6;
}

.cs-overlay p {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.cs-platforms {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cs-overlay--right {
  left: auto;
  right: 72px;
  text-align: right;
}

.cs-overlay--right .cs-platforms {
  justify-content: flex-end;
}

.cs-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.cs-desc {
  font-size: 16px;
  color: var(--black);
  line-height: 140%;
  max-width: 280px;
  font-weight: 500;
}



/* ===================== ABOUT PAGE ===================== */
.abt {
  position: relative;
  padding-top: 80px;
  padding-bottom: 40px;
}

.abt-hero-grid:before {
  content: "";
  margin: 0 auto;
  background-image: linear-gradient(to right, rgb(226, 232, 240) 1px, transparent 1px), linear-gradient(to bottom, rgb(226, 232, 240) 1px, transparent 1px);
  background-size: 48px 48px;
  padding: 120px 0 60px;
  width: 1440px;
  height: 535px;
  position: absolute;
  left: -270px;
  top: -21px;
  height: 600px;
}

.abt .container {
  padding: 0;
}

.abt-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.abt-photo {
  width: 100%;
  display: block;
  margin-bottom: 48px;
  padding-top: 28px;
}

.abt-content {
  max-width: 560px;
  margin: 0 auto;
}

.abt-bio {
  margin-bottom: 50px;
}

.abt-bio p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 18px;
}

.abt-bio p:last-child {
  margin-bottom: 0;
}

.abt-section {
  margin-bottom: 44px;
}

.abt-section-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.abt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}

.abt-row:hover {
  opacity: .7;
}

.abt-row:first-of-type {
  border-top: 1px solid var(--gray-200);
}

.abt-row-logo {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.abt-row-info {
  flex: 1;
  min-width: 0;
}

.abt-row-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.abt-row-meta {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

.abt-row-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.abt-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.abt-tag {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  white-space: nowrap;
}

.abt .green-banner {
  margin: 40px 0;
}

/* ===================== PAGE LINES ===================== */
/*
  FIX: Use 100% instead of 100vw for positioning.
  100vw includes scrollbar width, causing misalignment on systems
  where a scrollbar is visible. 100% excludes the scrollbar.
*/
.page-lines::before,
.page-lines::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gray-200);
  z-index: 101;
  pointer-events: none;
}

.page-lines::before {
  left: max(0px, calc((100% - 1440px) / 2));
}

.page-lines::after {
  right: max(0px, calc((100% - 1440px) / 2));
}

/* ===================== EXPERIMENTS PAGE ===================== */
.exp-hero {
  position: relative;
  padding: 60px 0 50px;
  text-align: center;
}

.exp-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(163, 230, 53, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 230, 53, .12) 1px, transparent 1px);
  background-size: 42px 42px;
}

.exp-title {
  font-size: 80px;
  font-weight: 900;
  line-height: 108%;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.exp-desc {
  font-size: 24px;
  color: var(--black);
  line-height: 140%;
  max-width: 621px;
  margin: 0 auto;
}

.exp-grid-section {
  padding: 0px 0 64px;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.exp-card {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 410 / 529;
}

.exp-card img,
.exp-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.exp-card:hover img,
.exp-card:hover .exp-video {
  transform: scale(1.05);
}

/* ===================== GREEN BANNER ===================== */
.green-banner {
  margin: 64px 0;
}

.green-banner::before,
.green-banner::after {
  content: '';
  background: var(--gray-200);
  width: 100%;
  height: 1px;
  display: flex;
}

.green-banner::before {
  top: -1px;
}

.green-banner::after {
  bottom: -1px;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 150px;
  background: var(--lime);
}

.banner-h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--black);
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 0px 0 50px;
  text-align: center;
  overflow: hidden;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.sig-container {
  width: 1440px;
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.sig-lottie {
  width: 100%;
}

.footer-box {
  margin-top: -232px;
}

.footer-h2 {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  margin-top: -10px;
  color: var(--black);
}

.footer-p {
  font-size: 24px;
  color: var(--black);
  line-height: 140%;
  margin-bottom: 16px;
}

.footer-arrow {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.footer-arrow img {
  width: 60px;
  height: 80px;
}

.footer-email {
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  padding: 4px 8px;
  margin-bottom: 30px;
  color: var(--black);
  transition: color .25s, background-size .25s ease-in-out;
  background-image: linear-gradient(var(--lime), var(--lime));
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

.footer-email:hover {
  color: var(--black);
  background-size: 100% 100%;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.soc-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  transition: transform .3s;
}

.soc-icon:hover {
  transform: translateY(-3px);
}

.soc-icon svg {
  width: 16px;
  height: 16px;
}

/* ===================== ANIMATIONS ===================== */
.anim-fade {
  opacity: 0;
  animation: fadeUp .7s ease calc(var(--d, 0s)) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s, transform .7s;
}

.reveal.ready {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.ready.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bob1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes bob2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.img-container {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  max-width: 1440px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--black);
  font-weight: 900;
}

/* ===================== RESPONSIVE ===================== */


@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

  .hero-h1 {
    font-size: 38px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cs {
    position: relative;
    top: auto;
    border-radius: 0;
    box-shadow: none;
    flex-direction: column;
  }

  .latest-work .container {
    gap: 0;
  }

  .cs--left {
    grid-template-columns: 1fr;
  }

  .cs-spacer {
    display: none;
  }

  .cs-text {
    min-height: auto;
    gap: 20px;
    width: 100%;
    height: auto;
    padding: 40px 24px;
  }

  .cs-img {
    margin: 0 24px 24px;
  }

  .cs-img-fill {
    min-height: 260px;
  }

  .nav-links {
    display: none;
  }

  .float-icon {
    display: none;
  }

  .banner-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .abt .container {
    padding: 0;
  }

  .abt-inner {
    max-width: 100%;
  }

  .exp-title {
    font-size: 34px;
  }

  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .banner-h2 {
    font-size: 22px;
  }

  .green-banner {
    margin: 20px;
    padding: 32px 28px;
  }

  .cs-desc {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 110px 0 50px;
    min-height: 480px;
  }

  .hero-h1 {
    font-size: 30px;
  }

  .hero-desc br {
    display: none;
  }

  .heading-center {
    font-size: 26px;
  }

  .cs-title {
    font-size: 22px;
  }

  .cs-img-fill {
    min-height: 200px;
  }

  .footer {
    padding: 50px 20px 36px;
  }

  .footer-p br {
    display: none;
  }
}

/* Global Hover Color */
a:hover,
button:hover,
.btn:hover {
  color: none;
}

/* a:hover svg path,
button:hover svg path {
  stroke: #9AFF00 !important;
  fill: #9AFF00 !important;
} */

.w-intro-text {
  margin: -1px auto;
  background-image:
    linear-gradient(to right, rgb(226, 232, 240) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(226, 232, 240) 1px, transparent 1px);
  background-size: 48px 48px;
  padding: 120px 0 60px;
}

.w-intro-text:before {
  content: "";
  background: #FEFDF9;
  filter: blur(3.2vmax);
  border-radius: 50%;
  width: 60rem;
  height: 24rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.w-intro-text:after {
  content: "";
  background: var(--bg);
  position: absolute;
  width: 100%;
  height: 50px;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, -50%);
  filter: blur(20px);
}

input,
textarea,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  cursor: url('../images/cursors/cursor-text.svg') 18 18, text;
}


/* ===================== MASK REVEAL ANIMATION ===================== */
/*
  Replicates the newarc.io hero text effect:
  Each line is clipped by an overflow:hidden wrapper.
  The text slides up from below into view — like emerging from behind a floor.
  --rd controls the stagger delay per element.
*/
.reveal-mask {
  overflow: hidden;
  display: block;
  /* small vertical padding so descenders aren't clipped */
  padding-bottom: 0.08em;
}

.hero-h1 .reveal-mask {
  /* h1 lines sit flush — remove default block spacing between them */
  display: block;
  line-height: inherit;
}

.reveal-text {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: maskReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--rd, 0s)) forwards;
}

/* inline elements (spans inside h1) need inline-block to transform */
span.reveal-text {
  display: inline-block;
}

@keyframes maskReveal {
  0% {
    opacity: 0;
    transform: translateY(110%);
  }

  1% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

/* h1 needs its own layout reset so the reveal-mask divs stack as lines */
.hero-h1 {
  display: block;
}

.hero-h1 .reveal-mask {
  margin-bottom: -8px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s, transform .7s;
}

.reveal.ready {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.ready.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bob1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes bob2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.img-container {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  max-width: 1440px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--black);
  font-weight: 900;
}