body{
  margin:0;
  color:#fff;
  font-family:system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:#110f0c;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 2px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 2px, transparent 1px);
  background-size:75px 75px;
  background-position:center;
  background-attachment:fixed;
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(17, 15, 12, 0) 0%, rgba(17, 15, 12, 0) 25%, rgba(17, 15, 12, 1) 70%);
  z-index: -1;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-box{
  width:100%;
  padding:28px;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:18px;
  background:#1f1c1a;
}

.hero-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:32px;
}

.hero-text{
  flex:1;
}

.hero-kicker{
  margin:0 0 8px;
  color:rgba(255,255,255,0.7);
}

.hero-title{
  margin:0 0 16px;
  font-size:42px;
}

.hero-description{
  margin:0;
  max-width:45ch;
  color:rgba(255,255,255,0.85);
}

.hero-image img{
  width:260px;
  height:260px;
  object-fit:cover;
  border-radius:16px;
  display:block;
}

.hero-socials{
  margin-top:30px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-socials a{
  padding:10px 14px;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:10px;
  text-decoration:none;
  color:#fff;
}

.about-box {
  width: 100%;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #1f1c1a;
}

.about-title {
  margin: 0 0 14px;
  font-size: 28px;
}

.about-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 70ch;
}

.about-text+.about-text {
  margin-top: 16px;
}

.projects-box {
  width: 100%;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #1f1c1a;
}

.projects-title {
  margin: 0 0 20px;
  font-size: 28px;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.project-card:first-of-type {
  margin-top: 0;
}

.project-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-image:hover img {
  transform: scale(1.03);
}

.project-info h3 {
  margin: 0 0 12px;
}

.project-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.site-footer {
  width: 100%;
  margin-top: 10px;
  padding: 10px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image{
    width:100%;
    display:flex;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 40px;
  }

    .page {
      padding: 40px 16px;
    }
  
    .hero-box,
    .about-box,
    .projects-box {
      width: 100%;
      box-sizing: border-box;
    }
}