* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #050505;
  color: #ddd;
  font-family: Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.site {
  min-height: 100vh;
  padding: 70px;
  display: flex;
  justify-content: space-between;
  position: relative;
  border: 1px solid #333;
}

/* hihi background begins here yeah? */
.site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(255, 255, 255, 0.22),
      transparent 35%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    );
  filter: blur(40px);
  opacity: 0.5;
}

.site::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.25;
  mix-blend-mode: screen;
}

.sidebar {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar > div {
  margin-bottom: 24px;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 100;
  letter-spacing: -0.06em;
}

.sidebar p {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #aaa;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 700;
  font-size: 0.85rem;
}

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

.projects {
  z-index: 1;
  align-self: center;
  width: min(700px, 55vw);
}

.project {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 24px;
  margin: 12px 0;
}

.project span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaa;
  white-space: nowrap;
}

.project a {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 100;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.project a:hover {
  color: white;
  filter: blur(1px);
}

@media (max-width: 800px) {
  body {
    overflow: auto;
  }

  .site {
    padding: 32px;
    flex-direction: column;
    gap: 80px;
  }

  .projects {
    width: 100%;
  }

  .project {
    display: block;
  }

  .project span {
    display: block;
    margin-bottom: 6px;
  }
}

.content {
  z-index: 1;
  align-self: center;
  width: min(700px, 55vw);
}

.faq {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.faq h2 {
  font-size: 0.9rem;
}

.faq p {
  color: #aaa;
  line-height: 1.5;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 24px;
}

.contact-item span {
  font-size: 0.75rem;
  color: #888;
  white-space: nowrap;
}

.contact-item a {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 100;
  text-decoration: none;
  color: #ddd;
  letter-spacing: -0.06em;
}

.about {
  display: flex;
  flex-direction: column;
  gap: 56px;
  font-size: 0.9rem;
}

.about article {
  max-width: 520px;
}

.about h2 {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #eee;
}

.about p {
  color: #aaa;
  line-height: 1.6;
}
