    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
      background: #ffffff;
      color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
    }
	
	.project-link {
	  font-size: 14px;
	  color: #1a1a1a;
	  text-decoration: none;
	  border-bottom: 1px solid #1a1a1a;
	  padding-bottom: 2px;
	  transition: opacity 0.3s;
	  display: inline-block;
	  margin-top: 20px;
	}

	.project-link:hover {
	  opacity: 0.6;
	}

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 80px 8vw;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-text {
      position: absolute;
      font-size: 18vw;
      font-weight: 200;
      letter-spacing: -0.02em;
      color: rgba(0, 0, 0, 0.01);
      line-height: 0.9;
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 200%;
    }

    .hero-bg-text div {
      margin-bottom: 2vw;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }

    .identity {
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.15em;
      font-weight: 300;
      line-height: 1.4;
    }

    .identity strong {
      font-weight: 400;
    }

    .hero-content {
      margin-top: -10vh;
    }

    .hero-headline {
      font-size: clamp(48px, 6vw, 86px);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
      max-width: 600px;
    }

    .hero-subtext {
      font-size: 16px;
      font-weight: 300;
      color: #666;
      max-width: 500px;
      line-height: 1.5;
    }

    .hero-cta {
      margin-top: 48px;
    }

    .hero-cta a {
      font-size: 15px;
      color: #1a1a1a;
      text-decoration: none;
      border-bottom: 1px solid #1a1a1a;
      padding-bottom: 2px;
      transition: opacity 0.3s;
      display: inline-block;
    }

    .hero-cta a:hover {
      opacity: 0.6;
    }

    .hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .chrome-object {
      width: 280px;
      height: 280px;
      background: linear-gradient(135deg, #e8e8e8 0%, #ffffff 50%, #d0d0d0 100%);
      border-radius: 50%;
      box-shadow: 
        inset 0 10px 30px rgba(255, 255, 255, 0.5),
        inset 0 -10px 30px rgba(0, 0, 0, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
    }

    .chrome-object::before {
      content: '';
      position: absolute;
      top: 20%;
      left: 20%;
      width: 40%;
      height: 40%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
      border-radius: 50%;
    }

    /* Selected Work */
    .selected-work {
      padding: 120px 8vw;
      background: #ffffff;
    }

    .section-title {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-weight: 400;
      margin-bottom: 80px;
      color: #999;
    }

    .project {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      margin-bottom: 120px;
      align-items: center;
    }

    .project-info h3 {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .project-platform {
      font-size: 13px;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .project-description {
      font-size: 16px;
      line-height: 1.6;
      color: #666;
      max-width: 400px;
    }

    .project-image {
      width: 100%;
      aspect-ratio: 16/10;
      background: #f5f5f5;
      border-radius: 2px;
      overflow: hidden;
      position: relative;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ccc;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* Process Snapshot */
    .process {
      padding: 120px 8vw;
      background: #fafafa;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 60px;
      margin-top: 60px;
    }

    .step h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .step p {
      font-size: 15px;
      color: #666;
      line-height: 1.5;
    }

    /* About */
    .about {
      padding: 120px 8vw;
      background: #ffffff;
    }

    .about-content {
      max-width: 600px;
      font-size: 18px;
      line-height: 1.8;
      color: #333;
    }

    .about-content p {
      margin-bottom: 24px;
    }

    /* Tools */
    .tools {
      padding: 80px 8vw;
      background: #ffffff;
    }

    .tools-list {
      font-size: 15px;
      color: #666;
      max-width: 700px;
    }

    /* Contact */
    .contact {
      padding: 120px 8vw;
      background: #fafafa;
      text-align: center;
    }

    .contact h2 {
      font-size: 32px;
      font-weight: 500;
      margin-bottom: 24px;
      letter-spacing: -0.01em;
    }

    .contact a {
      font-size: 16px;
      color: #1a1a1a;
      text-decoration: none;
      border-bottom: 1px solid #1a1a1a;
      padding-bottom: 2px;
      transition: opacity 0.3s;
    }

    .contact a:hover {
      opacity: 0.6;
    }

    /* Footer */
    footer {
      padding: 60px 8vw;
      background: #ffffff;
      border-top: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #999;
    }

    .footer-brand {
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-weight: 400;
    }

    /* Responsive */
    @media (max-width: 968px) {
      .hero {
        grid-template-columns: 1fr;
        padding: 60px 6vw;
      }

      .hero-right {
        margin-top: 60px;
      }

      .project {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .hero-bg-text {
        font-size: 24vw;
      }
    }

    @media (max-width: 640px) {
      .process-steps {
        grid-template-columns: 1fr;
      }

      .hero-headline {
        font-size: 38px;
      }

      footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }
	/* Navigation */
nav {
  padding: 40px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.nav-brand {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  text-decoration: none;
  color: #1a1a1a;
  transition: opacity 0.3s;
}

.nav-brand:hover {
  opacity: 0.6;
}

.nav-back {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-back:hover {
  color: #1a1a1a;
}

/* Project Hero */
.project-hero {
  padding: 100px 8vw 80px;
  max-width: 900px;
}

.project-meta {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.project-title {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.project-intro {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
}

/* Project Details Grid */
.project-details {
  padding: 60px 8vw;
  background: #fafafa;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1200px;
}

.detail-item h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 12px;
  font-weight: 400;
}

.detail-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* Featured Image */
.featured-image {
  padding: 80px 8vw;
}

.image-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #f5f5f5;
  border-radius: 2px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Section */
.content-section {
  padding: 80px 8vw;
  max-width: 800px;
}

.content-section h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 32px;
  font-weight: 400;
}

.content-section h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  margin-top: 48px;
}

.content-section h4:first-of-type {
  margin-top: 0;
}

.content-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}

.content-section ul {
  list-style: none;
  margin: 24px 0;
}

.content-section li {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
}

.content-section li:before {
  content: '—';
  position: absolute;
  left: 0;
  color: #ccc;
}

/* Image Grid */
.image-grid {
  padding: 40px 8vw 80px;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.grid-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f5f5f5;
  border-radius: 2px;
  overflow: hidden;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Outcomes */
.outcomes {
  padding: 80px 8vw;
  background: #fafafa;
}

.outcomes-content {
  max-width: 800px;
}

.outcomes h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 32px;
  font-weight: 400;
}

.outcomes p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Next Project */
.next-project {
  padding: 100px 8vw;
  text-align: center;
}

.next-project h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 24px;
  font-weight: 400;
}

.next-project h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.next-project p {
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
}

.next-project a {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 2px;
  transition: opacity 0.3s;
  display: inline-block;
}

.next-project a:hover {
  opacity: 0.6;
}

/* Project Link (for index page) */
.project-link {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 2px;
  transition: opacity 0.3s;
  display: inline-block;
  margin-top: 20px;
}

.project-link:hover {
  opacity: 0.6;
}

/* Additional Responsive Rules for Project Pages */
@media (max-width: 968px) {
  .details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .grid-2col {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .project-title {
    font-size: 36px;
  }
}