* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: #ffeeee;
  color: #ff0000;
  font-family: Arial, Helvetica, sans-serif;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 25;
  padding: 14px 18px;

  background: rgba(255, 231, 231, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 14px;
  letter-spacing: 0.06em;
  opacity: 1;
}

.nav {
  display: flex;
  gap: 10px;
}

.pill {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
  background: #ff0000;
  color: #ffffff;
}

.pill--contact {
  position: fixed;
  right: 22px;
  top: 500px;
  z-index: 30;
}

.hero {
  position: relative;
  height: 100vh;
  background: transparent;
  overflow: hidden;
}

.webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.orange {
  position: relative;
  height: 100vh;
  background: #ff0000;
  color: #ffffff;
  overflow: hidden;
  z-index: 5;
}

.orange__small {
  position: absolute;
  left: 24px;
  bottom: 40px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 300px;
}

.orange__marquee {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  overflow: hidden;
  transform: translateY(-50%);
}

.orange__track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.orange__track span {
  white-space: nowrap;
  font-size: 90px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding-right: 80px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.projects {
  background: #ffeeee;
  padding: 60px 0 40px;
  position: relative;
  z-index: 5;
}

.projects__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}

.projects__label {
  font-size: 14px;
  opacity: 1;
  margin-bottom: 30px;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
}

.project-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}

.project-card__img {
  display: block;
  width: 100%;
  height: auto;
}

.project-card__tag {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding: 10px 12px;
  text-align: center;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.35);

  color: #ff0000;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.footer {
  background: transparent;
  padding: 20px 18px 26px;
  font-size: 14px;
  opacity: 1;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

.footer a {
  color: #ff0000;
  text-decoration: none;
}


@media (max-width: 600px) {
  .pill--contact {
  position: fixed;
  right: 22px;
  top:auto;
  bottom: 100px;
  z-index: 30;
}
}